
        :root {
            /* Local aliases — values now come from corporate-variables.css */
            --dark-bg: var(--brand-negro, #0F1724);
            --dark-card: var(--brand-negro-light, #1A2332);
            --text-light: var(--gris-400, #8E99A4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family-brand, Calibri, 'Segoe UI', sans-serif);
            background: var(--dark-bg);
            color: #fff;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar-custom {
            background: transparent;
            padding: 1.25rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar-custom.scrolled {
            background: rgba(15, 23, 36, 0.95);
            backdrop-filter: blur(10px);
            padding: 0.75rem 0;
        }

        .navbar-brand img {
            height: 45px;
        }

        .nav-link {
            color: rgba(255,255,255,0.8) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: var(--brand-blue) !important;
        }

        .btn-demo {
            background: var(--brand-blue);
            color: #fff;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-demo:hover {
            background: var(--brand-blue-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(45, 107, 135, 0.3);
        }

        .btn-login-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-login-outline:hover {
            border-color: var(--brand-blue);
            color: var(--brand-blue);
            background: rgba(45, 107, 135, 0.1);
        }

        .lang-switcher a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

        .lang-switcher a:hover,
        .lang-switcher a.active {
            color: var(--brand-blue);
        }

        /* Hero Section */
        .hero-section {
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(45, 107, 135, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-title span {
            color: var(--brand-blue);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--brand-blue);
        }

        .stat-item p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Dashboard Preview */
        .dashboard-preview {
            position: relative;
        }

        .preview-card {
            background: var(--dark-card);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(255,255,255,0.05);
            transition: transform 0.3s ease;
        }

        .preview-card:hover {
            transform: translateY(-5px);
        }

        .preview-card.main {
            background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
        }

        .preview-label {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 0.5rem;
        }

        .preview-card .value {
            font-size: 2rem;
            font-weight: 700;
        }

        .preview-card .change {
            font-size: 0.85rem;
            color: #10b981;
        }

        .preview-card .change.negative {
            color: var(--brand-red);
        }

        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: var(--dark-bg);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 4rem;
        }

        .feature-card {
            background: var(--dark-card);
            border-radius: 16px;
            padding: 2rem;
            height: 100%;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(45, 107, 135, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(45, 107, 135, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon i {
            font-size: 1.75rem;
            color: var(--brand-blue);
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
        }

        .contact-form {
            background: var(--dark-card);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .form-floating > .form-control {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            color: #fff;
            padding: 1rem 1rem;
            height: auto;
        }

        .form-floating > .form-control:focus {
            background: rgba(255,255,255,0.05);
            border-color: var(--brand-blue);
            box-shadow: 0 0 0 3px rgba(45, 107, 135, 0.15);
            color: #fff;
        }

        .form-floating > label {
            color: var(--text-light);
            padding: 1rem;
        }

        .form-floating > .form-control:focus ~ label,
        .form-floating > .form-control:not(:placeholder-shown) ~ label {
            color: var(--brand-blue);
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
            color: #fff;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            width: 100%;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(45, 107, 135, 0.4);
            color: #fff;
        }

        /* Footer */
        .footer {
            background: var(--dark-card);
            padding: 3rem 0;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-logo {
            height: 40px;
            margin-bottom: 1rem;
        }

        .footer p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            margin-left: 1.5rem;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--brand-blue);
        }

        /* Alert */
        .alert-custom {
            background: rgba(45, 107, 135, 0.15);
            border: 1px solid rgba(45, 107, 135, 0.3);
            color: var(--brand-blue);
            border-radius: 12px;
        }

        /* Phone input with country selector */
        .phone-input-wrapper {
            position: relative;
            height: 100%;
        }

        .phone-input-wrapper .iti {
            width: 100%;
            height: 100%;
        }

        .phone-input-wrapper .iti__tel-input {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            color: #fff;
            padding: 1rem 1rem 1rem 120px !important;
            height: calc(3.5rem + 2px);
            width: 100%;
        }

        .phone-input-wrapper .iti__tel-input::placeholder {
            color: var(--text-light);
        }

        .phone-input-wrapper .iti__tel-input:focus {
            background: rgba(255,255,255,0.05);
            border-color: var(--brand-blue);
            box-shadow: 0 0 0 3px rgba(45, 107, 135, 0.15);
            outline: none;
        }

        .phone-input-wrapper .iti__country-container {
            padding-left: 1rem;
            padding-right: 0.5rem;
            height: 100%;
        }

        .phone-input-wrapper .iti__selected-dial-code {
            color: #fff;
            margin-left: 0.5rem;
        }

        .phone-input-wrapper .iti__selected-country {
            background: transparent;
            border-radius: 12px 0 0 12px;
            height: 100%;
        }

        .phone-input-wrapper .iti__selected-country-primary {
            color: #fff;
        }

        .phone-input-wrapper .iti__arrow {
            border-top-color: var(--text-light);
        }

        .iti__dropdown-content {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            max-height: 250px;
        }

        .iti__search-input {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            color: #fff;
            padding: 0.5rem;
        }

        .iti__search-input:focus {
            border-color: var(--brand-blue);
            outline: none;
        }

        .iti__country {
            padding: 0.5rem 1rem;
            color: #fff;
        }

        .iti__country:hover,
        .iti__country--highlight {
            background: rgba(45, 107, 135, 0.2);
        }

        .iti__dial-code {
            color: var(--text-light);
        }

        /* Discount Badge */
        .discount-badge {
            display: inline-block;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: #fff;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        /* Hero CTAs */
        .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        .btn-outline-light {
            border: 2px solid rgba(255,255,255,0.5);
            color: #fff;
            transition: all 0.3s ease;
        }

        .btn-outline-light:hover {
            background: rgba(255,255,255,0.1);
            border-color: #fff;
            color: #fff;
        }

        /* Integrations Section */
        .integrations-section {
            padding: 60px 0;
            background: var(--dark-card);
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .integrations-title {
            text-align: center;
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .integrations-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .integration-logo {
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .integration-logo:hover {
            opacity: 1;
        }

        .integration-logo img {
            height: 35px;
            width: auto;
        }

        .integration-logo span {
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        .integrations-more {
            text-align: center;
            color: var(--text-light);
            font-size: 1rem;
            font-style: italic;
            margin-top: 2rem;
        }

        /* E-commerce Section */
        .ecommerce-section {
            padding: 80px 0;
            background: var(--dark-bg);
        }

        .ecommerce-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 3rem;
            margin-top: 3rem;
        }

        .ecommerce-logo {
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .ecommerce-logo:hover {
            opacity: 1;
        }

        .ecommerce-logo img {
            height: 55px;
            width: auto;
        }

        .ecommerce-logo span {
            color: #fff;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 0.5px;
        }

        .ecommerce-more {
            text-align: center;
            color: var(--text-light);
            font-size: 1rem;
            font-style: italic;
            margin-top: 2rem;
        }

        /* How It Works Section */
        .how-it-works-section {
            padding: 100px 0;
            background: var(--dark-card);
        }

        .role-card {
            background: var(--dark-bg);
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .role-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
        }

        .role-admin::before {
            background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-dark));
        }

        .role-manager::before {
            background: linear-gradient(90deg, #8b5cf6, #7c3aed);
        }

        .role-guide::before {
            background: linear-gradient(90deg, #10b981, #059669);
        }

        .role-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .role-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .role-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .role-admin .role-icon {
            background: rgba(45, 107, 135, 0.15);
            color: var(--brand-blue);
        }

        .role-manager .role-icon {
            background: rgba(139, 92, 246, 0.15);
            color: #8b5cf6;
        }

        .role-guide .role-icon {
            background: rgba(16, 185, 129, 0.15);
            color: #10b981;
        }

        .role-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
        }

        .role-price span {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-light);
        }

        .role-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .role-headline {
            color: var(--brand-blue);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .role-intro {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .role-features {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
        }

        .role-features li {
            color: var(--text-light);
            font-size: 0.9rem;
            padding: 0.4rem 0;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .role-features li i {
            color: #10b981;
            margin-top: 0.2rem;
        }

        .role-note {
            background: rgba(45, 107, 135, 0.1);
            border-radius: 12px;
            padding: 1rem;
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .role-note i {
            color: var(--brand-blue);
            font-size: 1rem;
            margin-top: 0.1rem;
        }

        /* Target Audience Section */
        .target-audience-section {
            padding: 100px 0;
            background: var(--dark-bg);
        }

        .audience-label {
            display: inline-block;
            background: var(--brand-red);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 8px 24px;
            border-radius: 6px;
        }

        .audience-card {
            background: var(--dark-card);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.06);
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .audience-card:hover {
            transform: translateY(-5px);
        }

        .audience-card-header {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 24px 28px 0;
        }

        .audience-card-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            color: #fff;
        }

        .audience-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            min-width: 40px;
            background: #fff;
            color: var(--dark-bg);
            font-size: 0.85rem;
            font-weight: 800;
            border-radius: 8px;
        }

        .audience-tours .audience-number { color: var(--brand-red); }
        .audience-paseos .audience-number { color: #5BC0DE; }
        .audience-visitas .audience-number { color: #9B8EC4; }

        .audience-tours h3 { color: var(--brand-red); }
        .audience-paseos h3 { color: #5BC0DE; }
        .audience-visitas h3 { color: #9B8EC4; }

        .audience-card-tagline {
            padding: 8px 28px 0;
            color: var(--text-light);
            font-size: 0.9rem;
            font-style: italic;
            margin: 0;
        }

        .audience-divider {
            margin: 16px 28px;
            border-color: rgba(255,255,255,0.08);
        }

        .audience-list {
            list-style: none;
            padding: 0 28px 28px;
            margin: 0;
        }

        .audience-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            color: #d1d5db;
            font-size: 0.95rem;
        }

        .audience-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            min-width: 10px;
            border-radius: 3px;
        }

        .audience-dot-tours { background: var(--brand-red); }
        .audience-dot-paseos { background: #5BC0DE; }
        .audience-dot-visitas { background: #9B8EC4; }

        .audience-cta-bar {
            background: var(--brand-red);
            border-radius: 12px;
            padding: 20px 32px;
            text-align: center;
        }

        .audience-cta-bar p {
            margin: 0;
            color: #fff;
            font-size: 1.05rem;
            font-weight: 500;
            font-style: italic;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 50%, var(--dark-bg) 100%);
        }

        .pricing-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .badge-discount {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: #fff;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .badge-trial {
            background: rgba(45, 107, 135, 0.15);
            color: var(--brand-blue);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            border: 1px solid rgba(45, 107, 135, 0.3);
        }

        .pricing-card {
            background: var(--dark-card);
            border-radius: 20px;
            padding: 2.5rem;
            height: 100%;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .pricing-start {
            border-color: rgba(45, 107, 135, 0.3);
        }
        .pricing-start-plus {
            border-color: rgba(16, 185, 129, 0.4);
            position: relative;
            transform: scale(1.03);
            box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
        }
        .pricing-start-plus:hover {
            transform: scale(1.03) translateY(-8px);
        }
        .pricing-business {
            border-color: rgba(168, 85, 247, 0.3);
            position: relative;
        }
        .pricing-popular-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .pricing-enterprise-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: linear-gradient(135deg, #a855f7, #7c3aed);
            color: white;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .pricing-includes {
            background: rgba(45, 107, 135, 0.1);
            border-radius: 8px;
            padding: 10px 16px;
            margin-bottom: 1.5rem;
            font-weight: 600;
            color: var(--brand-blue);
            text-align: center;
        }
        .pricing-extras h4 {
            color: var(--text-muted);
            font-size: 1.2rem;
            font-weight: 600;
        }
        .extra-card {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
        }
        .extra-header {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
            color: var(--text-white);
        }
        .extra-price {
            margin-bottom: 0.75rem;
        }
        .extra-price .price-original {
            text-decoration: line-through;
            color: var(--text-muted);
            font-size: 1rem;
            margin-right: 0.5rem;
        }
        .extra-price .price-discounted {
            font-size: 1.5rem;
            font-weight: 700;
            color: #10b981;
        }
        .extra-price .price-period {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .extra-description {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        .pricing-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pricing-description {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .pricing-price {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .price-original {
            font-size: 1.25rem;
            color: var(--text-light);
            text-decoration: line-through;
            margin-right: 0.75rem;
        }

        .price-discounted {
            font-size: 3rem;
            font-weight: 700;
            color: #10b981;
        }

        .price-period {
            font-size: 1rem;
            color: var(--text-light);
        }

        .price-note {
            display: block;
            font-size: 0.85rem;
            color: #10b981;
            margin-top: 0.25rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
            flex-grow: 1;
        }

        .pricing-features li {
            color: var(--text-light);
            font-size: 0.95rem;
            padding: 0.5rem 0;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .pricing-features li i {
            color: var(--brand-blue);
            margin-top: 0.2rem;
        }

        .btn-pricing {
            width: 100%;
            padding: 1rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .btn-pricing-primary {
            background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
            color: #fff;
            border: none;
        }

        .btn-pricing-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(45, 107, 135, 0.4);
            color: #fff;
        }

        .pricing-note {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* ── Nuevo Pricing (Fase 7) — modelo modular ─────────────────────── */
        .pricing-hero {
            max-width: 720px;
            margin: 0 auto 3.5rem;
            text-align: center;
        }
        .pricing-hero h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
        }
        .pricing-hero p {
            color: var(--text-light);
            font-size: 1.2rem;
        }
        .pricing-promo-banner {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: #fff;
            padding: 0.85rem 1.75rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
        }
        .pricing-onboarding-note {
            margin-top: 1.25rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.4rem;
            font-size: 1rem;
            color: var(--text-light);
        }
        .pricing-onboarding-note i { color: #10b981; }
        .pricing-onboarding-note a {
            color: #10b981;
            font-weight: 700;
            text-decoration: underline;
        }
        .pricing-onboarding-note a:hover { color: #34d399; }

        .modular-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
            gap: 2rem;
            align-items: stretch;
        }
        @media (max-width: 991px) {
            .modular-grid { grid-template-columns: 1fr; }
        }

        .modular-base-card {
            background: var(--dark-card);
            border: 1px solid rgba(45, 107, 135, 0.4);
            border-radius: 20px;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
        }
        .modular-base-card .base-price {
            font-size: 3.25rem;
            font-weight: 800;
            color: #10b981;
            line-height: 1;
        }
        .modular-base-card .base-period {
            color: var(--text-light);
            font-size: 1.05rem;
        }
        .modular-base-card .base-price-strike {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-light);
            text-decoration: line-through;
            margin-right: 0.4rem;
        }
        .modular-base-card .base-after-note {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-top: 0.4rem;
        }
        .modular-includes {
            background: rgba(45, 107, 135, 0.12);
            border-radius: 10px;
            padding: 0.85rem 1.1rem;
            margin: 1.5rem 0;
            color: var(--brand-blue);
            font-weight: 600;
            text-align: center;
        }
        .modular-addons {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .modular-addons li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.85rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            color: var(--text-light);
        }
        .modular-addons li:last-child { border-bottom: none; }
        .modular-addons .addon-price {
            font-weight: 700;
            color: var(--text-white);
            white-space: nowrap;
        }

        /* Calculadora */
        .pricing-calculator {
            background: var(--dark-card);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 20px;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
        }
        .pricing-calculator h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        .calc-field {
            margin-bottom: 1.25rem;
        }
        .calc-field label {
            display: block;
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 0.4rem;
        }
        .calc-field input[type="number"] {
            width: 100%;
            background: var(--dark-bg);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 10px;
            color: #fff;
            padding: 0.75rem 1rem;
            font-size: 1.05rem;
        }
        .calc-toggle {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        .calc-toggle input { width: 1.15rem; height: 1.15rem; }

        .calc-standard {
            margin-top: auto;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
        }
        .calc-breakdown-row {
            display: flex;
            justify-content: space-between;
            color: var(--text-light);
            font-size: 0.95rem;
            padding: 0.3rem 0;
        }
        .calc-breakdown-amount { color: var(--text-white); font-weight: 600; }
        .calc-total {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px dashed rgba(255,255,255,0.15);
        }
        .calc-total .calc-total-label { font-weight: 600; color: var(--text-white); }
        .calc-total .calc-total-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: #10b981;
        }
        .calc-total .calc-total-value::after {
            content: " €/mes";
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-light);
        }
        .calc-promo-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-top: 0.25rem;
        }
        .calc-promo-row .calc-promo-label {
            color: #10b981;
            font-weight: 600;
            font-size: 0.95rem;
        }
        .calc-promo-row .calc-promo-value {
            color: #10b981;
            font-weight: 800;
            font-size: 1.25rem;
        }
        .calc-no-commitment {
            color: var(--text-light);
            font-size: 0.85rem;
            margin-top: 0.5rem;
        }
        .calc-enterprise-hint {
            background: rgba(168, 85, 247, 0.12);
            border: 1px solid rgba(168, 85, 247, 0.35);
            border-radius: 12px;
            padding: 1.25rem;
            margin-top: auto;
            text-align: center;
        }
        .calc-enterprise-hint p { color: var(--text-light); margin-bottom: 0.85rem; }

        /* Comparativa vs comisión */
        .pricing-comparison {
            background: rgba(45, 107, 135, 0.1);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            margin: 3.5rem auto 0;
            max-width: 820px;
        }
        .pricing-comparison h4 { font-weight: 700; margin-bottom: 0.5rem; }
        .pricing-comparison p { color: var(--text-light); margin-bottom: 0; }

        /* Bloque Enterprise */
        .enterprise-block {
            background: linear-gradient(135deg, #2a1a45 0%, #1a1230 100%);
            border: 1px solid rgba(168, 85, 247, 0.35);
            border-radius: 20px;
            padding: 3rem;
            margin-top: 3.5rem;
        }
        .enterprise-block h3 {
            font-size: 1.9rem;
            font-weight: 800;
            color: #c4a5f7;
            margin-bottom: 0.5rem;
        }
        .enterprise-block .enterprise-sub { color: var(--text-light); margin-bottom: 1.5rem; }
        .enterprise-pricing {
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
            gap: 0.75rem;
            margin: 0 0 1.5rem;
        }
        .enterprise-price {
            flex: 1 1 220px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            padding: 1rem;
        }
        .enterprise-price-kicker,
        .enterprise-price-label {
            display: block;
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.9rem;
        }
        .enterprise-amount {
            display: block;
            color: #fff;
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.1;
            margin: 0.25rem 0;
        }
        .enterprise-plus {
            align-self: center;
            color: #c4a5f7;
            font-size: 1.5rem;
            font-weight: 800;
        }
        .enterprise-founder {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: #f8fafc;
            background: rgba(16, 185, 129, 0.16);
            border: 1px solid rgba(16, 185, 129, 0.35);
            border-radius: 999px;
            padding: 0.45rem 0.8rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }
        .enterprise-price-note {
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.9rem;
            margin: 0 0 1.5rem;
        }
        .enterprise-usd-note {
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.95rem;
            margin: -0.5rem 0 1rem;
        }
        .base-usd-note {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-top: 0.25rem;
        }
        .enterprise-features {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 0.6rem;
        }
        .enterprise-features li {
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .enterprise-features li i { color: #a855f7; }
        .btn-enterprise {
            display: inline-block;
            background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
            color: #fff;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.05rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .btn-enterprise:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
            color: #fff;
        }

        /* FAQ */
        .pricing-faq { margin-top: 4rem; }
        .pricing-faq h3 {
            text-align: center;
            font-weight: 800;
            margin-bottom: 2rem;
        }
        .faq-item {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
        }
        .faq-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
        }
        .faq-item p { color: var(--text-light); margin-bottom: 0; }

        /* Success Modal */
        .success-modal .modal-content {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            text-align: center;
            padding: 2rem;
        }

        .success-modal .modal-body {
            padding: 2rem 1rem;
        }

        .success-modal .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            animation: scaleIn 0.5s ease;
        }

        .success-modal .success-icon i {
            font-size: 2.5rem;
            color: #fff;
        }

        .success-modal .modal-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
        }

        .success-modal .modal-description {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .success-modal .btn-close-modal {
            background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
            color: #fff;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .success-modal .btn-close-modal:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(45, 107, 135, 0.4);
            color: #fff;
        }

        @keyframes scaleIn {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .success-modal .modal-backdrop {
            background: rgba(0, 0, 0, 0.8);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-stats {
                gap: 2rem;
            }
            .dashboard-preview {
                margin-top: 3rem;
            }
            .integrations-logos {
                gap: 1.5rem;
            }
            .role-card, .pricing-card {
                margin-bottom: 1rem;
            }
            .pricing-start-plus {
                transform: none;
                box-shadow: none;
            }
            .pricing-start-plus:hover {
                transform: translateY(-8px);
            }
        }

        @media (max-width: 767px) {
            .hero-section {
                padding: 120px 0 60px;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-ctas {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-ctas .btn {
                width: 100%;
                text-align: center;
            }
            .hero-stats {
                flex-wrap: wrap;
                gap: 1.5rem;
            }
            .stat-item {
                flex: 0 0 45%;
            }
            .integrations-section {
                padding: 40px 0;
            }
            .integrations-logos {
                gap: 1rem;
            }
            .integration-logo img {
                height: 25px;
            }
            .ecommerce-section {
                padding: 50px 0;
            }
            .ecommerce-logos {
                gap: 1.5rem;
            }
            .ecommerce-logo img {
                height: 40px;
            }
            .target-audience-section,
            .how-it-works-section,
            .pricing-section,
            .features-section {
                padding: 60px 0;
            }
            .section-title {
                font-size: 1.75rem;
            }
            .pricing-badges {
                flex-direction: column;
                align-items: center;
            }
            .badge-discount, .badge-trial {
                font-size: 0.85rem;
                text-align: center;
            }
            .pricing-card {
                padding: 1.5rem;
            }
            .price-discounted {
                font-size: 2.5rem;
            }
            .contact-form {
                padding: 2rem;
            }
            .discount-badge {
                font-size: 0.8rem;
                padding: 0.4rem 1rem;
            }
        }

.marketing-detail { max-width: 70ch; line-height: 1.75; }
.marketing-detail a { color: #91cce4; }
.navbar-brand img { width: auto; height: 40px; }
.lang-switcher { display: flex; gap: .5rem; }
.navbar-collapse.show { background: var(--dark-bg); padding: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }

.marketing-detail p { color: var(--gris-200, #D8DDE3); }

.footer-logo { width: auto; }
.marketing-detail a.btn { color: var(--brand-blanco, #fff); }
/* Accessible foregrounds on the existing light and dark marketing surfaces. */
.role-headline, .modular-includes { color: var(--brand-sky); }
.audience-card .audience-number { color: var(--brand-primary-darker); }
.audience-cta-bar { background: var(--brand-coral-dark); }
.contact-form .text-muted, .contact-form .text-muted a,
.contact-form-card .text-muted, .contact-form-card .text-muted a { color: var(--gris-200) !important; }

#contact .text-muted, #contact .text-muted a { color: var(--gris-200) !important; }
