:root {

            --primary: #2563eb;

            --primary-dark: #1d4ed8;

            --primary-deep: #1e3a8a;

            --primary-light: #eff6ff;

            --accent-cyan: #06b6d4;

            --accent-teal: #0d9488;

            --accent-purple: #7c3aed;

            --accent-amber: #a16207;

            --surface: #ffffff;

            --surface-alt: #f4f7fc;

            --surface-card: rgba(255, 255, 255, 0.96);

            --border: #cbd5e1;

            --border-hover: #94a3b8;

            --text-main: #1d2433;

            --text-muted: #64748b;

            --text-light: #94a3b8;

            --success: #15803d;

            --success-light: #ecfdf5;

            --danger: #b91c1c;

            --shadow-sm: 0 1px 3px rgba(29, 36, 51, 0.05);

            --shadow-md: 0 6px 24px -3px rgba(29, 36, 51, 0.07);

            --shadow-lg: 0 20px 48px -10px rgba(29, 36, 51, 0.12);

            --shadow-glow: 0 12px 36px -4px rgba(37, 99, 235, 0.28);

        }

        * {

            box-sizing: border-box;

            margin: 0;

            padding: 0;

        }

        html {

            scroll-behavior: smooth;

        }

                body {

            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

            background: #ffffff;

            color: var(--text-main);

            line-height: 1.6;

            overflow-x: hidden;

        }

        h1, h2, h3, h4, .hero-title, .section-title, .brand-title, .bench-card-title, .plan-name, .module-title {

            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

            letter-spacing: -0.02em;

        }

        /* Ambient Glows */

        /* Ambient Glows Neutralized (Strict Brand Kit Compliance) */
        .ambient-glow-1,
        .ambient-glow-2,
        .ambient-glow-3 {
            display: none !important;
        }

        .container {

            width: 100%;

            max-width: 1240px;

            margin: 0 auto;

            padding: 0 24px;

            position: relative;

            z-index: 1;

        }

        /* Navbar */

        .navbar {
            position: sticky;
            top: 0;
            width: 100%;
            height: 74px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.85);
            display: flex;
            align-items: center;
            box-sizing: border-box;
            transition: all 0.25s ease;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            height: 100%;
            padding: 0 48px;
            box-sizing: border-box;
        }

        @media (max-width: 1200px) {
            .nav-inner {
                padding: 0 32px;
            }
        }

        @media (max-width: 1024px) {
            .nav-inner {
                padding: 0 24px;
            }
        }

        @media (max-width: 640px) {
            .nav-inner {
                padding: 0 16px;
            }
        }

        .nav-icon-btn {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            width: 38px;

            height: 38px;

            border-radius: 8px;

            color: #475569;

            background: transparent;

            border: 1px solid transparent;

            transition: all 0.2s ease;

            text-decoration: none;

            cursor: pointer;

        }

        .nav-icon-btn:hover {

            color: #2563eb;

            background: #eff6ff;

            border-color: #dbeafe;

        }

        .nav-icon-btn svg {

            width: 20px;

            height: 20px;

        }

        .brand-link {

            display: flex;

            align-items: center;

            gap: 12px;

            text-decoration: none;

            color: inherit;

        }

        .brand-logo-icon {

            width: 40px;

            height: 40px;

            border-radius: 12px;

            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);

            display: flex;

            align-items: center;

            justify-content: center;

            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.32);

        }

        .brand-title {

            font-size: 20px;

            font-weight: 800;

            letter-spacing: -0.6px;

            color: #0f172a;

            display: flex;

            align-items: center;

            gap: 8px;

        }

        .badge-suite {

            font-size: 10px;

            font-weight: 800;

            text-transform: uppercase;

            padding: 3px 7px;

            background: linear-gradient(135deg, #eff4ff 0%, #dbeafe 100%);

            color: #2563eb;

            border-radius: 6px;

            border: 1px solid rgba(37, 99, 235, 0.25);

            letter-spacing: 0.6px;

        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .nav-item a {

            text-decoration: none;

            font-size: 14px;

            font-weight: 500;

            color: #475569;

            transition: color 0.2s;

            display: flex;

            align-items: center;

            gap: 4px;

        }

        .nav-item a:hover {

            color: var(--primary);

        }

        /* Dropdown La Suite */

        .nav-item-dropdown {

            position: relative;

        }

        .nav-link-dropdown {

            cursor: pointer;

        }

        .dropdown-chevron {

            transition: transform 0.2s ease;

        }

        .nav-item-dropdown:hover .dropdown-chevron {

            transform: rotate(180deg);

        }

        .nav-dropdown-menu {

            position: absolute;

            top: 100%;

            left: 0;

            margin-top: 12px;

            width: 330px;

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: 16px;

            box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);

            padding: 10px;

            opacity: 0;

            visibility: hidden;

            transform: translateY(8px);

            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);

            z-index: 1000;

        }

        .nav-item-dropdown:hover .nav-dropdown-menu,

        .nav-item-dropdown:focus-within .nav-dropdown-menu {

            opacity: 1;

            visibility: visible;

            transform: translateY(0);

        }

        .dropdown-header {

            padding: 6px 10px 8px;

            border-bottom: 1px solid #f1f5f9;

            margin-bottom: 6px;

        }

        .dropdown-header-tag {

            font-size: 10.5px;

            font-weight: 800;

            text-transform: uppercase;

            letter-spacing: 0.8px;

            color: #94a3b8;

        }

        .dropdown-item {

            display: flex !important;

            align-items: flex-start !important;

            gap: 12px !important;

            padding: 10px 10px !important;

            border-radius: 10px;

            text-decoration: none;

            transition: background 0.15s ease, transform 0.15s ease;

        }

        .dropdown-item:hover {

            background: #f8fafc !important;

            transform: translateX(2px);

        }

        .dropdown-icon {

            width: 36px;

            height: 36px;

            border-radius: 9px;

            display: flex;

            align-items: center;

            justify-content: center;

            flex-shrink: 0;

        }

        .dropdown-text {

            flex: 1;

        }

        .dropdown-title {

            font-size: 13.5px !important;

            font-weight: 700 !important;

            color: #0f172a !important;

            display: flex;

            align-items: center;

            gap: 6px;

            margin-bottom: 2px;

        }

        .dropdown-badge {

            font-size: 9.5px;

            font-weight: 700;

            padding: 2px 6px;

            border-radius: 4px;

            line-height: 1;

        }

        .badge-blue { background: #eff6ff; color: #2563eb; }

        .badge-purple { background: #faf5ff; color: #7c3aed; }

        .badge-red { background: #fef2f2; color: #ef4444; }

        .badge-green { background: #ecfdf5; color: #059669; }

        .dropdown-desc {

            font-size: 11.5px !important;

            color: #64748b !important;

            line-height: 1.35;

            font-weight: 400 !important;

        }

        .dropdown-footer {

            margin-top: 6px;

            padding-top: 8px;

            border-top: 1px solid #f1f5f9;

            text-align: center;

        }

        .dropdown-footer-link {

            font-size: 12px !important;

            font-weight: 600 !important;

            color: #2563eb !important;

            text-decoration: none;

            display: inline-flex !important;

            align-items: center;

            gap: 4px;

        }

        .dropdown-footer-link:hover {

            text-decoration: underline;

        }

        .nav-actions {

            display: flex;

            align-items: center;

            gap: 12px;

        }

        /* Mobile Menu Toggle Button (Desktop: Hidden) */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 8px;
            background: #ffffff;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            z-index: 1001;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-menu-toggle:hover {
            background: #f1f5f9;
            border-color: #94a3b8;
        }

        .mobile-menu-toggle .hamburger-bar {
            display: block;
            width: 20px;
            height: 2px;
            background: #0f172a;
            border-radius: 2px;
            transition: transform 0.25s ease, opacity 0.2s ease;
        }

        .mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .btn {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 8px;

            font-family: inherit;

            font-size: 13.5px;

            font-weight: 600;

            padding: 10px 18px;

            border-radius: 8px;

            text-decoration: none;

            cursor: pointer;

            transition: all 0.2s ease;

            border: none;

        }

        .btn-outline {

            background: transparent;

            color: #334155;

            border: 1.5px solid #cbd5e1;

        }

        .btn-outline:hover {

            border-color: #2563eb;

            color: #2563eb;

            background: #eff4ff;

        }

        .btn-primary {

            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);

            color: #ffffff;

            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);

        }

        .btn-primary:hover {

            background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);

            transform: translateY(-1px);

            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);

        }

        .btn-lg {

            padding: 14px 28px;

            font-size: 15px;

            border-radius: 12px;

        }

        /* Hero */

        .hero {

            padding: 70px 0 50px;

            text-align: center;

            position: relative;

        }

        .pill-badge {

            display: inline-flex;

            align-items: center;

            gap: 8px;

            padding: 6px 18px;

            background: #f1f5f9;

            border: 1px solid #e2e8f0;

            border-radius: 100px;

            font-size: 12px;

            font-weight: 600;

            color: #334155;

            margin-bottom: 24px;

            box-shadow: var(--shadow-sm);

        }

        .pulse-dot {

            width: 8px;

            height: 8px;

            border-radius: 50%;

            background: #10b981;

            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);

            animation: pulseDot 2s infinite;

        }

        @keyframes pulseDot {

            0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }

            70% { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }

            100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }

        }

        .hero-title {

            font-size: 54px;

            font-weight: 900;

            line-height: 1.14;

            letter-spacing: -2px;

            color: #0f172a;

            max-width: 1040px;

            margin: 0 auto 24px;

        }

        .gradient-text {

            background: linear-gradient(135deg, #2563eb 20%, #06b6d4 85%);

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

        }

        .gradient-text-purple {

            background: linear-gradient(135deg, #7c3aed 20%, #ec4899 85%);

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

        }

        .hero-subtitle {

            font-size: 18.5px;

            color: #64748b;

            max-width: 850px;

            margin: 0 auto 36px;

            line-height: 1.62;

            font-weight: 400;

        }

        .hero-ctas {

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 16px;

            margin-bottom: 40px;

            flex-wrap: wrap;

        }

        /* Ticker Stats */

        .stats-ticker {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

            gap: 18px;

            margin: 36px 0 20px;

            text-align: left;

        }

        .ticker-card {

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: 14px;

            padding: 16px 20px;

            box-shadow: var(--shadow-sm);

            display: flex;

            align-items: center;

            gap: 14px;

        }

        .ticker-icon {

            width: 44px;

            height: 44px;

            border-radius: 10px;

            display: flex;

            align-items: center;

            justify-content: center;

            flex-shrink: 0;

        }

        .ticker-val {

            font-size: 22px;

            font-weight: 800;

            color: #0f172a;

            letter-spacing: -0.5px;

            line-height: 1.2;

        }

        .ticker-label {

            font-size: 12px;

            color: #64748b;

            font-weight: 500;

        }

        /* SECTION HEADER COMMON */

        .section-header {

            text-align: center;

            max-width: 840px;

            margin: 0 auto 52px;

        }

        .section-tag {

            font-size: 12px;

            font-weight: 800;

            text-transform: uppercase;

            letter-spacing: 1.2px;

            color: var(--primary);

            margin-bottom: 12px;

            display: inline-block;

            background: #eff6ff;

            padding: 4px 14px;

            border-radius: 100px;

            border: 1px solid #bfdbfe;

        }

        .section-title {

            font-size: 38px;

            font-weight: 800;

            letter-spacing: -1.2px;

            color: #0f172a;

            margin-bottom: 16px;

            line-height: 1.22;

        }

        .section-desc {

            font-size: 16.5px;

            color: #64748b;

            line-height: 1.6;

        }

        /* 1. COCKPIT TELEMETRÍA INTERACTIVA */

        .telemetry-cockpit-section {

            padding: 80px 0;

            background: #f8fafc;

            border-top: 1px solid var(--border);

            border-bottom: 1px solid var(--border);

            position: relative;

        }

        .cockpit-card {

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: 24px;

            box-shadow: var(--shadow-lg);

            overflow: hidden;

        }

        .cockpit-nav-tabs {

            display: flex;

            background: #f1f5f9;

            border-bottom: 1px solid var(--border);

            overflow-x: auto;

        }

        .cockpit-tab-btn {

            flex: 1;

            padding: 18px 24px;

            font-family: inherit;

            font-size: 14.5px;

            font-weight: 700;

            color: #64748b;

            background: transparent;

            border: none;

            cursor: pointer;

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 10px;

            transition: all 0.2s ease;

            white-space: nowrap;

            border-bottom: 3px solid transparent;

        }

        .cockpit-tab-btn:hover {

            color: #0f172a;

            background: rgba(255, 255, 255, 0.6);

        }

        .cockpit-tab-btn.active {

            color: var(--primary);

            background: #ffffff;

            border-bottom-color: var(--primary);

        }

        .cockpit-content {

            padding: 36px;

        }

        .cockpit-panel {

            display: none;

        }

        .cockpit-panel.active {

            display: block;

            animation: fadeIn 0.3s ease;

        }

        @keyframes fadeIn {

            from { opacity: 0; transform: translateY(6px); }

            to { opacity: 1; transform: translateY(0); }

        }

        .telemetry-grid {

            display: grid;

            grid-template-columns: 1.25fr 1fr;

            gap: 32px;

            align-items: stretch;

        }

        @media (max-width: 960px) {

            .telemetry-grid {

                grid-template-columns: 1fr;

            }

        }

        /* SVG Chart & Visual Blocks */

        .chart-box {

            background: #0f172a;

            color: #ffffff;

            border-radius: 18px;

            padding: 24px;

            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);

            position: relative;

            overflow: hidden;

        }

        .chart-header {

            display: flex;

            align-items: center;

            justify-content: space-between;

            margin-bottom: 20px;

            flex-wrap: wrap;

            gap: 10px;

        }

        .chart-title {

            font-size: 15px;

            font-weight: 700;

            display: flex;

            align-items: center;

            gap: 8px;

        }

        .chart-svg-wrap {

            width: 100%;

            height: 220px;

            position: relative;

        }

        .chart-legend {

            display: flex;

            gap: 18px;

            margin-top: 16px;

            font-size: 12px;

            color: #94a3b8;

        }

        .legend-item {

            display: flex;

            align-items: center;

            gap: 6px;

        }

        .legend-dot {

            width: 10px;

            height: 10px;

            border-radius: 50%;

        }

        /* Live Session Feed */

        .live-feed-card {

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: 18px;

            padding: 24px;

            display: flex;

            flex-direction: column;

            justify-content: space-between;

        }

        .session-item {

            padding: 14px;

            background: #f8fafc;

            border: 1px solid #e2e8f0;

            border-radius: 12px;

            margin-bottom: 12px;

            transition: all 0.2s ease;

        }

        .session-item:hover {

            border-color: #93c5fd;

            background: #f0f7ff;

        }

        .session-top {

            display: flex;

            align-items: center;

            justify-content: space-between;

            font-size: 12px;

            color: #64748b;

            margin-bottom: 6px;

        }

        .session-query {

            font-size: 14px;

            font-weight: 700;

            color: #0f172a;

            margin-bottom: 6px;

            display: flex;

            align-items: center;

            gap: 6px;

        }

        .session-metrics {

            display: flex;

            align-items: center;

            gap: 14px;

            font-size: 12px;

            color: #475569;

            flex-wrap: wrap;

        }

        .metric-pill {

            display: inline-flex;

            align-items: center;

            gap: 4px;

            padding: 3px 8px;

            border-radius: 6px;

            font-weight: 600;

            background: #ffffff;

            border: 1px solid #cbd5e1;

        }

        .metric-pill-green {

            background: #ecfdf5;

            color: #059669;

            border-color: #a7f3d0;

        }

        .metric-pill-blue {

            background: #eff6ff;

            color: #2563eb;

            border-color: #bfdbfe;

        }

        .metric-pill-purple {

            background: #faf5ff;

            color: #7c3aed;

            border-color: #e9d5ff;

        }

        /* 2. LA SUITE PULSE: 3 MÓDULOS */

        .suite-section {

            padding: 100px 0;

            position: relative;

        }

        .suite-grid {

            display: grid;

            grid-template-columns: repeat(4, 1fr);

            gap: 22px;

        }

        @media (max-width: 1200px) {

            .suite-grid {

                grid-template-columns: repeat(2, 1fr);

            }

        }

        @media (max-width: 768px) {

            .suite-grid {

                grid-template-columns: 1fr;

            }

        }

        .module-card {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            padding: 0;
            box-shadow: var(--shadow-md);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.25s ease;
        }

        .module-card:hover {

            transform: translateY(-5px);

            box-shadow: var(--shadow-lg);

            border-color: #93c5fd;

        }

        .module-badge {

            display: inline-block;

            font-size: 11px;

            font-weight: 800;

            text-transform: uppercase;

            letter-spacing: 0.8px;

            padding: 4px 10px;

            border-radius: 6px;

            margin-bottom: 20px;

            width: fit-content;

        }

        .badge-pulse-ctr { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }

        .badge-pulse-rank { background: #faf5ff; color: #7c3aed; border: 1px solid #e9d5ff; }

        .badge-pulse-map { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

        .badge-pulse-geo { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }

        .module-icon-wrap {

            width: 56px;

            height: 56px;

            border-radius: 14px;

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 20px;

        }

        .module-title {

            font-size: 22px;

            font-weight: 800;

            color: #0f172a;

            margin-bottom: 12px;

            letter-spacing: -0.5px;

        }

        .module-desc {

            font-size: 14px;

            color: #64748b;

            line-height: 1.6;

            margin-bottom: 24px;

        }

        .module-features-list {

            list-style: none;

            margin-bottom: 28px;

            flex-grow: 1;

        }

        .module-feature-item {

            display: flex;

            align-items: flex-start;

            gap: 10px;

            font-size: 13.5px;

            color: #334155;

            margin-bottom: 12px;

            line-height: 1.45;

        }

        .module-feature-item svg {

            flex-shrink: 0;

            margin-top: 2px;

        }

        /* 3. ECOSISTEMA GOOGLE NATIVO */

        .google-ecosystem-section {

            padding: 90px 0;

            background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);

            border-top: 1px solid var(--border);

            border-bottom: 1px solid var(--border);

        }

        .google-grid {

            display: grid;

            grid-template-columns: repeat(4, 1fr);

            gap: 22px;

        }

        @media (max-width: 1024px) {

            .google-grid {

                grid-template-columns: repeat(2, 1fr);

            }

        }

        @media (max-width: 640px) {

            .google-grid {

                grid-template-columns: 1fr;

            }

        }

        .google-card {

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: 18px;

            padding: 28px 22px;

            box-shadow: var(--shadow-sm);

            transition: all 0.2s ease;

        }

        .google-card:hover {

            transform: translateY(-4px);

            box-shadow: var(--shadow-md);

            border-color: #cbd5e1;

        }

        .google-brand-header {

            display: flex;

            align-items: center;

            gap: 12px;

            margin-bottom: 16px;

        }

        .google-logo-icon {

            width: 42px;

            height: 42px;

            border-radius: 10px;

            display: flex;

            align-items: center;

            justify-content: center;

            box-shadow: 0 2px 8px rgba(0,0,0,0.06);

        }

        .google-card-title {

            font-size: 16px;

            font-weight: 700;

            color: #0f172a;

        }

        .google-card-sub {

            font-size: 11px;

            color: #64748b;

            text-transform: uppercase;

            font-weight: 700;

        }

        .google-card-desc {

            font-size: 13.5px;

            color: #64748b;

            line-height: 1.55;

            margin-bottom: 16px;

        }

        .google-status-pill {

            display: inline-flex;

            align-items: center;

            gap: 6px;

            font-size: 11.5px;

            font-weight: 700;

            color: #059669;

            background: #ecfdf5;

            padding: 4px 10px;

            border-radius: 6px;

            border: 1px solid #a7f3d0;

        }

        /* 4. MOTOR DE INTELIGENCIA ARTIFICIAL & ML */

        .ai-engine-section {

            padding: 100px 0;

            position: relative;

        }

        .ai-showcase-split {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 40px;

            align-items: center;

        }

        @media (max-width: 960px) {

            .ai-showcase-split {

                grid-template-columns: 1fr;

            }

        }

        .ai-features-column {

            display: flex;

            flex-direction: column;

            gap: 20px;

        }

        .ai-feature-card {

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: 16px;

            padding: 22px;

            box-shadow: var(--shadow-sm);

            transition: all 0.2s ease;

            display: flex;

            gap: 16px;

        }

        .ai-feature-card:hover {

            border-color: #a78bfa;

            transform: translateX(4px);

            box-shadow: var(--shadow-md);

        }

        .ai-feature-icon {

            width: 48px;

            height: 48px;

            border-radius: 12px;

            background: #f5f3ff;

            color: #7c3aed;

            display: flex;

            align-items: center;

            justify-content: center;

            flex-shrink: 0;

        }

        .ai-feature-title {

            font-size: 16px;

            font-weight: 700;

            color: #0f172a;

            margin-bottom: 4px;

        }

        .ai-feature-text {

            font-size: 13.5px;

            color: #64748b;

            line-height: 1.5;

        }

        /* NavBoost Forecast Interactive Slider */

        .forecast-interactive-box {

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: 22px;

            padding: 32px;

            box-shadow: var(--shadow-lg);

            position: relative;

        }

        .forecast-header {

            display: flex;

            align-items: center;

            justify-content: space-between;

            margin-bottom: 24px;

            flex-wrap: wrap;

            gap: 12px;

        }

        .forecast-slider-wrap {

            margin: 24px 0 28px;

        }

        .forecast-slider {

            width: 100%;

            height: 8px;

            border-radius: 4px;

            background: #e2e8f0;

            outline: none;

            -webkit-appearance: none;

            cursor: pointer;

        }

        .forecast-slider::-webkit-slider-thumb {

            -webkit-appearance: none;

            appearance: none;

            width: 22px;

            height: 22px;

            border-radius: 50%;

            background: #2563eb;

            cursor: pointer;

            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);

            border: 3px solid #ffffff;

        }

        .forecast-slider-labels {

            display: flex;

            justify-content: space-between;

            margin-top: 8px;

            font-size: 12px;

            color: #64748b;

            font-weight: 600;

        }

        .forecast-result-grid {

            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 14px;

            margin-top: 20px;

        }

        .forecast-result-card {

            background: #f8fafc;

            border: 1px solid #e2e8f0;

            border-radius: 12px;

            padding: 16px 12px;

            text-align: center;

        }

        .forecast-result-val {

            font-size: 24px;

            font-weight: 900;

            color: #0f172a;

            margin-bottom: 4px;

        }

        .forecast-result-label {

            font-size: 11px;

            color: #64748b;

            font-weight: 600;

            text-transform: uppercase;

        }

        /* 5. PLANES & PRECIOS OFICIALES */

        .pricing-section {

            padding: 100px 0;

            background: #f4f7fc;

            border-top: 1px solid var(--border);

            border-bottom: 1px solid var(--border);

            position: relative;

        }

        .pricing-grid {

            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 28px;

            align-items: stretch;

            margin-top: 24px;

        }

        @media (max-width: 960px) {

            .pricing-grid {

                grid-template-columns: 1fr;

            }

        }

        .pricing-card {

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: 16px;

            padding: 38px 28px;

            display: flex;

            flex-direction: column;

            justify-content: space-between;

            position: relative;

            transition: all 0.25s ease;

            box-shadow: var(--shadow-sm);

        }

        .pricing-card:hover {

            transform: translateY(-4px);

            box-shadow: var(--shadow-md);

        }

        .pricing-card.featured {

            border: 2px solid #2563eb;

            box-shadow: 0 16px 40px -8px rgba(37, 99, 235, 0.22);

            transform: scale(1.02);

            padding: 42px 28px 36px;

        }

        .pricing-card.featured:hover {

            transform: scale(1.02) translateY(-4px);

        }

        .pricing-badge-popular {

            position: absolute;

            top: -13px;

            left: 50%;

            transform: translateX(-50%);

            background: #2563eb;

            color: #ffffff;

            font-size: 11px;

            font-weight: 800;

            text-transform: uppercase;

            letter-spacing: 0.6px;

            padding: 5px 16px;

            border-radius: 20px;

            white-space: nowrap;

            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);

            display: inline-flex;

            align-items: center;

            gap: 6px;

            z-index: 2;

        }

        .plan-name {

            font-family: 'Manrope', sans-serif;

            font-size: 22px;

            font-weight: 800;

            color: #1d2433;

            margin-bottom: 6px;

        }

        .plan-desc {

            font-size: 13.5px;

            color: #64748b;

            margin-bottom: 22px;

            min-height: 42px;

            line-height: 1.5;

        }

        .plan-price-box {

            display: flex;

            align-items: baseline;

            gap: 6px;

            margin-bottom: 24px;

            padding-bottom: 20px;

            border-bottom: 1px solid #f1f5f9;

        }

        .plan-price {

            font-family: 'Manrope', sans-serif;

            font-size: 44px;

            font-weight: 900;

            color: #1d2433;

            letter-spacing: -1.5px;

        }

        .plan-period {

            font-size: 14px;

            color: #64748b;

            font-weight: 500;

        }

        .plan-features {

            list-style: none;

            margin-bottom: 32px;

            flex-grow: 1;

            padding: 0;

        }

        .plan-feature-item {

            display: flex;

            align-items: flex-start;

            gap: 10px;

            font-size: 13.5px;

            color: #334155;

            margin-bottom: 12px;

            line-height: 1.5;

        }

        .plan-feature-item svg {

            color: #10b981;

            flex-shrink: 0;

            margin-top: 3px;

        }

        .plan-feature-text {

            flex: 1;

            color: #334155;

            display: inline;

        }

        .plan-feature-text strong {

            color: #1d2433;

            font-weight: 700;

        }

        /* Standalone Modular Options Bar */

        .modular-bar {

            margin-top: 48px;

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: 18px;

            padding: 24px 30px;

            display: flex;

            align-items: center;

            justify-content: space-between;

            flex-wrap: wrap;

            gap: 20px;

            box-shadow: var(--shadow-sm);

        }

        .modular-info {

            display: flex;

            align-items: center;

            gap: 16px;

        }

        .modular-pill {

            display: inline-flex;

            align-items: center;

            gap: 6px;

            padding: 6px 12px;

            border-radius: 8px;

            font-size: 12.5px;

            font-weight: 700;

            background: #f1f5f9;

            color: #334155;

        }

        /* 6. COMPARATIVA TÉCNICA */

        .comparison-section {

            padding: 90px 0;

        }

        .comparison-table-wrap {

            overflow-x: auto;

            border-radius: 18px;

            border: 1px solid var(--border);

            box-shadow: var(--shadow-md);

            background: #ffffff;

        }

        .comparison-table {

            width: 100%;

            border-collapse: collapse;

            text-align: left;

            font-size: 14px;

        }

        .comparison-table th {

            padding: 18px 22px;

            background: #f8fafc;

            border-bottom: 1px solid var(--border);

            font-weight: 700;

            color: #0f172a;

        }

        .comparison-table td {

            padding: 16px 22px;

            border-bottom: 1px solid #f1f5f9;

            color: #475569;

        }

        .comparison-table tr:last-child td {

            border-bottom: none;

        }

        .comparison-table .col-featured {

            background: #f0f7ff;

            font-weight: 700;

            color: #1e3a8a;

        }

        /* 7. FAQ SECTION */

        .faq-section {

            padding: 90px 0;

            background: #f8fafc;

            border-top: 1px solid var(--border);

        }

        .faq-list {

            max-width: 860px;

            margin: 0 auto;

        }

        .faq-item {

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: 14px;

            margin-bottom: 14px;

            overflow: hidden;

            transition: all 0.2s;

        }

        .faq-question {

            padding: 20px 24px;

            font-size: 15.5px;

            font-weight: 700;

            color: #0f172a;

            cursor: pointer;

            display: flex;

            align-items: center;

            justify-content: space-between;

            user-select: none;

        }

        .faq-answer {

            padding: 0 24px 22px;

            font-size: 14px;

            color: #64748b;

            line-height: 1.65;

            display: none;

        }

        .faq-item.active .faq-answer {

            display: block;

        }

        .faq-item.active .faq-toggle {

            transform: rotate(180deg);

        }

        .faq-toggle {

            transition: transform 0.2s;

            flex-shrink: 0;

        }

        /* 8. CTA STRIP */

        .cta-strip {

            padding: 90px 0;

            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

            color: #ffffff;

            text-align: center;

            position: relative;

            overflow: hidden;

        }

        .cta-strip::before {

            content: '';

            position: absolute;

            top: 0;

            left: 50%;

            transform: translateX(-50%);

            width: 800px;

            height: 300px;

            background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 70%);

            pointer-events: none;

        }

        .cta-title {

            font-size: 42px;

            font-weight: 900;

            letter-spacing: -1.2px;

            margin-bottom: 16px;

        }

        .cta-desc {

            font-size: 17px;

            color: #94a3b8;

            max-width: 680px;

            margin: 0 auto 34px;

            line-height: 1.6;

        }

        /* Footer */

        .footer {

            background: #ffffff;

            border-top: 1px solid var(--border);

            padding: 50px 0 34px;

            font-size: 13.5px;

            color: #64748b;

        }

        .footer-grid {

            display: grid;

            grid-template-columns: 2fr 1fr 1fr 1fr;

            gap: 40px;

            margin-bottom: 40px;

        }

        @media (max-width: 840px) {

            .footer-grid {

                grid-template-columns: 1fr 1fr;

            }

        }

        @media (max-width: 520px) {

            .footer-grid {

                grid-template-columns: 1fr;

            }

        }

        .footer-col-title {

            font-size: 14px;

            font-weight: 700;

            color: #0f172a;

            margin-bottom: 16px;

        }

        .footer-links-list {

            list-style: none;

            display: flex;

            flex-direction: column;

            gap: 10px;

        }

        .footer-links-list a {

            color: #64748b;

            text-decoration: none;

            transition: color 0.2s;

        }

        .footer-links-list a:hover {

            color: var(--primary);

        }

        .footer-bottom {

            display: flex;

            align-items: center;

            justify-content: space-between;

            padding-top: 24px;

            border-top: 1px solid #f1f5f9;

            flex-wrap: wrap;

            gap: 16px;

        }

        @media (max-width: 768px) {

            .hero-title {

                font-size: 38px;

                letter-spacing: -1.2px;

            }

            /* Responsive Mobile Menu Drawer */
            .mobile-menu-toggle {
                display: inline-flex;
            }

            .nav-actions .btn-primary {
                display: none; /* Hide top CTA on small screens to prevent navbar overflow */
            }

            .nav-menu {
                display: none;
            }

            .nav-menu.mobile-open {
                display: flex !important;
                position: fixed;
                top: 68px;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100vw;
                height: calc(100vh - 68px);
                background: #ffffff;
                flex-direction: column;
                align-items: stretch;
                padding: 16px 20px 48px;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                border-top: 1px solid #e2e8f0;
                box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
                z-index: 999;
                gap: 0;
                animation: mobileDrawerSlide 0.22s cubic-bezier(0.16, 1, 0.3, 1);
            }

            @keyframes mobileDrawerSlide {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .nav-menu.mobile-open .nav-item {
                width: 100%;
                border-bottom: 1px solid #f1f5f9;
            }

            .nav-menu.mobile-open .nav-item a {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 14px 8px;
                font-size: 15px;
                font-weight: 600;
                color: #1e293b;
                text-decoration: none;
                border-radius: 8px;
                transition: background 0.15s ease, color 0.15s ease;
            }

            .nav-menu.mobile-open .nav-item a:hover {
                background: #f8fafc;
                color: #2563eb;
            }

            .nav-menu.mobile-open .nav-item-dropdown {
                position: static;
            }

            .nav-menu.mobile-open .nav-dropdown-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                border: 1px solid #e2e8f0;
                border-radius: 12px;
                background: #f8fafc;
                padding: 8px;
                margin: 0 0 12px 0;
                display: none;
                transform: none !important;
                opacity: 1 !important;
                visibility: visible !important;
            }

            .nav-menu.mobile-open .nav-item-dropdown.mobile-expanded .nav-dropdown-menu {
                display: block !important;
            }

            .nav-menu.mobile-open .nav-item-dropdown.mobile-expanded .dropdown-chevron {
                transform: rotate(180deg);
            }

            .nav-menu.mobile-open .dropdown-item {
                padding: 8px !important;
                margin-bottom: 4px;
            }

            .nav-menu.mobile-open .nav-mobile-cta-item {
                border-bottom: none !important;
                margin-top: 16px;
                padding-top: 8px;
            }

            .hero-subtitle {

                font-size: 16px;

            }

            .pricing-card.featured {

                transform: none;

            }

            .pricing-card.featured:hover {

                transform: translateY(-4px);

            }

        }

    

        /* ==========================================================================

           BENCHMARK TÉCNICO EXHAUSTIVO - COMPARATIVA PREMIUM

           ========================================================================== */

        .benchmark-section {

            padding: 100px 0;

            background: #ffffff;

            position: relative;

        }

        .benchmark-cards-grid {

            display: grid;

            grid-template-columns: repeat(5, 1fr);

            gap: 16px;

            margin: 40px 0 36px;

        }

        @media (max-width: 1120px) {

            .benchmark-cards-grid {

                grid-template-columns: repeat(3, 1fr);

            }

        }

        @media (max-width: 720px) {

            .benchmark-cards-grid {

                grid-template-columns: repeat(2, 1fr);

            }

        }

        @media (max-width: 480px) {

            .benchmark-cards-grid {

                grid-template-columns: 1fr;

            }

        }

        .bench-summary-card {

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: 16px;

            padding: 20px;

            display: flex;

            flex-direction: column;

            justify-content: space-between;

            position: relative;

            box-shadow: var(--shadow-sm);

            transition: all 0.25s ease;

        }

        .bench-summary-card:hover {

            transform: translateY(-3px);

            box-shadow: var(--shadow-md);

        }

        .bench-card-featured {

            border: 2px solid #2563eb;

            background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);

            box-shadow: 0 12px 30px -6px rgba(37, 99, 235, 0.18);

        }

        .bench-card-top-row {

            display: flex;

            align-items: center;

            justify-content: space-between;

            margin-bottom: 12px;

        }

        .bench-card-badge {

            font-size: 10px;

            font-weight: 700;

            padding: 3px 8px;

            border-radius: 20px;

            text-transform: uppercase;

            letter-spacing: 0.4px;

            background: #2563eb;

            color: #ffffff;

            white-space: nowrap;

        }

        .badge-neutral {

            background: #f1f5f9;

            color: #475569;

            border: 1px solid #e2e8f0;

        }

        .badge-amber {

            background: #fef3c7;

            color: #b45309;

            border: 1px solid #fde68a;

        }

        .badge-danger {

            background: #fee2e2;

            color: #b91c1c;

            border: 1px solid #fca5a5;

        }

        .bench-card-header {

            margin-bottom: 14px;

        }

        .bench-card-logo {

            width: 38px;

            height: 38px;

            border-radius: 10px;

            background: linear-gradient(135deg, #2563eb, #06b6d4);

            display: flex;

            align-items: center;

            justify-content: center;

            flex-shrink: 0;

        }

        .logo-neutral {

            background: #e2e8f0;

            color: #475569;

            font-weight: 800;

            font-size: 13px;

        }

        .bench-card-title {

            font-size: 15px;

            font-weight: 800;

            color: #0f172a;

            line-height: 1.2;

            white-space: nowrap;

            overflow: hidden;

            text-overflow: ellipsis;

        }

        .bench-card-sub {

            font-size: 11.5px;

            color: #64748b;

            margin-top: 2px;

        }

        .bench-score-row {

            display: flex;

            align-items: baseline;

            justify-content: space-between;

            margin-bottom: 8px;

        }

        .bench-score-num {

            font-size: 26px;

            font-weight: 900;

            color: #0f172a;

            letter-spacing: -0.5px;

        }

        .bench-score-num.text-primary {

            color: #2563eb;

        }

        .bench-score-label {

            font-size: 12px;

            font-weight: 600;

            color: #64748b;

        }

        .bench-progress-bar {

            width: 100%;

            height: 7px;

            background: #f1f5f9;

            border-radius: 6px;

            overflow: hidden;

            margin-bottom: 12px;

        }

        .bench-progress-fill {

            height: 100%;

            border-radius: 6px;

            transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);

        }

        .fill-100 { width: 100%; background: linear-gradient(90deg, #2563eb, #10b981); }

        .fill-32 { width: 32%; background: #f59e0b; }

        .fill-26 { width: 26%; background: #ef4444; }

        .bench-card-desc {

            font-size: 12px;

            color: #64748b;

            line-height: 1.45;

        }

        /* Benchmark Toolbar */

        .benchmark-toolbar {

            display: flex;

            align-items: center;

            justify-content: space-between;

            flex-wrap: wrap;

            gap: 16px;

            margin-bottom: 24px;

            padding: 16px 20px;

            background: #f8fafc;

            border: 1px solid var(--border);

            border-radius: 14px;

        }

        .benchmark-tabs {

            display: flex;

            align-items: center;

            gap: 8px;

            flex-wrap: wrap;

        }

        .bench-tab-btn {

            background: #ffffff;

            border: 1px solid var(--border);

            color: #475569;

            padding: 7px 14px;

            border-radius: 20px;

            font-size: 12.5px;

            font-weight: 600;

            cursor: pointer;

            display: inline-flex;

            align-items: center;

            gap: 6px;

            transition: all 0.2s ease;

            font-family: inherit;

        }

        .bench-tab-btn:hover {

            border-color: #94a3b8;

            color: #0f172a;

        }

        .bench-tab-btn.active {

            background: #2563eb;

            color: #ffffff;

            border-color: #2563eb;

        }

        .bench-pill-count {

            padding: 2px 7px;

            border-radius: 10px;

            font-size: 11px;

            font-weight: 700;

            background: #f1f5f9;

            color: #64748b;

        }

        .bench-tab-btn.active .bench-pill-count {

            background: rgba(255, 255, 255, 0.25);

            color: #ffffff;

        }

        .benchmark-search-wrap {

            position: relative;

            display: flex;

            align-items: center;

            min-width: 260px;

        }

        .benchmark-search-wrap svg {

            position: absolute;

            left: 12px;

            pointer-events: none;

        }

        .benchmark-search-wrap input {

            width: 100%;

            padding: 8px 12px 8px 36px;

            border-radius: 20px;

            border: 1px solid var(--border);

            font-size: 12.5px;

            background: #ffffff;

            color: #0f172a;

            outline: none;

            font-family: inherit;

            transition: all 0.2s;

        }

        .benchmark-search-wrap input:focus {

            border-color: #2563eb;

            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);

        }

        /* Benchmark Table */

        .bench-table-container {

            border: 1px solid var(--border);

            border-radius: 18px;

            overflow-x: auto;

            background: #ffffff;

            box-shadow: var(--shadow-sm);

        }

        .bench-table {

            width: 100%;

            border-collapse: collapse;

            text-align: left;

            min-width: 960px;

        }

        .bench-table th {

            padding: 16px 20px;

            background: #f8fafc;

            border-bottom: 1px solid var(--border);

            font-size: 13px;

            font-weight: 700;

            color: #334155;

            text-align: center;

        }

        .bench-table th:first-child {

            text-align: left;

            width: 30%;

        }

        .bench-table th.th-pulsectr {

            background: #eff6ff;

            color: #1e40af;

            border-left: 2px solid #3b82f6;

            border-right: 2px solid #3b82f6;

            border-top: 2px solid #3b82f6;

            width: 18%;

        }

        .bench-table th.th-competitor {

            width: 13%;

        }

        .bench-row {

            cursor: pointer;

            transition: background 0.15s ease;

            border-bottom: 1px solid #f1f5f9;

        }

        .bench-row:hover {

            background: #f8fafc;

        }

        .bench-row.active {

            background: #f0f7ff !important;

        }

        .bench-col-protocol {

            padding: 16px 20px;

        }

        .bench-protocol-wrap {

            display: flex;

            flex-direction: column;

            gap: 4px;

        }

        .bench-cat-pill {

            font-size: 10.5px;

            font-weight: 700;

            color: #64748b;

            display: inline-flex;

            align-items: center;

            gap: 5px;

            text-transform: uppercase;

            letter-spacing: 0.3px;

            margin-bottom: 2px;

        }

        .bench-protocol-name {

            font-size: 14px;

            color: #0f172a;

            font-weight: 700;

            line-height: 1.35;

        }

        .bench-expand-hint {

            display: inline-flex;

            align-items: center;

            gap: 4px;

            font-size: 11.5px;

            color: #2563eb;

            font-weight: 600;

            margin-top: 4px;

            opacity: 0.85;

            transition: opacity 0.2s;

        }

        .bench-row:hover .bench-expand-hint {

            opacity: 1;

        }

        .bench-chevron {

            transition: transform 0.25s ease;

        }

        .bench-row.active .bench-chevron {

            transform: rotate(180deg);

        }

        .bench-col-pulsectr {

            padding: 14px 16px;

            text-align: center;

            background: rgba(239, 246, 255, 0.45);

            border-left: 2px solid #93c5fd;

            border-right: 2px solid #93c5fd;

        }

        .bench-col-other {

            padding: 14px 10px;

            text-align: center;

        }

        /* Status Badges */

        .bench-badge {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 5px;

            padding: 4px 10px;

            border-radius: 20px;

            font-size: 11.5px;

            font-weight: 600;

            white-space: nowrap;

        }

        .bench-badge-full {

            background: #ecfdf5;

            color: #059669;

            border: 1px solid #a7f3d0;

        }

        .bench-badge-partial {

            background: #fffbeb;

            color: #d97706;

            border: 1px solid #fde68a;

        }

        .bench-badge-none {

            background: #fef2f2;

            color: #dc2626;

            border: 1px solid #fecaca;

        }

        /* Expandable Accordion Drawer */

        .bench-detail-row {

            display: none;

            background: #f8fafc;

        }

        .bench-detail-row.active {

            display: table-row;

        }

        .bench-detail-content {

            padding: 24px;

            border-bottom: 2px solid #e2e8f0;

            animation: fadeInDetail 0.25s ease forwards;

        }

        @keyframes fadeInDetail {

            from { opacity: 0; transform: translateY(-6px); }

            to { opacity: 1; transform: translateY(0); }

        }

        .bench-detail-grid {

            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 18px;

        }

        @media (max-width: 960px) {

            .bench-detail-grid {

                grid-template-columns: 1fr;

            }

        }

        .bench-detail-card {

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: 14px;

            padding: 18px 20px;

            box-shadow: var(--shadow-sm);

        }

        .bench-detail-card.card-impact {

            border-top: 3px solid #2563eb;

        }

        .bench-detail-card.card-advantage {

            border-top: 3px solid #10b981;

            background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);

        }

        .bench-detail-card.card-flaw {

            border-top: 3px solid #ef4444;

            background: linear-gradient(180deg, #fef2f2 0%, #ffffff 100%);

        }

        .bench-detail-card-header {

            display: flex;

            align-items: center;

            gap: 8px;

            font-size: 13px;

            font-weight: 800;

            color: #0f172a;

            margin-bottom: 10px;

        }

        .bench-detail-card p {

            font-size: 12.5px;

            color: #475569;
            line-height: 1.55;
            margin: 0;
        }

        /* Humanized Lifestyle & Residential Photography Styles */
        .hero-lifestyle-banner {
            margin-top: 36px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .lifestyle-card-main {
            background: #ffffff;
            border: 1px solid #cbd5e1;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 48px -12px rgba(29, 36, 51, 0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .lifestyle-card-main:hover {
            box-shadow: 0 24px 54px -10px rgba(37, 99, 235, 0.18);
        }

        .lifestyle-img-wrap {
            position: relative;
            width: 100%;
            height: 480px;
            overflow: hidden;
            background: #f8fafc;
        }

        @media (max-width: 768px) {
            .lifestyle-img-wrap {
                height: 300px;
            }
        }

        .lifestyle-hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            display: block;
            transition: transform 0.5s ease;
        }

        .lifestyle-card-main:hover .lifestyle-hero-img {
            transform: scale(1.02);
        }

        .lifestyle-gradient-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.65) 100%);
            pointer-events: none;
        }

        .lifestyle-badge-top {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(203, 213, 225, 0.9);
            padding: 8px 16px;
            border-radius: 9999px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 700;
            color: #1e293b;
            box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
        }

        .pulse-indicator-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #10b981;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
            animation: livePulse 2s infinite ease-in-out;
        }

        @keyframes livePulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.35); opacity: 0.7; }
        }

        .lifestyle-badge-bottom-left {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(203, 213, 225, 0.9);
            border-radius: 12px;
            padding: 10px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
        }

        .lifestyle-badge-bottom-right {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(203, 213, 225, 0.9);
            border-radius: 12px;
            padding: 10px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
        }

        @media (max-width: 720px) {
            .lifestyle-badge-bottom-right {
                display: none;
            }
        }

        .badge-icon-wrap {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: #eff6ff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .lifestyle-caption {
            padding: 22px 28px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            background: #ffffff;
            border-top: 1px solid #f1f5f9;
        }

        .lifestyle-caption-title {
            font-family: 'Manrope', sans-serif;
            font-size: 17px;
            font-weight: 800;
            color: #1d2433;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .lifestyle-caption-desc {
            font-size: 14px;
            color: #64748b;
            line-height: 1.55;
        }

        /* Module Card Media - Perfect Edge-Fit Flush */
        .module-card-media {
            width: 100%;
            height: 180px;
            overflow: hidden;
            position: relative;
            border-bottom: 1px solid #e2e8f0;
            margin: 0;
            padding: 0;
            flex-shrink: 0;
            border-top-left-radius: 19px;
            border-top-right-radius: 19px;
            background: #f1f5f9;
        }

        .module-card-media .module-img,
        .module-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            margin: 0;
            padding: 0;
            border-top-left-radius: 19px;
            border-top-right-radius: 19px;
            transition: transform 0.4s ease;
        }

        .module-card:hover .module-img {
            transform: scale(1.05);
        }

        .module-card-body {
            padding: 24px 26px 26px 26px;
            display: flex;
            flex-direction: column;
            flex: 1;
            justify-content: space-between;
        }

        /* Editorial Residential Showcase Section */
        .residential-showcase-section {
            padding: 96px 0;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
            position: relative;
            z-index: 1;
        }

        .residential-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 48px;
        }

        @media (max-width: 992px) {
            .residential-grid {
                grid-template-columns: 1fr;
            }
        }

        .residential-card {
            background: #ffffff;
            border: 1px solid #cbd5e1;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(29, 36, 51, 0.05);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            display: flex;
            flex-direction: column;
        }

        .residential-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 36px -8px rgba(37, 99, 235, 0.12);
            border-color: #94a3b8;
        }

        .residential-card-img-wrap {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .residential-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .residential-card:hover .residential-card-img {
            transform: scale(1.04);
        }

        .residential-card-pill {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(203, 213, 225, 0.85);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            color: #1e293b;
        }

        .residential-card-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .residential-card-title {
            font-family: 'Manrope', sans-serif;
            font-size: 18px;
            font-weight: 800;
            color: #1d2433;
            margin-bottom: 8px;
        }

        .residential-card-desc {
            font-size: 13.5px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 16px;
            flex: 1;
        }

        .residential-card-metrics {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 14px;
            border-top: 1px solid #f1f5f9;
            font-size: 12px;
            font-weight: 600;
            color: #059669;
        }