/* ============================================
   RentalOS Landing Page Styles
   ============================================ */

/* --- Reset & Base --- */
.landing-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
}

.landing-page * {
    box-sizing: border-box;
}

/* --- Navbar --- */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}

.landing-nav.scrolled {
    background: rgba(26, 79, 160, 0.97);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.landing-nav .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.landing-nav .nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.landing-nav .nav-brand img {
    height: 36px;
}

.landing-nav .nav-brand span {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.landing-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-nav .nav-links a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-link-login {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 18px;
    border-radius: 8px;
}

.nav-link-login:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link-signup {
    color: #317EEB;
    background: #fff;
    padding: 8px 20px;
    border-radius: 8px;
}

.nav-link-signup:hover {
    background: #f0f4ff;
    color: #1a4fa0;
}

/* --- Hero Section --- */
.landing-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0a1628;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 60px;
}

/* Animated mesh gradient */
.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
    will-change: transform;
}

.hero-mesh-blob-1 {
    width: 80vw;
    height: 80vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, #317EEB 0%, transparent 70%);
    top: -20%;
    left: -20%;
    animation: meshFloat1 12s ease-in-out infinite;
}

.hero-mesh-blob-2 {
    width: 70vw;
    height: 70vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, #1a4fa0 0%, transparent 70%);
    bottom: -20%;
    right: -20%;
    animation: meshFloat2 14s ease-in-out infinite;
}

.hero-mesh-blob-3 {
    width: 60vw;
    height: 60vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, #5BA3F5 0%, transparent 70%);
    top: 30%;
    left: 40%;
    opacity: 0.4;
    animation: meshFloat3 10s ease-in-out infinite;
}

.hero-mesh-blob-4 {
    width: 50vw;
    height: 50vw;
    max-width: 400px;
    max-height: 400px;
    background: radial-gradient(circle, #6C3CE0 0%, transparent 70%);
    top: 5%;
    right: 10%;
    opacity: 0.35;
    animation: meshFloat4 16s ease-in-out infinite;
}

@keyframes meshFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(8%, 12%) scale(1.05); }
    66% { transform: translate(-5%, 5%) scale(0.95); }
}

@keyframes meshFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-10%, -8%) scale(1.08); }
    66% { transform: translate(6%, -4%) scale(0.96); }
}

@keyframes meshFloat3 {
    0%, 100% { transform: translate(-50%, 0) scale(1); }
    50% { transform: translate(-40%, -10%) scale(1.15); }
}

@keyframes meshFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40% { transform: translate(-12%, 10%) scale(1.1); }
    80% { transform: translate(8%, -6%) scale(0.9); }
}

/* Subtle noise texture overlay */
.hero-mesh::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge-info {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    margin-left: 6px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.hero-badge-info:hover {
    color: #fff;
}

.hero-info-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 20px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    position: relative;
    display: none;
}

.hero-info-box.visible {
    display: block;
}

.hero-info-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
    margin: 0 0 10px;
    max-width: none;
}

.hero-info-box p:last-child {
    margin-bottom: 0;
}

.hero-info-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

.hero-info-close:hover {
    color: #fff;
}

/* --- Industry Carousel --- */
.hero-industries {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-bottom: 28px;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.hero-industries-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: industryScroll 25s linear infinite;
}

.hero-industries-track:hover {
    animation-play-state: paused;
}

.industry-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    cursor: default;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.industry-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.industry-card span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes industryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn-landing-primary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #317EEB;
    background: #fff;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-landing-primary:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    color: #1a4fa0;
}

.btn-landing-outline {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-landing-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

/* --- Features Section --- */
.landing-features {
    padding: 100px 20px;
    background: #fff;
}

.landing-features .section-inner {
    max-width: 1140px;
    margin: 0 auto;
}

/* --- Client Logos Section (social proof, justo debajo del hero) --- */
.landing-logos {
    padding: 48px 20px 40px;
    background: #fff;
    border-bottom: 1px solid #eef2f7;
}
.landing-logos .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.logos-kicker {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin: 0 0 22px;
}
.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
img.client-logo {
    max-height: 44px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.65;
    filter: grayscale(1);
    transition: opacity .2s, filter .2s, transform .2s;
}
img.client-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-1px);
}
@media (max-width: 600px) {
    .logos-row { gap: 28px; }
    img.client-logo { max-height: 36px; max-width: 110px; }
}

/* --- Steps / Cómo funciona --- */
.landing-steps {
    padding: 90px 20px;
    background: #fff;
}
.landing-steps .section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
}
.step-card {
    flex: 1;
    max-width: 300px;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 30px 24px 28px;
    text-align: center;
    position: relative;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(49, 126, 235, 0.12);
    border-color: rgba(49, 126, 235, 0.25);
}
.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a4fa0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(26, 79, 160, 0.3);
}
.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(49, 126, 235, 0.1);
    color: #317EEB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 14px auto 18px;
}
.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
}
.step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.55;
    margin: 0;
}
.step-connector {
    flex: 0 0 40px;
    align-self: center;
    height: 2px;
    background: linear-gradient(90deg, rgba(49, 126, 235, 0.2), rgba(49, 126, 235, 0.5), rgba(49, 126, 235, 0.2));
    position: relative;
}
.step-connector::after {
    content: "";
    position: absolute;
    right: -4px;
    top: -4px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid rgba(49, 126, 235, 0.5);
}
@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .step-card { max-width: 100%; width: 100%; }
    .step-connector {
        width: 2px;
        height: 32px;
        flex: 0 0 32px;
        background: linear-gradient(180deg, rgba(49, 126, 235, 0.2), rgba(49, 126, 235, 0.5), rgba(49, 126, 235, 0.2));
    }
    .step-connector::after {
        right: auto;
        top: auto;
        bottom: -4px;
        left: -4px;
        border-top: 7px solid rgba(49, 126, 235, 0.5);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 0;
    }
}

/* --- Product Preview Section (mockup del admin) --- */
.landing-preview {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.landing-preview .section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.preview-frame {
    margin-top: 40px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15),
                0 4px 12px rgba(10, 22, 40, 0.08);
    border: 1px solid #e8ecf4;
    background: #fff;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.preview-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f1f5f9;
    border-bottom: 1px solid #e8ecf4;
}
.preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}
.preview-dot:nth-child(1) { background: #ef4444; }
.preview-dot:nth-child(2) { background: #f59e0b; }
.preview-dot:nth-child(3) { background: #10b981; }
.preview-url {
    margin-left: 12px;
    padding: 3px 12px;
    background: #fff;
    border-radius: 6px;
    font-size: 12px;
    color: #64748b;
    font-family: -apple-system, SFMono-Regular, monospace;
    flex: 1;
    max-width: 400px;
    border: 1px solid #e8ecf4;
}
/* Topbar azul (matchea la real: #1a4fa0 solid) */
.preview-topbar {
    background: #1a4fa0;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}
.preview-topbar-brand {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
    flex: 1;
}
.preview-topbar-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
}
.preview-topbar-chip .fa { font-size: 12px; }
.preview-chip-count {
    display: inline-block;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 9px;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}
.preview-topbar-chip.has-alerts .preview-chip-count {
    background: #e74c3c;
}
.preview-topbar-user {
    font-size: 12px;
    color: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    gap: 6px;
}
.preview-topbar-user .fa { font-size: 11px; }

/* Body (sidebar + main) */
.preview-body {
    display: flex;
    min-height: 380px;
    background: #fff;
}
/* Sidebar blanco con acentos azules — matchea el admin real */
.preview-sidebar {
    width: 170px;
    background: #fff;
    border-right: 1px solid #e8ecf4;
    padding: 8px 0;
    flex-shrink: 0;
}
.preview-nav-item {
    padding: 9px 16px;
    color: #475569;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 3px solid transparent;
}
.preview-nav-item .fa { width: 14px; font-size: 12px; color: #94a3b8; }
.preview-nav-item.active {
    background: #eaf2ff;
    color: #1a4fa0;
    font-weight: 600;
    border-left-color: #317EEB;
}
.preview-nav-item.active .fa { color: #317EEB; }

.preview-main {
    flex: 1;
    padding: 16px 18px;
    background: #fff;
}
.preview-panel-head {
    background: #f8fafc;
    border: 1px solid #e8ecf4;
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 14px;
}
.preview-panel-title {
    font-size: 15px;
    font-weight: 700;
    color: #334155;
    margin: 0 0 2px;
}
.preview-panel-sub {
    font-size: 11px;
    color: #64748b;
}
.preview-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
.preview-kpi {
    padding: 8px 10px;
    background: #fff;
    border: 1px solid #e8ecf4;
    border-radius: 6px;
    border-left: 3px solid #1a4fa0;
}
.preview-kpi.provider { border-left-color: #64748b; }
.preview-kpi-label {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #64748b;
}
.preview-kpi-value {
    font-size: 20px;
    font-weight: 700;
    color: #1a4fa0;
    line-height: 1.1;
    margin-top: 2px;
    font-variant-numeric: tabular-nums;
}
.preview-kpi.provider .preview-kpi-value { color: #334155; }

/* Section header CLIENTES (matchea .op-section) */
.preview-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
}
.preview-section::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e8ecf4;
}
.preview-section .fa { color: #94a3b8; font-size: 11px; }

/* 2 mini-panels side by side (retiros | devoluciones) */
.preview-tables-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.preview-mini-panel {
    border: 1px solid #e8ecf4;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.preview-mini-panel-head {
    background: #f8fafc;
    border-bottom: 1px solid #e8ecf4;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 5px;
}
.preview-mini-panel-head .fa { color: #1a4fa0; font-size: 10px; }
.preview-mini-count {
    display: inline-block;
    background: #e2e8f0;
    color: #475569;
    font-size: 10px;
    font-weight: 600;
    padding: 0 6px;
    border-radius: 10px;
    margin-left: auto;
}
.preview-mini-body { font-size: 11px; }
.preview-mini-row {
    padding: 6px 10px;
    border-bottom: 1px solid #eef2f7;
    color: #334155;
    display: flex;
    justify-content: space-between;
}
.preview-mini-row:last-child { border-bottom: 0; }
.preview-mini-row.highlight { background: #FEE2E2; }

@media (max-width: 768px) {
    .preview-frame { max-width: 100%; }
    .preview-sidebar { display: none; }
    .preview-kpis { grid-template-columns: repeat(2, 1fr); }
    .preview-tables-row { grid-template-columns: 1fr; }
    .preview-url { max-width: 180px; font-size: 10px; }
    .preview-topbar-chip, .preview-topbar-user { display: none; }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.features-grid-no-ia {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(49, 126, 235, 0.1);
    border-color: rgba(49, 126, 235, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
}

.feature-icon-blue {
    background: rgba(49, 126, 235, 0.1);
    color: #317EEB;
}

.feature-icon-green {
    background: rgba(92, 184, 92, 0.1);
    color: #5cb85c;
}

.feature-icon-purple {
    background: rgba(142, 68, 173, 0.1);
    color: #8e44ad;
}

.feature-icon-orange {
    background: rgba(240, 173, 78, 0.1);
    color: #e67e22;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

/* --- Info / Historia Section --- */
.landing-info {
    padding: 80px 20px;
    background: #f8f9fb;
}

.info-content {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px 44px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8ecf1;
    position: relative;
}

.info-content::before {
    font-family: FontAwesome;
    content: '\f10d';
    position: absolute;
    top: -16px;
    left: 32px;
    font-size: 28px;
    color: #317EEB;
    background: #f8f9fb;
    padding: 0 10px;
}

.info-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 14px;
    text-align: left;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.info-content strong {
    color: #1a1a2e;
}

/* --- Pricing Section --- */
.landing-pricing {
    padding: 100px 20px;
    background: #f8f9fb;
}

.landing-pricing .section-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-grid-no-ia {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(49, 126, 235, 0.1);
}

.pricing-card-featured {
    border: 2px solid #317EEB;
    background: linear-gradient(180deg, #f0f4ff 0%, #fff 18%);
    box-shadow: 0 12px 40px rgba(49, 126, 235, 0.18);
    position: relative;
    transform: scale(1.04);
    z-index: 2;
}
.pricing-card-featured::before {
    content: "Más elegido";
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #317EEB;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(49, 126, 235, 0.35);
}
.pricing-card-featured:hover {
    box-shadow: 0 16px 50px rgba(49, 126, 235, 0.25);
    transform: scale(1.04) translateY(-4px);
}
@media (max-width: 900px) {
    .pricing-card-featured { transform: none; }
    .pricing-card-featured:hover { transform: translateY(-4px); }
}

.pricing-card-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 4px;
}

.pricing-card-header .pricing-subtitle {
    font-size: 14px;
    color: #888;
    margin: 0 0 16px;
}

.pricing-badge-addon {
    display: inline-block;
    background: #f0f4ff;
    color: #317EEB;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.pricing-price {
    padding: 20px 0;
    border-bottom: 1px solid #eef2f7;
    margin-bottom: 20px;
}

.pricing-amount {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
}

.pricing-period {
    font-size: 16px;
    color: #888;
    font-weight: 400;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.pricing-features-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}

.pricing-features-list li i {
    color: #5cb85c;
    margin-right: 8px;
    width: 16px;
}

.btn-pricing-primary {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #317EEB, #1a4fa0);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 126, 235, 0.3);
    color: #fff;
}

.btn-pricing-outline {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #317EEB;
    background: #fff;
    border: 2px solid #317EEB;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-pricing-outline:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    color: #1a4fa0;
}

/* --- CTA / Tagline Section --- */
.landing-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #317EEB 0%, #1a4fa0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.landing-cta::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -100px;
    left: -50px;
}

.landing-cta::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    bottom: -60px;
    right: -30px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.landing-cta h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
}

.landing-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 32px;
}

/* --- Footer --- */
.landing-footer {
    background: #0d1b2a;
    padding: 32px 20px;
    text-align: center;
}

.landing-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.landing-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.landing-footer a:hover {
    color: #8CC3FD;
}

/* --- Register/Auth Logo --- */
.register-logo {
    margin-bottom: 12px;
    text-decoration: none;
    z-index: 10;
    display: inline-flex;
    align-items: center;
}

/* --- Register Page --- */
.register-wrapper {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #317EEB 0%, #1a4fa0 45%, #0d2b5e 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.register-inner {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
}

.register-wrapper::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(140, 195, 253, 0.06);
    top: -200px;
    right: -100px;
}

.register-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.register-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 6px;
    text-align: center;
}

.register-card .register-subtitle {
    font-size: 15px;
    color: #888;
    text-align: center;
    margin: 0 0 28px;
}

.register-card .form-group {
    margin-bottom: 18px;
}

.register-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-card .form-control {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 2px solid #e8ecf1;
    border-radius: 10px;
    transition: border-color 0.2s ease;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}

.register-card .form-control:focus {
    border-color: #317EEB;
    box-shadow: 0 0 0 3px rgba(49, 126, 235, 0.1);
}

.register-card .btn-register {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #317EEB, #1a4fa0);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 6px;
}

.register-card .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 126, 235, 0.3);
}

.register-card .register-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}

.register-card .register-footer a {
    color: #317EEB;
    font-weight: 600;
    text-decoration: none;
}

.register-card .register-footer a:hover {
    text-decoration: underline;
}

.register-error {
    background: #fef2f2;
    color: #c0392b;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid #fecaca;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 64px 16px 32px;
        min-height: 100vh;
        min-height: 100dvh;
        justify-content: flex-start;
    }

    .hero-industries {
        margin-top: auto;
        margin-bottom: 20px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 16px;
    }

    .hero-industries {
        margin-bottom: 16px;
    }

    .industry-card {
        padding: 8px 14px;
        gap: 8px;
        border-radius: 10px;
    }

    .industry-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        font-size: 13px;
    }

    .industry-card span {
        font-size: 12px;
    }

    .hero-industries-track {
        gap: 10px;
    }

    .hero-info-box {
        padding: 16px 18px;
        margin-bottom: 14px;
    }

    .hero-info-box p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-landing-primary,
    .btn-landing-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 12px 24px;
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .landing-cta h2 {
        font-size: 28px;
    }

    .landing-nav .nav-inner {
        padding: 0 12px;
    }

    .landing-nav .nav-brand img {
        height: 28px;
    }

    .register-card {
        padding: 36px 24px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 26px;
    }
}
