/* Localweb — generado por build-wp.js. No editar a mano. */

/* === Base: index.html === */

:root {
            --primary: #6366F1;
            --primary-dark: #4f46e5;
            --accent: #6366F1;
            --header-offset: 96px;
            --radius: 10px;
            --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-offset);
        }

        /* ========== SCROLL REVEAL ========== */
        [data-reveal] {
            opacity: 0;
            transform: translateY(32px);
            transition:
                opacity 0.6s var(--reveal-ease),
                transform 0.7s var(--reveal-ease);
            transition-delay: var(--reveal-delay, 0ms);
        }

        .is-inview [data-reveal] {
            opacity: 1;
            transform: translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            [data-reveal] {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
        }

        .locale-region-switcher {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-left: 12px;
        }
        .locale-region-btn {
            border: 1px solid rgba(0, 0, 0, 0.12);
            background: #fff;
            color: #444;
            border-radius: 999px;
            padding: 4px 10px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
        }
        .locale-region-btn.is-active {
            border-color: #6366F1;
            color: #6366F1;
            background: #eef2ff;
        }

        .lw-locale-overlay {
            position: fixed;
            inset: 0;
            background: rgba(255, 255, 255, 0.72);
            z-index: 9999;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .lw-locale-overlay.is-visible {
            opacity: 1;
        }

        /* Reveal en cards sticky: solo hijos internos, nunca el .ex-card */
        .ex-examples .ex-card[data-reveal] {
            opacity: 1;
            transform: none;
        }

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

        body {
            font-family: 'Geist', sans-serif;
            color: #1a1a1a;
            background: #fff;
            line-height: 1.5;
        }

        /* ========== HEADER ========== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
          /*  border: 1px solid rgba(113, 113, 122, 0.2);
            box-shadow: rgba(0, 0, 0, 0.05) 0px 0.241451px 0.241451px -1.25px, rgba(0, 0, 0, 0.05) 0px 2px 2px -2.5px, rgba(9, 9, 11, 0.07) 0px 0.602187px 0.602187px -1.25px, rgba(9, 9, 11, 0.06) 0px 2.28853px 2.28853px -2.5px, rgba(9, 9, 11, 0.03) 0px 10px 10px -3.75px;

          */
            height: 68px;
            display: flex;
            align-items: center;
            max-width: 100%;
            margin: 0 auto;
            backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.7);
        }

        .header-inner {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #1a1a1a;
        }

        .logo-img {
            max-width: 150px;
            width: auto;
            display: block;
            object-fit: contain;
            margin-top: -4px;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav a {
            font-size: 14px;
            font-weight: 500;
            color: #1a1a1a;
            text-decoration: none;
        }

        .nav a:hover {
            opacity: 0.7;
        }

        .nav .nav-badge {
            background: #e8f5e9;
            color: #2e7d32;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 4px;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-login {
            font-size: 14px;
            font-weight: 500;
            color: #1a1a1a;
            text-decoration: none;
            padding: 10px 16px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
        }

        .btn-login:hover {
            border-color: #ccc;
        }

        .btn-try {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: #6366F1;
            text-decoration: none;
            padding: 10px 16px;
            border-radius: 6px;
        }

        .btn-try:hover {
            background: #333;
        }

        .mobile-menu-toggle,
        .mobile-menu {
            display: none;
        }

        .mobile-menu-toggle {
            width: 38px;
            height: 38px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 4px;
            padding: 0;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            width: 16px;
            height: 2px;
            background: #1a1a1a;
            border-radius: 999px;
        }

        .mobile-menu {
            position: absolute;
            top: 68px;
            left: 12px;
            right: 12px;
            flex-direction: column;
            gap: 2px;
            padding: 10px;
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        }

        .mobile-menu a {
            padding: 11px 12px;
            color: #1a1a1a;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            border-radius: 8px;
        }

        .mobile-menu a:hover {
            background: #f7f7f9;
        }

        .header.is-menu-open .mobile-menu {
            display: flex;
        }

        /* ========== HERO ========== */
        .hero {
            padding-top: 44px;
            min-height: auto;
            display: flex;
            align-items: center;
            background-image: linear-gradient(180deg, #f2f3f5 0%, #fff 85%);
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(0,0,0,0.06) 2px, transparent 2px);
            background-size: 22px 22px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.2) 60%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.2) 60%, transparent 100%);
            pointer-events: none;
            z-index: 0;
        }

       

        .hero-inner {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px 60px 32px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 0;
            padding-top: 112px;
            padding-bottom: 32px;
            align-items: center;
            text-align: center;
            max-width: 720px;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.1;
            color: #1a1a1a;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero-subtitle {
            font-size: 20px;
            color: #52525b;
            line-height: 1.7;
            margin: 0 auto 28px;
            max-width: 640px;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 32px;
        }

        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 22px;
            background: #6366F1;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            border-radius: 6px;
            text-decoration: none;
            border: none;
            cursor: pointer;
        }

        .btn-hero-primary:hover {
            background: #333;
        }

        .btn-hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0px;
            padding: 12px 22px;
            background: #fff;
            color: #1a1a1a;
            font-size: 15px;
            font-weight: 600;
            border-radius: 10px;
            text-decoration: none;
            border: 1px solid #e5e7eb;
            cursor: pointer;
        }

        .btn-hero-secondary:hover {
            border-color: #d1d5db;
            background: #fafafa;
        }

        .btn-hero-play-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-left: 2px;
        }

        .btn-hero-play-icon svg {
            width: 20px;
            height: 20px;
            display: block;
        }

        /* ========== VIDEO MODAL ========== */
        .video-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0,0,0,0);
            align-items: center;
            justify-content: center;
            transition: background 0.35s ease;
        }

        .video-modal-overlay.is-open {
            display: flex;
        }

        .video-modal-overlay.is-visible {
            background: rgba(0,0,0,0.82);
        }

        .video-modal-box {
            position: relative;
            width: min(860px, 92vw);
            aspect-ratio: 16/9;
            border-radius: 14px;
            overflow: hidden;
            background: #000;
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .video-modal-overlay.is-visible .video-modal-box {
            opacity: 1;
        }

        .video-modal-close {
            position: absolute;
            top: -44px;
            right: 0;
            background: none;
            border: none;
            cursor: pointer;
            color: #fff;
            padding: 4px;
            line-height: 1;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .video-modal-close:hover { opacity: 1; }

        .video-modal-close svg {
            width: 24px;
            height: 24px;
            display: block;
        }

        .video-modal-box iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* Trust section */
        .trust-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .trust-logo {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: #555;
            border: 2px solid #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .trust-logo:not(:first-child) {
            margin-left: -8px;
        }

        .trust-logo.uber { background: #1a1a1a; color: #fff; font-size: 8px; }
        .trust-logo.coursera { background: #0056D2; color: #fff; font-size: 7px; }
        .trust-logo.share { background: #1a1a1a; color: #fff; }
        .trust-logo.pipe { background: #fff; border: 2px solid #e0e0e0; color: #1a1a1a; }
        .trust-logo.pepsi { background: #fff; border: 2px solid #e0e0e0; }

        .trust-text {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            color: #6b7280;
        }

        .trust-text .live-dot {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
        }

        .trust-text strong {
            color: #1a1a1a;
            font-weight: 600;
        }

        /* ========== RIGHT SIDE CARDS ========== */
        .hero-cards {
            position: relative;
            height: 520px;
            overflow: hidden;
            border-radius: 8px;
        }

        .hero-cards::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 180px;
            background: linear-gradient(
                to top,
                rgba(255,255,255,1) 0%,
                rgba(255,255,255,0.92) 18%,
                rgba(255,255,255,0.75) 38%,
                rgba(255,255,255,0.45) 62%,
                rgba(255,255,255,0.12) 82%,
                transparent 100%
            );
            z-index: 10;
            pointer-events: none;
        }

        .cards-track {
            display: flex;
            flex-direction: column;
            gap: 16px;
            will-change: transform;
        }

        .card-feature {
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            height: 380px;
            min-height: 280px;
            background: #333;
            flex-shrink: 0;
        }

        .card-feature-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }

        .card-feature-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
            background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
        }

        .card-feature-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255,255,255,0.95);
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .card-feature-title {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 8px;
        }

        .card-feature-link {
            font-size: 13px;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 4px;
            opacity: 0.9;
        }

        .card-feature-link:hover {
            opacity: 1;
        }

        /* ========== BUSINESSES ICONS SECTION ========== */
        .biz-icons-section {
            padding: 0 0 40px;
            background: #fff;
            overflow: hidden;
            position: relative;
        }

        .biz-icons-label {
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            color: #6b7280;
            margin: 0 0 28px;
            letter-spacing: -0.01em;
        }

        .biz-icons-tracks {
            display: flex;
            flex-direction: column;
            gap: 16px;
            touch-action: pan-y;
            cursor: grab;
            user-select: none;
            -webkit-user-select: none;
        }

        .biz-icons-section.is-dragging .biz-icons-tracks {
            cursor: grabbing;
        }

        .biz-icons-section.is-dragging .biz-icon-card {
            pointer-events: none;
        }

        .biz-icon-row {
            display: flex;
            gap: 14px;
            will-change: transform;
        }

        .biz-icon-card {
            flex-shrink: 0;
            width: 230px;
            height: 130px;
            border-radius: 18px;
            background: #f7f7f8;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            cursor: default;
            transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
            text-decoration: none;
            padding: 20px;
        }

 

        .biz-icon-card svg {
            width: 30px;
            height: 30px;
            color: #6366F1;
            flex-shrink: 0;
        }

        .biz-icon-name {
            font-size: 16px;
            font-weight: 500;
            color: #1a1a1a;
            text-align: center;
            line-height: 1.2;
        }

        .biz-icon-link {
            font-size: 11px;
            color: #9ca3af;
            text-decoration: none;
            margin-top: -4px;
            display: none;
        }

        .biz-icon-card:hover .biz-icon-link {
            color: #6366F1;
        }
        /* ========== BUSINESSES SHOWCASE ========== */
        .businesses {
            padding: 0 0 100px;
            background-image: linear-gradient(180deg, #f7f7f9 0%, #f7f7f9 60%);
            overflow: hidden;
            position: relative;
        }

        .businesses-header {
            max-width: 1200px;
            margin: 0 auto 52px;
            padding: 0 32px;
            text-align: center;
        }

        .businesses-eyebrow {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: #6366F1;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 16px;
        }

        .businesses-title {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.03em;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .businesses-sub {
            font-size: 17px;
            color: #6b7280;
            line-height: 1.6;
        }

        .businesses-tracks {
            display: flex;
            flex-direction: column;
            gap: 16px;
            user-select: none;
        }

        .biz-row {
            display: flex;
            gap: 16px;
            will-change: transform;
        }

        .biz-card {
            flex-shrink: 0;
            width: 340px;
            height: 224px;
            border-radius: 18px;
            overflow: hidden;
            position: relative;
            background: #2a2a2a;
            cursor: pointer;
        }

        .biz-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.78;
            display: block;
            transition: opacity 0.35s ease, transform 0.45s ease;
        }

        .biz-card:hover .biz-card-img {
            opacity: 0.92;
            transform: scale(1.05);
        }

        .biz-card-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px 22px;
            background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0) 100%);
        }

        .biz-card-badge {
            display: none;
        }

        .biz-card-title {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 8px;
        }

        .biz-card-link {
            font-size: 13px;
            color: rgba(255,255,255,0.82);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            width: fit-content;
            transition: color 0.15s;
        }

        .biz-card-link:hover {
            color: #fff;
        }

        .biz-card-link svg {
            width: 13px;
            height: 13px;
            transition: transform 0.18s;
        }

        .biz-card:hover .biz-card-link svg {
            transform: translateX(3px);
        }

        /* ========== PRICING ========== */
        .pricing {
            padding: 100px 24px;
            background: #fff;
        }

        .pricing-header {
            max-width: 740px;
            margin: 0 auto 60px;
            text-align: center;
        }

        .pricing-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #1a1a1a;
            margin-bottom: 14px;
        }

        .pricing-header p {
            font-size: 18px;
            line-height: 1.6;
            color: #6b7280;
            margin-bottom: 28px;
        }

        .pricing-billing-toggle {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px;
            background: #f7f7f9;
            border-radius: 8px;
            margin-bottom: 8px;
        }

        .pricing-billing-opt {
            border: none;
            background: transparent;
            font-family: inherit;
            font-size: 14px;
            font-weight: 500;
            color: #1a1a1a;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s, box-shadow 0.2s;
            line-height: 1.2;
            min-width: 100px;
        }

        .pricing-billing-opt.is-active {
            background: #fff;
            box-shadow:
                0 0.6px 0.6px -1.25px rgba(0, 0, 0, 0.07),
                0 2.3px 2.3px -2.5px rgba(0, 0, 0, 0.06),
                0 10px 10px -3.75px rgba(0, 0, 0, 0.03);
        }

        .pricing-billing-save {
            background: #6366F1;
            color: #fff;
            font-weight: 600;
            font-size: 13px;
            padding: 4px;
            border-radius: 4px;
        display: none;
        }

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

        .pricing-card {
            background: #fff;
            padding: 32px 32px;
            display: flex;
            flex-direction: column;
            position: relative;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
        }

        .pricing-tag {
            display: inline-flex;
            align-items: center;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #1a1a1a;
            padding: 6px 10px;
            background: #f3f4f6;
            border: 1px solid #e5e7eb;
            border-radius: 4px;
            margin-bottom: 18px;
            width: fit-content;
        }

        .pricing-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a1a;
            letter-spacing: -0.025em;
            margin-bottom: 8px;
        }

        .pricing-tagline {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.5;
            margin-bottom: 24px;
            min-height: 42px;
        }

        .pricing-price-wrap {
            margin-bottom: 6px;
        }

        .pricing-price {
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
            gap: 2px 6px;
        }

        .pricing-currency {
            display: inline-flex;
            align-items: baseline;
            gap: 3px;
            font-size: 24px;
            font-weight: 500;
            letter-spacing: -0.02em;
        }

        .pricing-currency-prefix {
            font-size: 13px;
            font-weight: 700;
            color: #6b7280;
            letter-spacing: 0.02em;
        }

        .pricing-annual-badge {
            display: block;
            width: 100%;
            text-align: center;
            font-size: 13px;
            font-weight: 400;
            color: #6b7280;
            line-height: 1.4;
            margin: 8px 0 0;
        }

        .pricing-annual-badge[hidden] {
            display: none;
        }

        .pricing-amount {
            font-size: 34px;
            font-weight: 700;
            letter-spacing: -0.04em;
            line-height: 1;
            color: #1a1a1a;
        }

        .pricing-cents {
            font-size: 0.58em;
            font-weight: 700;
            vertical-align: super;
            line-height: 0;
            position: relative;
            top: -0.05em;
            margin-left: 1px;
            letter-spacing: 0;
        }

        .pricing-period {
            font-size: 18px;
            font-weight: 500;
            color: #9ca3af;
            letter-spacing: -0.01em;
        }

        .pricing-billed-note {
            font-size: 13px;
            color: #6b7280;
            line-height: 1.4;
            margin: 0 0 8px;
        }

        .pricing-billed-note[hidden] {
            display: none;
        }

        .pricing-save-badge {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: #6366F1;
            background: #ede9fe;
            padding: 4px 10px;
            border-radius: 3px;
            margin-bottom: 20px;
            width: fit-content;
        }

        .pricing-save-badge[hidden] {
            display: none;
        }

        .pricing-price-block {
            margin-bottom: 22px;
        }

        .pricing-cta {
            width: 100%;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.15s ease;
            background: #6366F1;
            color: #fff;
            border: 1px solid #6366F1;
        }

        .pricing-cta:hover {
            background: #4f46e5;
            border-color: #4f46e5;
        }

        .pricing-features {
            list-style: none;
            margin-top: 28px;
            padding-top: 28px;
            border-top: 1px solid #e5e7eb;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: #4b5563;
            line-height: 1.4;
        }

        .pricing-features li svg {
            width: 14px;
            height: 14px;
            color: #1a1a1a;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .pricing-features li strong {
            color: #1a1a1a;
            font-weight: 600;
        }

        .fn-compare-badge-ia {
            display: inline-block;
            font-size: 10px;
            font-weight: 600;
            padding: 2px 4px;
            border-radius: 4px;
            letter-spacing: 0.03em;
            line-height: 1.2;
            flex-shrink: 0;
            color: #1a1a1a;
            border: 1px solid #d7d8db;
            vertical-align: middle;
        }

        .pricing-foot {
            max-width: 740px;
            margin: 40px auto 0;
            text-align: center;
            font-size: 15px;
            color: #6b7280;
        }

        .pricing-foot strong {
            color: #6b7280;
            font-weight: 500;
        }

        /* Plan Agencia — oculto hasta lanzamiento
        .pricing-agency {
            max-width: 760px;
            margin: 40px auto 0;
        }

        .pricing-agency-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 28px 32px;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
        }

        .pricing-agency-text h3 {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            letter-spacing: -0.02em;
            margin-bottom: 6px;
        }

        .pricing-agency-text p {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.5;
            margin: 0;
        }

        .pricing-agency-cta {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
            text-decoration: none;
            white-space: nowrap;
        }

        .pricing-agency-cta:hover {
            color: #6366F1;
        }

        @media (max-width: 640px) {
            .pricing-agency-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        */

        /* ========== WHY GOOGLE ========== */
        .why-google {
            padding: 100px 24px;
            background: #6366F1;
            position: relative;
            overflow: hidden;
        }

        .why-google::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.10) 2px, transparent 2px);
            background-size: 22px 22px;
            mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
            -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
            pointer-events: none;

            z-index: 0;







        }

        .why-google-wrap {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
            gap: 48px 64px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .why-google-content .problem-badge {
            margin-bottom: 20px;
            color: #fafafa;
            border-color:transparent;
            background: rgba(255, 255, 255, 0.09);
        }

        .why-google-content h2 {
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 700;
            line-height: 1.12;
            letter-spacing: -0.03em;
            color: #fff;
            margin-bottom: 16px;
        }

        .why-google-body {
            font-size: 17px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin: 0 0 12px;
            font-weight: 400;
        }

        .why-google-body:last-child {
            margin-bottom: 0;
        }

        .why-google-body strong {
            color: #fff;
            font-weight: 600;
        }

        .why-google-visual .fs-visual {
            height: 300px;
            mask: none;
        }



        .why-google-visual .g-mini {
            position: relative;
            z-index: 2;
            width: min(100%, 300px);
            background: #fff;
            border-radius: 12px;
            padding: 16px 18px 14px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
        }

        .g-mini-search {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border: 1px solid #e5e7eb;
            border-radius: 24px;
            font-size: 14px;
            color: #1a1a1a;
            margin-bottom: 14px;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
        }

        .g-mini-search svg {
            width: 16px;
            height: 16px;
            color: #9ca3af;
            flex-shrink: 0;
        }

        .g-mini-result {
            padding: 10px 0;
            border-bottom: 1px solid #f3f4f6;
        }

        .g-mini-result:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .g-mini-result.is-you {
            background: #f5f3ff;
            margin: 0 -10px;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #e0e7ff;
            border-bottom: 1px solid #e0e7ff;
        }

        .g-mini-url {
            font-size: 11px;
            color: #6b7280;
            margin-bottom: 2px;
        }

        .g-mini-title {
            font-size: 15px;
            color: #6366F1;
            font-weight: 500;
            line-height: 1.3;
            margin-bottom: 3px;
        }

        .g-mini-snippet {
            font-size: 12px;
            color: #6b7280;
            line-height: 1.45;
        }

        @media (max-width: 900px) {
            .why-google-wrap {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .why-google-visual {
                order: -1;
            }
        }

        /* ========== PROBLEM SECTION ========== */
        .problem {
            padding: 60px 24px 100px;
            text-align: center;
        }

        .problem-badge {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            color: #1a1a1a;
            padding: 4px 10px;
            border: 1px solid #d7d8db;
            border-radius: 3px;
            margin-bottom: 26px;
        }

        .problem-heading {
            max-width: 680px;
            margin: 0 auto 20px;
        }

        .problem-heading h2 {
            font-size: clamp(36px, 5vw, 58px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #1a1a1a;
            margin-bottom: 6px;
        }

        .problem-heading h2 em {
            font-style: italic;
            font-family: Georgia, 'Times New Roman', serif;
            font-weight: 700;
        }

        .problem-sub {
            font-size: 20px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 40px;


        }

        .problem-body {
            max-width: 560px;
            margin: 0 auto;
            text-align: left;
        }

        .problem-body p {
            font-size: 17px;
            line-height: 1.75;
            color: #4b5563;
            margin-bottom: 0;
        }

        .problem-body p + p {
            margin-top: 20px;
        }

        .problem-body strong {
            color: #1a1a1a;
            font-weight: 600;
        }

        .problem-list {
            list-style: none;
            padding: 0;
            margin: 20px auto;
            text-align: left;
            display: inline-flex;
            flex-direction: column;
            gap: 8px;
        }

        .problem-list li {
            font-size: 17px;
            color: #4b5563;
            padding-left: 20px;
            position: relative;
        }

        .problem-list li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: #d1d5db;
        }

        .problem-closer {
            margin-top: 48px;
            padding-top: 40px;
            border-top: 1px solid #e5e7eb;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        .problem-closer p {
            font-size: 17px;
            line-height: 1.7;
            color: #4b5563;
            margin-bottom: 16px;
        }

        .problem-closer p:last-child {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
        }

        /* ========== FEATURES GRID ========== */
        .features-section {
            padding: 100px 24px 120px;
            background: #fff;
            overflow-x: clip;
        }

        .features-section-header {
            max-width: 680px;
            width: 100%;
            margin: 0 auto 72px;
            text-align: center;
        }

        .features-section-header h2 {
            font-size: clamp(32px, 4.5vw, 48px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .features-h2-tail {
            display: block;
        }

        @media (max-width: 900px) {
            .features-h2-lead {
                display: block;
            }

            .features-section-header h2 .word-rotate {
                display: block;
                width: auto !important;
                transition: none;
            }
        }

        .features-section-header p {
            font-size: 18px;
            line-height: 1.6;
            color: #6b7280;
        }

        .word-rotate {
            display: inline-block;
            position: relative;
            vertical-align: bottom;
            width: var(--word-rotate-w, 10em);
            text-align: center;
            transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .word-rotate-text {
            display: inline-block;
            color: #6366F1;
            white-space: nowrap;
        }

        .word-rotate-char {
            display: inline-block;
            opacity: 0;
            transition: opacity 0.34s ease;
        }

        .word-rotate-char.is-in {
            opacity: 1;
        }

        .word-rotate-char.is-out {
            opacity: 0;
        }

        @media (prefers-reduced-motion: reduce) {
            .word-rotate {
                transition: none;
            }

            .word-rotate-char {
                opacity: 1 !important;
                transition: none;
            }
        }

        .features-section-link {
            display: block;
            text-align: center;
            margin-top: 48px;
            font-size: 15px;
            font-weight: 500;
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .features-section-link:hover {
            color: var(--primary-dark);
        }

        .features-grid {
            max-width: 940px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: start;
        }

        .features-col {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .features-col:last-child {
            margin-top: 60px;
        }

        .feature-card {
            background: #f7f7f9;
            border-radius: 8px;
            padding: 34px 32px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .feature-card .fs-visual {
            margin-bottom: .5rem;
        }

        .feature-card h3 {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: -0.02em;
            line-height: 1.3;
        }

        .feature-card p {
            font-size: 16px;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .feature-card-visual {
            margin-top: 16px;
            background: #fff;
            border-radius: 8px;
            padding: 20px;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .feature-visual-templates {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .template-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: #f7f7f9;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            color: #1a1a1a;
        }

        .template-chip span {
            font-size: 14px;
        }

        .feature-visual-domain,
        button {
            font-family: 'Geist', monospace;
        }

        .domain-search {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: #f4f4f5;
            border-radius: 8px;
            margin-bottom: 12px;
            font-size: 14px;
            color: #1a1a1a;
        }

        .domain-result {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #f3f4f6;
            font-size: 13px;
        }

        .domain-result:last-child {
            border-bottom: none;
        }

        .domain-name {
            color: #1a1a1a;
            font-weight: 500;
        }

        .domain-price {
            color: #6b7280;
        }

        .domain-price.free {
            color: #22c55e;
            font-weight: 600;
        }

        .domain-available {
            color: #22c55e;
            font-size: 12px;
        }

        .feature-visual-speed {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .speed-circle {
            position: relative;
            width: 90px;
            height: 90px;
            flex-shrink: 0;
        }

        .speed-circle svg {
            width: 100%;
            height: 100%;
        }

        .speed-value {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .speed-num {
            display: block;
            font-size: 26px;
            font-weight: 700;
            color: #22c55e;
            line-height: 1;
        }

        .speed-unit {
            font-size: 11px;
            color: #6b7280;
            font-weight: 500;
        }

        .speed-bars {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .speed-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
        }

        .speed-bar-label {
            width: 55px;
            color: #6b7280;
            flex-shrink: 0;
        }

        .speed-bar-track {
            flex: 1;
            height: 6px;
            background: #e5e7eb;
            border-radius: 3px;
            overflow: hidden;
        }

        .speed-bar-fill {
            height: 100%;
            border-radius: 3px;
        }

        .speed-bar-fill.fast {
            background: #22c55e;
        }

        .speed-bar-fill.slow {
            background: #f59e0b;
        }

        .speed-bar-time {
            width: 30px;
            text-align: right;
            font-weight: 600;
            color: #1a1a1a;
        }

        .feature-visual-google {
            font-size: 13px;
        }

        .google-search {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            background: #f4f4f5;
            border-radius: 8px;
            margin-bottom: 16px;
            font-size: 13px;
            color: #6b7280;
        }

        .google-search svg {
            width: 16px;
            height: 16px;
            color: #9ca3af;
        }

        .google-result-url {
            font-size: 12px;
            color: #1a1a1a;
            margin-bottom: 4px;
        }

        .google-result-title {
            font-size: 16px;
            color: #1a0dab;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .google-result-desc {
            font-size: 13px;
            color: #4d5156;
            line-height: 1.5;
        }

        .feature-visual-phone {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .phone-mockup {
            width: 120px;
            background: #1a1a1a;
            border-radius: 8px;
            padding: 8px;
            position: relative;
        }

        .phone-notch {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 16px;
            background: #1a1a1a;
            border-radius: 10px;
            z-index: 2;
        }

        .phone-screen {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
        }

        .phone-hero-img {
            height: 55px;
            background: linear-gradient(135deg, #6366F1 0%, #8b5cf6 100%);
        }

        .phone-content {
            padding: 10px;
        }

        .phone-title {
            height: 8px;
            width: 70%;
            background: #1a1a1a;
            border-radius: 4px;
            margin-bottom: 8px;
        }

        .phone-text {
            height: 5px;
            width: 100%;
            background: #e5e7eb;
            border-radius: 2px;
            margin-bottom: 5px;
        }

        .phone-text.short {
            width: 60%;
            margin-bottom: 10px;
        }

        .phone-btn {
            height: 16px;
            width: 50%;
            background: #6366F1;
            border-radius: 4px;
        }

        .phone-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #ecfdf5;
            color: #22c55e;
            font-size: 11px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 8px;
        }

        .phone-badge svg {
            color: #22c55e;
        }

        .feature-visual-editor {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .editor-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .editor-label {
            font-size: 11px;
            font-weight: 600;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .editor-input {
            padding: 10px 12px;
            background: #f4f4f5;
            border-radius: 6px;
            font-size: 14px;
            color: #1a1a1a;
        }

        .editor-colors {
            display: flex;
            gap: 8px;
        }

        .editor-color {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            border: 2px solid transparent;
        }

        .editor-color.active {
            border-color: #1a1a1a;
        }

        .editor-save-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 8px;
            font-size: 11px;
            font-weight: 600;
            color: #22c55e;
            background: #ecfdf5;
            padding: 6px 12px;
            border-radius: 8px;
        }

        /* Mobile visual */
        .feature-visual-mobile-row {
            display: flex;
            align-items: flex-end;
            gap: 12px;
        }

        .mobile-device {
            background: #1a1a1a;
            border-radius: 8px;
            padding: 6px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .mobile-phone {
            width: 72px;
        }

        .mobile-tablet {
            width: 120px;
        }

        .mobile-bar {
            height: 6px;
            background: #1a1a1a;
            border-radius: 3px;
            margin-bottom: 4px;
        }

        .mobile-hero {
            height: 36px;
            background: linear-gradient(135deg, #6366F1, #8b5cf6);
            border-radius: 6px 6px 0 0;
        }

        .mobile-lines {
            background: #fff;
            padding: 8px 6px;
            border-radius: 0 0 6px 6px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-line {
            height: 4px;
            background: #e5e7eb;
            border-radius: 2px;
        }

        .mobile-line.w50 { width: 50%; }
        .mobile-line.w60 { width: 60%; }
        .mobile-line.w70 { width: 70%; }
        .mobile-line.w80 { width: 80%; }
        .mobile-line.w90 { width: 90%; }
        .mobile-line.w100 { width: 100%; }

        .mobile-scores {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-left: 8px;
        }

        .mobile-score-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mobile-score-num {
            font-size: 20px;
            font-weight: 700;
            color: #22c55e;
            min-width: 32px;
        }

        .mobile-score-label {
            font-size: 11px;
            color: #6b7280;
        }

        @media (max-width: 800px) {
            .features-grid {
                display: flex;
                flex-direction: column;
                gap: 30px;
                grid-template-columns: unset;
                max-width: 500px;
                margin: 0 auto;
            }

            .features-col {
                display: contents;
            }

            .features-col:last-child {
                margin-top: 0;
            }

            .feature-card--diseno { order: 1; }
            .feature-card--editor { order: 2; }
            .feature-card--google { order: 3; }
            .feature-card--whatsapp { order: 4; }
            .feature-card--catalog { order: 5; }
            .feature-card--confianza { order: 6; }
        }

        /* ========== FLOATING UI (shared) ========== */
        .fs-visual {
            position: relative;
            width: 100%;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
            mask: linear-gradient(rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 110%);
        }

        .fs-float {
            position: absolute;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
            padding: 12px 16px;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 9;
            opacity: 0;
            scale: 0.4;
            transition: opacity 0.5s cubic-bezier(0.34,1.56,0.64,1), scale 0.5s cubic-bezier(0.34,1.56,0.64,1);
        }

        .fs-float.visible {
            opacity: 1;
            scale: 1;
        }

        .fs-float-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .fs-float-icon svg {
            width: 16px;
            height: 16px;
        }

        .fs-float-icon.blue { background: #ede9fe; color: #6366F1; }
        .fs-float-icon.green { background: #dcfce7; color: #22c55e; }
        .fs-float-icon.amber { background: #fef3c7; color: #f59e0b; }
        .fs-float-icon.violet { background: #ede9fe; color: #8b5cf6; }

        .fs-wa-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px 10px 12px;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 999px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
        }

        .fs-wa-btn svg {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }

        .fs-wa-btn span {
            font-size: 13px;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: -0.01em;
        }

        .fs-float-text {
            color: #374151;
            font-weight: 500;
        }

        .fs-float-sub {
            font-size: 10px;
            color: #9ca3af;
            font-weight: 400;
        }

        .fs-float-badge {
            background: #dcfce7;
            color: #16a34a;
            font-size: 10px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 10px;
        }

        .fs-float-main {
            position: relative;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
            padding: 20px;
            z-index: 2;
        }

        .fs-main-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
            font-size: 11px;
            color: #9ca3af;
        }

        .fs-main-row {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid #f3f4f6;
        }

        .fs-main-row:last-child {
            border-bottom: none;
        }

        .fs-main-check {
            width: 18px;
            height: 18px;
            border-radius: 4px;
            background: #ede9fe;
            display: flex;
            align-items: center;
            justify-content: center;
        }


        .fs-main-check svg {
            width: 10px;
            height: 10px;
            color: #6366F1;
        }

        .fs-main-label {
            font-size: 12px;
            color: #374151;
        }

        .fs-main-value {
            margin-left: auto;
            font-size: 11px;
            color: #22c55e;
            font-weight: 600;
        }

        /* ========== HOW IT WORKS ========== */
        .how {
            padding: 120px 24px;
            background: #f7f7f9;
        }

        .how-header {
            max-width: 640px;
            margin: 0 auto 64px;
            text-align: center;
        }

        .how-header h2 {
            font-size: clamp(32px, 4.5vw, 48px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .how-header p {
            font-size: 18px;
            line-height: 1.6;
            color: #6b7280;
        }

        .how-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .how-video-cta {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            padding: 0 24px;
        }

        .how-card {
            background: #fff;
            border-radius: 8px;
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .how-step-badge,
        .feature-card-badge {
            display: inline-block;
            align-self: flex-start;
            font-size: 12px;
            font-weight: 500;
            color: #1a1a1a;
            padding: 4px 10px;
            border: 1px solid #d7d8db;
            border-radius: 4px;
            margin-bottom: 6px;
            letter-spacing: 0.01em;
            background: #fff;
        }
        .features-section .feature-card-badge  {
            
        }

        .how-card h3 {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
            margin-top: 8px;
                letter-spacing: -0.02em;
    line-height: 1.3;
        }

        .how-card > p {
            font-size: 16px;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .step-mini {
            background: #f9fafb;
            border-radius: 8px;
            padding: 16px;
            margin-top: auto;
        }

        /* Step 1: Questionnaire */
        .step-q {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .step-q-row {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: #9ca3af;
        }

        .step-q-row svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .step-q-row.done {
            color: #22c55e;
        }

        .step-q-row.done svg {
            color: #22c55e;
        }

        .step-q-row.active {
            color: #6366F1;
        }

        .step-q-row.active svg {
            color: #6366F1;
        }

        .step-q-label {
            font-weight: 500;
            min-width: 55px;
        }

        .step-q-val {
            color: #1a1a1a;
            font-weight: 500;
        }

        /* Step 2: AI Progress */
        .step-ai {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .step-ai-task {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #9ca3af;
        }

        .step-ai-task:has(.step-ai-check) {
            color: #1a1a1a;
        }

        .step-ai-check {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #22c55e;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            flex-shrink: 0;
        }

        .step-ai-spinner {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid #e5e7eb;
            border-top-color: #6366F1;
            animation: spin 1s linear infinite;
            flex-shrink: 0;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .step-ai-task.active {
            color: #6366F1;
        }

        /* Step 3: Live Site */
        .step-live-badge {
            background: #22c55e;
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 10px;
            letter-spacing: 0.05em;
        }

        .step-live {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .step-live-bar {
            background: #f3f4f6;
            padding: 8px 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            border-bottom: 1px solid #e5e7eb;
        }

        .step-live-bar .d {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #e5e7eb;
        }

        .step-live-bar .d.g {
            background: #22c55e;
        }

        .step-live-url {
            font-size: 11px;
            color: #6b7280;
            margin-left: auto;
        }

        .step-live-body {
            padding: 14px;
            text-align: center;
        }

        .step-live-h {
            font-size: 11px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .step-live-btn {
            background: #6366F1;
            color: #fff;
            font-size: 10px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 6px;
            display: inline-block;
        }

        /* ========== FAQ ========== */
        .faq {
            padding: 100px 24px;
            background: #f7f7f9;
        }

        .faq-wrap {
            max-width: 1140px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.8fr 1.5fr;
            gap: 64px;
            align-items: start;
        }

        .faq-side {
            position: sticky;
            top: 96px;
            padding-right: 24px;
        }

        .faq-side h2 {
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #1a1a1a;
            margin-bottom: 14px;
        }

        .faq-side p {
            font-size: 16px;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .faq-side a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 500;
            color: #1a1a1a;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .faq-side a:hover {
            text-decoration-color: #1a1a1a;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
        }

        .faq-item {
            border-bottom: 1px solid #e5e7eb;
        }

        .faq-item summary {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 22px 0;
            font-size: 16px;
            font-weight: 500;
            color: #1a1a1a;
            cursor: pointer;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            font-size: 18px;
            transition: transform 0.45s var(--reveal-ease), color 0.2s;
            flex-shrink: 0;
        }

        .faq-item.is-open .faq-icon {
            transform: rotate(45deg);
            color: #1a1a1a;
        }

        .faq-answer-wrap {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.45s var(--reveal-ease);
        }

        .faq-item.is-open .faq-answer-wrap {
            grid-template-rows: 1fr;
        }

        .faq-answer-inner {
            overflow: hidden;
            min-height: 0;
        }

        .faq-answer {
            padding: 0 0 22px;
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            max-width: 90%;
            opacity: 0;
            transform: translateY(-6px);
            transition:
                opacity 0.35s var(--reveal-ease),
                transform 0.45s var(--reveal-ease);
        }

        .faq-item.is-open .faq-answer {
            opacity: 1;
            transform: translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            .faq-answer-wrap {
                transition: none;
            }

            .faq-answer {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        /* ========== TESTIMONIAL ========== */
        .testimonial-wrap {
            padding: 50px 24px 50px;
            background: #fff;
        }

        .testimonial-card {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            background: #f7f7f9;
            border-radius: 14px;
            padding: 64px 72px;
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 28px;
        }

        .testimonial-stars svg {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            display: block;
        }

        .testimonial-quote-block {
            position: relative;
        }

        .testimonial-mark {
            position: absolute;
            top: -36px;
            right: -20px;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: clamp(64px, 8vw, 88px);
            font-weight: 700;
            line-height: 1;
            color: rgba(26, 26, 26, 0.12);
            pointer-events: none;
            user-select: none;
        }

        .testimonial-quote {
            font-size: clamp(26px, 3.5vw, 34px);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.025em;
            color: #1a1a1a;
            position: relative;
            z-index: 1;
        }

        .testimonial-body {
            font-size: 17px;
            color: #6b7280;
            line-height: 1.7;
            margin: 10px 0 32px;
            max-width: 680px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: #e5e7eb;
            flex-shrink: 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .testimonial-avatar svg {
            width: 28px;
            height: 28px;
            color: #9ca3af;
        }

        .testimonial-name {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .testimonial-role {
            font-size: 16px;
            color: #6b7280;
            font-weight: 400;
            margin-top: 1px;
        }

        @media (max-width: 700px) {
            .testimonial-card {
                padding: 36px 28px;
            }

            .testimonial-quote {
                font-size: 22px;
            }
        }

        /* ========== CTA SECTION ========== */
        .cta-wrapper {
            padding: 100px 24px;
            background: #fff;
        }

        .cta-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 80px 48px;
            background: #f7f7f9;
            border-radius: 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(0,0,0,0.08) 2px, transparent 2px);
            background-size: 22px 22px;
            mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.2) 60%, transparent 100%);
            -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.2) 60%, transparent 100%);
            pointer-events: none;
            border-radius: 24px;
        }

        .cta-section h2 {
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.03em;
            color: #1a1a1a;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 17px;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        .cta-section .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            background: #6366F1;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            border-radius: 10px;
            text-decoration: none;
            position: relative;
            z-index: 1;
            transition: background 0.15s ease;
        }

        .cta-section .btn-cta:hover {
            background: #4f46e5;
        }

        /* ========== FOOTER ========== */
        .footer {
            padding: 80px 24px 40px;
            background: #fff;
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 48px;
            margin-bottom: 60px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            color: #1a1a1a;
            margin-bottom: 4px;
        }

        .footer-logo .logo-img {
            max-width: 150px;
        }

        .footer-tagline {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.5;
        }

        .footer-social {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 8px;
        }

        .footer-social a {
            color: #1a1a1a;
            transition: opacity 0.15s;
        }

        .footer-social a:hover {
            opacity: 0.6;
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-col a {
            font-size: 14px;
            color: #6b7280;
            text-decoration: none;
            transition: color 0.15s;
        }

        .footer-col a:hover {
            color: #1a1a1a;
        }

        .footer-col .btn-footer {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            background: #1a1a1a;
            color: #fff;
            font-size: 13px;
            font-weight: 500;
            border-radius: 8px;
            text-decoration: none;
            margin-top: 8px;
        }

        .footer-col .btn-footer:hover {
            background: #333;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 32px;
            border-top: 1px solid #e5e7eb;
            font-size: 13px;
            color: #9ca3af;
        }

        .footer-bottom-right {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 42px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                padding: 0 16px;
            }

            .nav {
                display: none;
            }

            .btn-login {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .hero-inner {
                padding: 16px 26px 56px;
            }

            .hero-content {
                padding-top: 60px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                max-width: 260px;
                margin-left: auto;
                margin-right: auto;
            }

            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
                justify-content: center;
            }

            .hero-title {
                font-size: 36px;
            }

            .biz-icons-section {
                padding-bottom: 20px !important;
            }

            .biz-card {
                width: 280px;
                height: 186px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .faq-wrap {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .faq-side {
                position: static;
                padding-right: 0;
            }
        }

        @media (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .cta-section {
                padding: 60px 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .how-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
        }

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

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }

        /* ========== EXAMPLES STACK (Ocoya-style) ========== */
        .ex-examples {
            padding: 120px 24px 0;
            background: #fff;
        }

        .ex-stack-header {
            max-width: 640px;
            margin: 0 auto 56px;
            text-align: center;
        }

        .ex-stack-header h2 {
            font-size: clamp(32px, 4.5vw, 48px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .ex-stack-header p {
            font-size: 18px;
            line-height: 1.6;
            color: #6b7280;
        }

        .ex-stack {
            max-width: 1140px;
            margin: 0 auto;
            padding-bottom: 80px;
        }

        .ex-card {
            position: sticky;
            padding: 0;
            background: transparent;
            border: none;
            box-shadow: none;
        }

        .ex-card-inner {
            background: #f7f7f9;
            border-radius: 14px;
            padding: 44px 48px;
            display: grid;
            grid-template-columns: 0.92fr 1.08fr;
            gap: 44px;
            align-items: center;
            transform-origin: top center;
            will-change: transform, opacity;
        }

        .ex-card {
            top: 80px;
            z-index: 1;
        }

        .ex-card + .ex-card {
            margin-top: 4rem;
        }

        .ex-card-copy .problem-badge {
            margin-bottom: 20px;
            background: #FFF;
        }

        .ex-card-copy h3 {
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            line-height: 1.12;
            letter-spacing: -0.03em;
            color: #1a1a1a;
            margin-bottom: 14px;
        }

        .ex-card-copy p {
            font-size: 16px;
            line-height: 1.65;
            color: #6b7280;
            margin-bottom: 28px;
            max-width: 380px;
        }

        .ex-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 20px;
            color: #1a1a1a;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: background 0.15s;
            border: 1px solid #dcdde0;
        }


        .ex-card-link svg {
            width: 16px;
            height: 16px;
        }

        .ex-browser {
            background: #f7f7f9;
            border-radius: 14px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
            overflow: hidden;
        }

        .ex-browser-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-bottom: 1px solid #ececef;
            background: #fafafa;
        }

        .ex-browser-dots {
            display: flex;
            gap: 5px;
        }

        .ex-browser-dots span {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #e5e7eb;
        }

        .ex-browser-dots span:first-child { background: #fca5a5; }
        .ex-browser-dots span:nth-child(2) { background: #fde68a; }
        .ex-browser-dots span:nth-child(3) { background: #86efac; }

        .ex-browser-url {
            flex: 1;
            font-size: 11px;
            color: #9ca3af;
            background: #fff;
            border: 1px solid #ececef;
            border-radius: 6px;
            padding: 5px 10px;
            font-family: ui-monospace, monospace;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ex-browser-viewport {
            height: 300px;
            overflow: hidden;
            background: #eef0f3;
            position: relative;
        }

        .ex-browser-shot {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
            background: #eef0f3;
        }

        .ex-mobile-controls {
            display: none;
        }

        @media (max-width: 960px) {
            .ex-stack {
                display: flex;
                gap: 16px;
                overflow-x: auto;
                overscroll-behavior-x: contain;
                scroll-snap-type: x mandatory;
                scroll-padding: 0 16px;
                margin-left: -16px;
                margin-right: -16px;
                padding: 0 16px 18px;
                scrollbar-width: none;
            }

            .ex-stack::-webkit-scrollbar {
                display: none;
            }

            .ex-card {
                flex: 0 0 min(88vw, 420px);
                position: relative !important;
                top: auto !important;
                margin-top: 0 !important;
                scroll-snap-align: center;
            }

            .ex-card-inner {
                grid-template-columns: 1fr;
                padding: 28px 24px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
                transform: none !important;
                opacity: 1 !important;
            }

            .ex-card-copy p { max-width: none; }

            .ex-browser-viewport { height: 160px; }

            .ex-mobile-controls {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                margin-top: 18px;
            }

            .ex-mobile-btn {
                width: 38px;
                height: 38px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: #fff;
                border: 1px solid #e5e7eb;
                border-radius: 999px;
                color: #1a1a1a;
                cursor: pointer;
            }

            .ex-mobile-btn svg {
                width: 16px;
                height: 16px;
            }

            .ex-mobile-count {
                min-width: 48px;
                text-align: center;
                font-size: 13px;
                font-weight: 500;
                color: #6b7280;
            }
        }

        /* ========== COMPARISON TABLE ========== */
        .comparison-section {
            padding: 120px 24px;
            background: #fff;
            position: relative;
        }

        .comparison-header {
            max-width: 640px;
            margin: 0 auto 64px;
            text-align: center;
        }

        .comparison-header h2 {
            font-size: clamp(32px, 4.5vw, 48px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .comparison-header p {
            font-size: 19px;
            line-height: 1.6;
            color: #6b7280;
        }

        .comparison-table-wrap {
            max-width: 1060px;
            margin: 0 auto;
        }

        .comparison-table {
            width: 100%;
            table-layout: fixed;
            border-collapse: separate;
            border-spacing: 0;
            border: 1px solid #e5e7eb;
            border-top: none;
            background: #fff;
             border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px    
        }

        .comparison-table .cmp-col-label {
            width: 40%;
        }

        .comparison-table .cmp-col-product {
            width: 20%;
        }

        .comparison-table thead th {
            padding: 24px 20px;
            text-align: center;
            vertical-align: middle;
                  border-top: 1px solid #e5e7eb;
      
            border-bottom: 1px solid #e5e7eb;
            background: #f7f7f9;
            position: sticky;
            top: 72px;
            z-index: 9;
            box-shadow: 0 1px 0 #e5e7eb;
        }

        .comparison-table thead th.col-label {
            text-align: left;
   
                 font-size: 14px;
            font-weight: 600;
            color: #6b7280;
            letter-spacing: -0.01em;
        }

        .comparison-table thead th:last-child {
        }

        .comparison-table thead th.col-localweb {
            background: #f7f7f9;
            border-left: 1px solid #e5e7eb;
            border-right: 1px solid #e5e7eb;
            box-shadow: inset 0 3px 0 #6366f1;
        }

        .comparison-table thead th.col-competitor {
            background: #f7f7f9;
        }

        .cmp-th-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 52px;
        }

        .cmp-th-pick {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #6366f1;
            background: #ede9fe;
            padding: 4px 10px;
            border-radius: 3px;
            display: none;
            line-height: 1;
        }

        .cmp-th-logo {
            height: 22px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        .cmp-th-name {
            font-size: 17px;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .comparison-table thead th .th-sub {
            display: block;
            font-size: 13px;
            font-weight: 400;
            color: #9ca3af;
            line-height: 1.3;
            margin-top: -2px;
        }

        .comparison-table tbody tr {
            border-bottom: 1px solid #f3f4f6;
            transition: background 0.15s;
        }

        .comparison-table tbody tr:last-child {
            border-bottom: none;
        }

        .comparison-table tbody tr:hover {
            background: #f7f7f9;
        }

        .comparison-table tbody tr:hover td.col-lw {
            background: #f0f0f2;
        }

        .comparison-table tbody tr:last-child td:first-child {
            border-bottom-left-radius: 12px;
        }

        .comparison-table tbody tr:last-child td:last-child {
            border-bottom-right-radius: 12px;
        }

        .comparison-table tbody td {
            padding: 18px 20px;
            font-size: 15px;
            text-align: center;
            vertical-align: middle;
            color: #4b5563;
        }

        .comparison-table tbody td:first-child {
            text-align: left;
            font-weight: 500;
            color: #1a1a1a;
        }

        .comparison-table tbody td.col-lw {
            background: #f7f7f9;
            border-left: 1px solid #e5e7eb;
            border-right: 1px solid #e5e7eb;
        }

        .cmp-check {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
             background: #dcfce7;
    color: #16a34a;
        }

        .cmp-check svg {
            width: 16px;
            height: 16px;
        }

        .cmp-cross {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
        }

        .cmp-cross svg {
            width: 14px;
            height: 14px;
            color: #737373;
        }

        .cmp-meh {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #fffbeb;
        }

        .cmp-meh svg {
            width: 14px;
            height: 14px;
            color: #f59e0b;
        }

        .comparison-table tbody td .cmp-note {
            display: block;
            font-size: 10px;
            color: #9ca3af;
            margin-top: 4px;
            line-height: 1.2;
        }

        .cmp-text {
            font-size: 13px;
            color: #6b7280;
            margin-top: 4px;
        }

        .cmp-text-good {
            color: #22c55e;
            font-weight: 600;
            font-size: 14px;
        }

        .comparison-table tfoot td {
            padding: 24px 20px;
            border-top: 1px solid #e5e7eb;
            text-align: center;
            background: #f7f7f9;
        }

        .comparison-table tfoot td:first-child {
            border-bottom-left-radius: 12px;
        }

        .comparison-table tfoot td:last-child {
            border-bottom-right-radius: 12px;
        }

        .comparison-table tfoot td.col-lw {
            background: #f7f7f9;
        }

        .cmp-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: var(--primary);
            color: #fff;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s;
        }

        .cmp-cta:hover {
            background: var(--primary-dark);
        }

        .comparison-footnote {
            max-width: 1060px;
            margin: 24px auto 0;
            text-align: center;
            font-size: 13px;
            color: #9ca3af;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .comparison-section {
                padding: 80px 16px;
            }

            .comparison-table-wrap {
                max-width: 520px;
                margin: 0 auto;
                overflow: visible;
            }

            .comparison-table {
                width: 100%;
                min-width: 0;
                table-layout: auto;
                border: none;
                background: transparent;
                border-radius: 0;
            }

            .comparison-table colgroup,
            .comparison-table thead {
                display: none;
            }

            .comparison-table tbody {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

            .comparison-table tbody tr {
                display: block;
                background: #f3f4f6;
                border: 1px solid #e5e7eb;
                border-radius: 12px;
                overflow: hidden;
                border-bottom: none;
            }

            .comparison-table tbody tr:hover,
            .comparison-table tbody tr:hover td.col-lw,
            .comparison-table tbody tr:hover td:first-child {
                background: #f3f4f6;
            }

            .comparison-table tbody td {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
                padding: 12px 16px;
                font-size: 14px;
                text-align: left;
                border: none;
                background: transparent;
            }

            .comparison-table tbody td:first-child {
                display: block;
                font-size: 15px;
                font-weight: 600;
                color: #1a1a1a;
                line-height: 1.35;
                padding: 14px 16px 10px;
                border-bottom: 1px solid #e5e7eb;
                background: #f3f4f6;
            }

            .comparison-table tbody td:not(:first-child) {
                background: #fff;
                border-top: 1px solid #ececee;
            }

            .comparison-table tbody td:not(:first-child)::before {
                font-size: 13px;
                font-weight: 600;
                color: #374151;
                letter-spacing: -0.01em;
            }

            .comparison-table tbody td:nth-child(2)::before {
                content: "Localweb";
                color: #6366f1;
            }

            .comparison-table tbody td:nth-child(3)::before {
                content: "Freelance";
            }

            .comparison-table tbody td:nth-child(4)::before {
                content: "Wix";
            }

            .comparison-table tbody td.col-lw {
                background: #fafaff;
                border-left: none;
                border-right: none;
            }

            .comparison-table tbody tr:last-child td:first-child,
            .comparison-table tbody tr:last-child td:last-child {
                border-radius: 0;
            }

            .cmp-check, .cmp-cross {
                width: 26px;
                height: 26px;
                flex-shrink: 0;
            }

            .cmp-check svg {
                width: 15px;
                height: 15px;
            }

            .cmp-cross svg {
                width: 13px;
                height: 13px;
            }
        }

/* === Funciones page === */

/* ========== SHARED ========== */
        .problem-badge {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            color: #1a1a1a;
            padding: 4px 10px;
            border: 1px solid #d7d8db;
            border-radius: 3px;
            margin-bottom: 20px;
        }

        .section-header {
            max-width: 640px;
            margin: 0 auto 64px;
            text-align: center;
        }

        .section-header h2 {
            font-size: clamp(32px, 4.5vw, 48px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 19px;
            line-height: 1.6;
            color: #6b7280;
        }

        /* ========== PAGE HERO ========== */
        .fn-hero {
            padding: 140px 24px 80px;
            background-image: linear-gradient(180deg, #f2f3f5 0%, #fff 85%);
            position: relative;
            text-align: center;
        }

        .fn-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(0,0,0,0.06) 2px, transparent 2px);
            background-size: 22px 22px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
            pointer-events: none;
        }

        .fn-hero-inner {
            max-width: 720px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .fn-hero h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .fn-hero p {
            font-size: 20px;
            color: #6b7280;
            line-height: 1.7;
            margin: 0 auto 28px;
            max-width: 600px;
        }

        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 22px;
            background: var(--primary);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
        }

        .btn-hero-primary:hover { background: var(--primary-dark); }

        .btn-hero-play-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .btn-hero-play-icon svg {
            width: 20px;
            height: 20px;
            display: block;
        }

        /* ========== VIDEO MODAL ========== */
        .video-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0,0,0,0);
            align-items: center;
            justify-content: center;
            transition: background 0.35s ease;
        }

        .video-modal-overlay.is-visible {
            background: rgba(0,0,0,0.82);
        }

        .video-modal-box {
            position: relative;
            width: min(860px, 92vw);
            aspect-ratio: 16/9;
            border-radius: 14px;
            overflow: hidden;
            background: #000;
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .video-modal-overlay.is-visible .video-modal-box {
            opacity: 1;
        }

        .video-modal-close {
            position: absolute;
            top: -44px;
            right: 0;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 8px;
            line-height: 1;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .video-modal-close:hover { opacity: 1; }

        .video-modal-close svg {
            width: 24px;
            height: 24px;
            display: block;
        }

        .video-modal-box iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* ========== SPEC SHEET ========== */
        .fn-included {
            padding: 100px 24px;
            background: #f7f7f9;
        }

        .fn-spec-wrap {
            max-width: 920px;
            margin: 0 auto;
        }

        .fn-spec-table {
            width: 100%;
            table-layout: fixed;
            border-collapse: separate;
            border-spacing: 0;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            background: #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
        }

        .fn-spec-table .fn-spec-col-name { width: 28%; }
        .fn-spec-table .fn-spec-col-status { width: 132px; }

        .fn-spec-table thead th {
            padding: 18px 24px;
            text-align: left;
            vertical-align: middle;
            border-bottom: 1px solid #e5e7eb;
            background: #f7f7f9;
            position: sticky;
            top: 68px;
            z-index: 8;
            box-shadow: 0 1px 0 #e5e7eb;
            font-size: 15px;
            font-weight: 600;
            color: #6b7280;
            letter-spacing: -0.01em;
        }

        .fn-spec-table thead th:first-child {
            border-top-left-radius: 12px;
        }

        .fn-spec-table thead th:last-child {
            border-top-right-radius: 12px;
            text-align: center;
        }

        .fn-spec-table tbody td {
            padding: 18px 24px;
            vertical-align: middle;
        }

        .fn-spec-table tbody tr:last-child td {
            border-bottom: none;
        }

        .fn-spec-table tbody tr:hover {
            background: #fafafa;
        }

        .fn-spec-name {
            font-size: 15px;
            font-weight: 500;
            color: #1a1a1a;
            letter-spacing: -0.01em;
        }

        .fn-spec-desc {
            font-size: 15px;
            color: #6b7280;
            line-height: 1.5;
        }

        .fn-spec-status {
            text-align: center;
        }

        .fn-spec-chip {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 6px;
            white-space: nowrap;
        }

        .fn-spec-chip--green {
            background: #dcfce7;
            color: #16a34a;
        }

        .fn-spec-table tfoot td {
            padding: 20px 24px;
            text-align: center;
            border-top: 1px solid #e5e7eb;
            background: #fafafa;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }

        .fn-spec-footer a {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
        }

        .fn-spec-footer a:hover {
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        @media (max-width: 640px) {
            .fn-spec-table .fn-spec-col-name { width: 32%; }
            .fn-spec-table .fn-spec-col-status { width: 100px; }
            .fn-spec-table thead th,
            .fn-spec-table tbody td { padding: 14px 12px; }
            .fn-spec-name { font-size: 15px; }
            .fn-spec-desc { font-size: 14px; }
        }

        /* ========== CRECIMIENTO CARDS ========== */
        .fn-pro {
            padding: 100px 24px;
            background: #fff;
        }

        .fn-pro-inner {
            max-width: 1060px;
            margin: 0 auto;
        }

        .fn-pro .section-header {
            margin-bottom: 56px;
        }

  

        .fn-grow-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 36px;
        }

        .fn-grow-card {
            position: relative;
            background: #f7f7f9;
            border: none;
            border-radius: 8px;
            padding: 40px 32px 44px;
            text-align: left;
            box-shadow: none;
        }

        .fn-grow-card-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            margin-bottom: 20px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .fn-grow-card-icon svg {
            width: 28px;
            height: 28px;
            stroke-width: 1.5;
        }

        .fn-grow-card-icon--sparkle svg {
            width: 28px;
            height: 28px;
        }

        .fn-grow-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: -0.02em;
            line-height: 1.35;
            margin-bottom: 12px;
        }

        .fn-grow-card p {
            font-size: 16px;
            line-height: 1.6;
            color: #6b7280;
        }

        .fn-grow-video-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 18px;
            padding: 9px 12px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            background: #fff;
            color: #1a1a1a;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }

        .fn-grow-video-btn:hover {
            border-color: #d1d5db;
            background: #fafafa;
        }

        .fn-grow-video-btn .btn-hero-play-icon svg {
            width: 18px;
            height: 18px;
        }

        .fn-pro-link {
            display: block;
            text-align: center;
            margin-top: 48px;
            font-size: 15px;
            font-weight: 500;
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .fn-pro-link:hover { color: var(--primary-dark); }

        @media (max-width: 900px) {
            .fn-grow-grid {
                grid-template-columns: 1fr;
                max-width: 420px;
                margin: 0 auto;
            }
        }

        /* ========== PLAN COMPARE ========== */
        .fn-compare {
            padding: 100px 24px;
            background: #f7f7f9;
        }

        .fn-compare-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border: 1px solid #e5e7eb;
            background: #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
            table-layout: fixed;
                        border-top: none;

            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }

        .fn-compare-table thead th {
            padding: 22px 20px;
            text-align: left;
            vertical-align: bottom;
            border-top: 1px solid #e5e7eb;

            background: #fff;
            position: sticky;
            top: 68px;
            z-index: 8;
            box-shadow: 0 1px 0 #e5e7eb;
            font-size: 13px;
            font-weight: 600;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            background: #f7f7f9;
        }

        .fn-compare-table thead th:first-child {


            width: 40%;
            vertical-align: middle;
            text-transform: none;
            letter-spacing: -0.01em;
            font-size: 15px;
            color: #6b7280;
        }

        .fn-compare-table thead th:nth-child(2),
        .fn-compare-table thead th:nth-child(3) {
            width: 30%;
            text-align: center;
        }

        .fn-compare-table thead th:last-child {
        }

        .fn-compare-plan-name {
            display: block;
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            text-transform: none;
            letter-spacing: -0.03em;
            margin-bottom: 4px;
        }

        .fn-compare-plan-price {
            display: block;
            text-transform: none;
            letter-spacing: -0.02em;
        }

        .fn-compare-plan-price .plan-price-amount {
            font-size: 16px;
            font-weight: 600;
            color: #4b5563;
        }

        .fn-compare-plan-price > span:not(.plan-price-amount) {
            font-size: 14px;
            font-weight: 500;
            color: #9ca3af;
        }

        .fn-compare-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 18px;
            background: #fff;
            color: #1a1a1a;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
            text-decoration: none;
            white-space: nowrap;
            text-transform: none;
            letter-spacing: -0.01em;
        }

        .fn-compare-cta svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            transition: transform 0.15s ease;
        }

        .fn-compare-cta:hover {
            border-color: #d1d5db;
            background: #fafafa;
        }

        .fn-compare-cta:hover svg {
            transform: translateX(2px);
        }

        .fn-compare-table tbody td {
            padding: 18px 24px;
            vertical-align: middle;
            font-size: 15px;
            line-height: 1.5;
            color: #374151;
        }

        .fn-compare-table tbody tr:last-child td {
            border-bottom: none;
        }

        .fn-compare-table tfoot td {
            padding: 24px 20px 28px;
            text-align: center;
            vertical-align: middle;
            border-top: 1px solid #e5e7eb;
            background: #f7f7f9;
        }

        .fn-compare-table tfoot td:first-child {
            text-align: left;
            padding-left: 24px;
            border-bottom-left-radius: 12px;
        }

        .fn-compare-foot-label {
            font-size: 15px;
            font-weight: 600;
            color: #6b7280;
            letter-spacing: -0.01em;
        }

        .fn-compare-table tfoot td:last-child {
            border-bottom-right-radius: 12px;
        }

        .fn-compare-table tbody td:first-child {
            font-weight: 500;
            color: #1a1a1a;
            text-align: left;
        }

        .fn-compare-fn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .fn-compare-badge-ia {
            display: inline-block;
            font-size: 10px;
            font-weight: 600;
            padding: 2px 4px;
            border-radius: 4px;
            letter-spacing: 0.03em;
            line-height: 1.2;
            flex-shrink: 0;
            color: #1a1a1a;
            border: 1px solid #d7d8db;
        }

        .fn-compare-table tbody td:nth-child(2),
        .fn-compare-table tbody td:nth-child(3) {
            text-align: center;
        }

        .fn-compare-icon {
           display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
             background: #dcfce7;
    color: #16a34a;
        }

        .fn-compare-icon svg {
            width: 16px;
            height: 16px;
            stroke-width: 2.5;
        }

        .fn-compare-icon--yes {
            background: #dcfce7;
            color: #16a34a;
        }

        .fn-compare-icon--no {
           width: 14px;
            height: 14px;
            color: #737373;
            background: transparent;
        }

        .fn-compare-muted {
            display: block;
            font-size: 14px;
            color: #9ca3af;
            font-weight: 400;
            margin-top: 2px;
        }

        .fn-compare-wrap {
            max-width: 920px;
            margin: 0 auto;
            overflow: visible;
        }

        .fn-compare-table tbody tr.fn-compare-cat td {
            padding: 14px 24px 10px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #6b7280;
            background: #f7f7f9;
            border-top: 1px solid #e5e7eb;
        }

        .fn-compare-table tbody tr.fn-compare-cat:first-child td {
            border-top: none;
        }

        .fn-compare-num {
            display: inline-block;
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            letter-spacing: -0.02em;
            font-variant-numeric: tabular-nums;
        }

        .fn-compare-table tbody td:first-child {
            overflow: visible;
        }

        .fn-compare-tip {
            position: relative;
            display: inline-flex;
            vertical-align: middle;
            flex-shrink: 0;
        }

        .fn-compare-tip-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 17px;
            height: 17px;
            border-radius: 50%;
            font-size: 11px;
            font-weight: 700;
            color: #6b7280;
            background: #f3f4f6;
            border: 1px solid #e5e7eb;
            cursor: help;
            line-height: 1;
            transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
        }

        .fn-compare-tip:hover .fn-compare-tip-btn,
        .fn-compare-tip:focus-within .fn-compare-tip-btn {
            background: #ede9fe;
            border-color: #c4b5fd;
            color: #5b21b6;
        }

        .fn-compare-tip-panel {
            position: absolute;
            left: 50%;
            bottom: calc(100% + 10px);
            transform: translateX(-50%);
            width: min(272px, calc(100vw - 32px));
            padding: 12px 14px;
            font-size: 13px;
            font-weight: 400;
            line-height: 1.5;
            color: #374151;
            text-align: left;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
            z-index: 30;
            text-transform: none;
            letter-spacing: normal;
        }

        .fn-compare-tip-panel::before {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 7px solid transparent;
            border-top-color: #e5e7eb;
        }

        .fn-compare-tip-panel::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: -1px;
            border: 6px solid transparent;
            border-top-color: #fff;
        }

        .fn-compare-tip:hover .fn-compare-tip-panel,
        .fn-compare-tip:focus-within .fn-compare-tip-panel {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-2px);
        }

        @media (max-width: 640px) {
            .fn-compare-table tbody td {
                padding: 14px 12px;
                font-size: 14px;
            }

            .fn-compare-table tbody tr.fn-compare-cat td {
                padding: 12px;
                font-size: 11px;
            }

            .fn-compare-table tfoot td {
                padding: 20px 12px 24px;
            }

            .fn-compare-cta {
                padding: 9px 14px;
                font-size: 14px;
            }
        }

@media (max-width: 900px) {
            .fn-hero h1 { font-size: 42px; }
        }

@media (max-width: 768px) {
            .header-inner { padding: 0 16px; }
            .nav { display: none; }
            .fn-hero { padding: 120px 16px 60px; }
            .fn-hero h1 { font-size: 36px; }
            .fn-included, .fn-pro, .fn-compare { padding: 80px 16px; }
            .cta-section { padding: 60px 24px; }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }

/* === Legal pages === */

/* Legal content */
.legal-main {
    padding: calc(var(--header-offset) + 24px) 24px 80px;
    background: var(--lr-bg);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #171717;
    margin-bottom: 12px;
}

.legal-meta {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 40px 0 16px;
    letter-spacing: -0.02em;
}

.legal-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 24px 0 12px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 16px 1.25rem;
    color: #4b5563;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--primary-dark);
}

/* === Blog (WordPress) === */

/* Blog archive + single — Localweb
 * Fuente: build-wp.js concatena este archivo en assets/css/main.css.
 * No enqueuear por separado en WordPress.
 */

/* ========== Blog hero + filtros ========== */
.localweb-blog-hero {
    background: #6366f1;
    color: #fff;
    padding: calc(var(--header-offset) + 40px) 24px 48px;
    text-align: center;
}

.localweb-blog-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}

.localweb-blog-hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.92);
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    margin-bottom: 18px;
}

.localweb-blog-hero h1 {
    font-family: 'Geist', system-ui, sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 12px;
}

.localweb-blog-hero-sub {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.localweb-blog-search {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 520px;
    margin: 28px auto 0;
    padding: 6px 18px 6px 16px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.localweb-blog-search-label {
    display: inline-flex;
    flex-shrink: 0;
    margin: 0;
    color: #9ca3af;
}

.localweb-blog-search-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.localweb-blog-search input[type="search"] {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    padding: 12px 0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.localweb-blog-search input[type="search"]::placeholder {
    color: #9ca3af;
}

.localweb-blog-search input[type="search"]::-webkit-search-cancel-button {
    cursor: pointer;
}

.localweb-blog-filters {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 24px 16px;
}

.localweb-blog-filters-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.localweb-blog-filter {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.localweb-blog-filter:hover {
    background: #e5e7eb;
    color: #111827;
}

.localweb-blog-filter.is-active {
    background: #eef2ff;
    color: #6366f1;
    border-color: rgba(99, 102, 241, 0.2);
}

.localweb-blog-empty {
    text-align: center;
    font-size: 17px;
    color: #6b7280;
    padding: 24px 0 8px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

@media (max-width: 768px) {
    .localweb-blog-hero {
        padding: calc(var(--header-offset) + 32px) 16px 40px;
    }

    .localweb-blog-search {
        margin-top: 22px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .localweb-blog-filters {
        padding: 12px 16px 14px;
    }

    .localweb-blog-filters-inner {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 2px;
    }

    .localweb-blog-filters-inner::-webkit-scrollbar {
        display: none;
    }

    .localweb-blog-filter {
        flex-shrink: 0;
    }
}

.localweb-blog-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px 80px;
}

.localweb-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 640px) {
    .localweb-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .localweb-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .localweb-blog-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.localweb-blog-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.localweb-blog-card:hover {
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.localweb-blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.localweb-blog-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #eef2ff 0%, #f9fafb 100%);
}

.localweb-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.localweb-blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.localweb-blog-card-meta {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6366f1;
}

.localweb-blog-card-title {
    font-family: 'Geist', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: #111827;
    margin: 0;
}

.localweb-blog-card-excerpt {
    font-size: 14px;
    line-height: 1.55;
    color: #6b7280;
    margin: 0;
    flex: 1;
}

.localweb-blog-card-date {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 4px;
}

.localweb-blog-pagination {
    margin-top: 48px;
    text-align: center;
}

.localweb-blog-pagination .nav-links {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.localweb-blog-pagination a,
.localweb-blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    color: #374151;
}

.localweb-blog-pagination .current {
    background: #6366f1;
    border-color: #6366f1;
    color: #fff;
}

/* Single post */
.localweb-single-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 98px 24px 56px;
}

.localweb-single-header {
    margin-bottom: 32px;
}

.localweb-single-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.localweb-single-meta a {
    color: inherit;
    text-decoration: none;
}

.localweb-single-meta a:hover {
    color: #4f46e5;
}

.localweb-single-meta span:last-child {
    color: #6b7280;
}

.localweb-single-title {
    font-family: 'Geist', system-ui, sans-serif;
    font-size: clamp(32px, 4.5vw, 42px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #111827;
    margin: 0 0 16px;
}

.localweb-single-date {
    font-size: 15px;
    color: #9ca3af;
}

.localweb-single-featured {
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
}

.localweb-single-featured img {
    width: 100%;
    height: auto;
    display: block;
}

.localweb-single-content {
    font-size: 17px;
    line-height: 1.75;
    color: #374151;
    counter-reset: localweb-section;
}

.localweb-single-content h2,
.localweb-single-content h3,
.localweb-single-content h4 {
    font-family: 'Geist', system-ui, sans-serif;
    color: #111827;
    letter-spacing: -0.02em;
}

.localweb-single-content h2 {
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 700;
    margin-top: 2.25em;
    margin-bottom: 0.75em;
    line-height: 1.25;
}

.localweb-single-content h2[id] {
    scroll-margin-top: 96px;
}

.localweb-single-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 1.75em;
    margin-bottom: 0.65em;
}

.localweb-single-content h4 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.localweb-single-content p {
    margin: 0 0 1.25em;
}

.localweb-single-content a {
    color: #6366f1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.localweb-single-content a:hover {
    color: #4f46e5;
}

.localweb-single-content ul:not(.localweb-toc-list),
.localweb-single-content ol:not(.localweb-toc-list) {
    margin: 0 0 1.25em;
    padding-left: 1.75em;
}

.localweb-single-content ul:not(.localweb-toc-list) {
    list-style: disc;
}

.localweb-single-content ol:not(.localweb-toc-list) {
    list-style: decimal;
}

.localweb-single-content li:not(.localweb-toc-list li) {
    margin-bottom: 0.5em;
    padding-left: 0.25em;
}

.localweb-single-content ul:not(.localweb-toc-list) li::marker,
.localweb-single-content ol:not(.localweb-toc-list) li::marker {
    color: #6366f1;
}

.localweb-single-content ul ul,
.localweb-single-content ol ol,
.localweb-single-content ul ol,
.localweb-single-content ol ul {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.localweb-single-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0 0 1.75em;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.55;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.localweb-single-content thead th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    background: #f7f7f9;
    border-bottom: 1px solid #e5e7eb;
}

.localweb-single-content tbody td,
.localweb-single-content tbody th,
.localweb-single-content tfoot td,
.localweb-single-content tfoot th {
    padding: 14px 16px;
    vertical-align: top;
    border-top: 1px solid #e5e7eb;
    color: #374151;
}

.localweb-single-content tbody tr:first-child td,
.localweb-single-content tbody tr:first-child th {
    border-top: none;
}

.localweb-single-content tbody tr:nth-child(even) td {
    background: #fafafa;
}

.localweb-single-content blockquote {
    margin: 0 0 1.5em;
    padding: 16px 20px;
    border-left: 3px solid #6366f1;
    background: #f7f7f9;
    border-radius: 0 10px 10px 0;
    color: #4b5563;
}

.localweb-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 0 0 1.5em;
}

.localweb-single-content hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2em 0;
}

.localweb-single-content code {
    font-size: 0.9em;
    padding: 2px 6px;
    border-radius: 4px;
    background: #f3f4f6;
    color: #1f2937;
}

.localweb-single-content pre {
    margin: 0 0 1.5em;
    padding: 16px 18px;
    overflow-x: auto;
    border-radius: 10px;
    background: #111827;
    color: #f9fafb;
    font-size: 14px;
    line-height: 1.6;
}

.localweb-single-content pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

/* Tabla de contenidos */
.localweb-toc {
    margin: 0 0 2em;
    padding: 20px 22px;
    background: #f7f7f9;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.localweb-toc-title {
    margin: 0 0 12px;
    font-family: 'Geist', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
}

.localweb-toc-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: localweb-toc;
}

.localweb-toc-list li {
    margin: 0;
    padding: 0;
    border-top: 1px solid #e5e7eb;
    list-style: none;
}

.localweb-toc-list li::marker {
    content: none;
}

.localweb-toc-list li:first-child {
    border-top: none;
}

.localweb-toc-list a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    line-height: 1.45;
    transition: color 0.15s ease;
}

.localweb-toc-list a:hover {
    color: #6366f1;
}

.localweb-toc-list a::before {
    counter-increment: localweb-toc;
    content: counter(localweb-toc) ". ";
    color: #9ca3af;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

/* H2 numerados — solo los que marques en el editor */
.localweb-single-content h2.is-style-localweb-section,
.localweb-single-content h2.localweb-section-h {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-top: 2.75em;
    margin-bottom: 0.85em;
    font-size: clamp(24px, 3vw, 28px);
    line-height: 1.25;
}

.localweb-single-content h2.is-style-localweb-section::before,
.localweb-single-content h2.localweb-section-h::before {
    counter-increment: localweb-section;
    content: counter(localweb-section);
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.65em;
    min-height: 1.65em;
    padding: 0.42em 0.52em;
    border-radius: 10px;
    background: #6366f1;
    color: #fff;
    font-size: calc(1em - 2px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.28);
}

.localweb-single-content h2.is-style-localweb-section .localweb-section-title,
.localweb-single-content h2.localweb-section-h .localweb-section-title {
    flex: 1;
    min-width: 0;
    font-size: 1em;
    font-weight: 700;
    line-height: 1.25;
    color: #111827;
}

.localweb-single-back {
    margin-top: 48px;
}

.localweb-single-back a {
    font-weight: 600;
    color: #6366f1;
    text-decoration: none;
}

/* Posts relacionados — single */
.localweb-single-related {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px 24px 80px;
}

.localweb-single-related-title {
    font-family: 'Geist', system-ui, sans-serif;
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111827;
    text-align: center;
    margin: 0 0 32px;
}

.localweb-single-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 640px) {
    .localweb-single-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .localweb-single-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CTA antes de posts relacionados — reutiliza .cta-wrapper / .cta-section de la landing */
.localweb-single-cta {
    padding-top: 32px;
    padding-bottom: 24px;
}

@media (max-width: 768px) {
    .localweb-single-related {
        padding-bottom: 64px;
    }

    .localweb-single-cta {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .localweb-single-cta .cta-section {
        padding: 48px 24px;
    }
}

.localweb-missing {
    max-width: 720px;
    margin: 48px auto;
    padding: 24px;
    background: #fef3c7;
    border-radius: 12px;
    color: #92400e;
}

.localweb-page-main {
    padding: 48px 24px 96px;
}

.localweb-page-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* === Landing pages (hero 2 columnas, texto izquierda) === */

.localweb-landing .hero{
            padding-top: 44px;
            min-height: auto;
            display: flex;
            align-items: center;
            background-image: linear-gradient(180deg, #f2f3f5 0%, #fff 85%);
            position: relative;
        }.localweb-landing .hero::before{
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(0,0,0,0.06) 2px, transparent 2px);
            background-size: 22px 22px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.2) 60%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.2) 60%, transparent 100%);
            pointer-events: none;
            z-index: 0;
        }.localweb-landing .hero-inner{
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px 60px 32px;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
            gap: 48px 56px;
            align-items: center;
            position: relative;
            z-index: 1;
        }.localweb-landing .hero-content{
            display: flex;
            flex-direction: column;
            gap: 0;
            padding-top: 112px;
            padding-bottom: 32px;
            align-items: flex-start;
            text-align: left;
            max-width: none;
        }.localweb-landing .hero-visual{
            padding-top: 50px;
            padding-bottom: 32px;
        }.localweb-landing .hero-visual img{
            width: 100%;
            height: auto;
            max-height: 520px;
            aspect-ratio: 1 / 1.5;
            object-fit: cover;
            object-position: right center;
            border-radius: 12px;
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
            display: block;
        }.localweb-landing .hero-seo-label{
            display: inline-block;
            font-size: 15px;
            font-weight: 500;
            color: #6366F1;
            background: none;
            padding: 0;
            border-radius: 0;
            margin: 0 0 16px;
            letter-spacing: 0.01em;
            line-height: 1.35;
            width: fit-content;
        }.localweb-landing .hero-display-title{
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            color: #1a1a1a;
            margin: 0 0 20px;
            letter-spacing: -1px;
        }.localweb-landing .hero-title{
            font-size: 56px;
            font-weight: 700;
            line-height: 1.1;
            color: #1a1a1a;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }.localweb-landing .hero-subtitle{
            font-size: 20px;
            color: #52525b;
            line-height: 1.7;
            margin: 0 0 28px;
            max-width: 640px;
        }.localweb-landing .hero-buttons{
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 32px;
        }.localweb-landing .btn-hero-primary{
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 22px;
            background: #6366F1;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            border-radius: 6px;
            text-decoration: none;
            border: none;
            cursor: pointer;
        }.localweb-landing .btn-hero-primary:hover{
            background: #333;
        }.localweb-landing .btn-hero-secondary{
            display: inline-flex;
            align-items: center;
            gap: 0px;
            padding: 12px 22px;
            background: #fff;
            color: #1a1a1a;
            font-size: 15px;
            font-weight: 600;
            border-radius: 10px;
            text-decoration: none;
            border: 1px solid #e5e7eb;
            cursor: pointer;
        }.localweb-landing .btn-hero-secondary:hover{
            border-color: #d1d5db;
            background: #fafafa;
        }.localweb-landing .btn-hero-play-icon{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-left: 2px;
        }.localweb-landing .btn-hero-play-icon svg{
            width: 20px;
            height: 20px;
            display: block;
        }.localweb-landing .trust-logos{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 14px;
        }.localweb-landing .trust-logo{
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: #555;
            border: 2px solid #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }.localweb-landing .trust-logo:not(:first-child){
            margin-left: -8px;
        }.localweb-landing .trust-logo.uber{ background: #1a1a1a; color: #fff; font-size: 8px; }.localweb-landing .trust-logo.coursera{ background: #0056D2; color: #fff; font-size: 7px; }.localweb-landing .trust-logo.share{ background: #1a1a1a; color: #fff; }.localweb-landing .trust-logo.pipe{ background: #fff; border: 2px solid #e0e0e0; color: #1a1a1a; }.localweb-landing .trust-logo.pepsi{ background: #fff; border: 2px solid #e0e0e0; }.localweb-landing .trust-text{
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            color: #6b7280;
        }.localweb-landing .trust-text .live-dot{
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
        }.localweb-landing .trust-text strong{
            color: #1a1a1a;
            font-weight: 600;
        }

@media (max-width: 1024px) {.localweb-landing .hero-title{
                font-size: 42px;
            }.localweb-landing .hero-display-title{
                font-size: 42px;
            }}

@media (max-width: 768px) {.localweb-landing .hero-inner{
                padding: 16px 26px 56px;
            }.localweb-landing .hero-content{
                padding-top: 60px;
            }.localweb-landing .hero-buttons{
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                max-width: 260px;
                margin-left: auto;
                margin-right: auto;
            }.localweb-landing .btn-hero-primary, .localweb-landing .btn-hero-secondary{
                width: 100%;
                justify-content: center;
            }.localweb-landing .hero-title{
                font-size: 36px;
            }}

@media (max-width: 480px) {.localweb-landing .hero-visual{
                max-width: 300px;
            }.localweb-landing .hero-visual img{
                max-height: 200px;
                aspect-ratio: 3 / 2;
            }}

/* === SEO / accesibilidad === */

.localweb-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.localweb-rubros-index { padding: 120px 24px 80px; max-width: 960px; margin: 0 auto; }

.localweb-rubros-grid { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px 24px; padding: 0; margin: 0; }

.localweb-rubros-grid a { color: #6366F1; text-decoration: none; font-weight: 500; }

.localweb-rubros-grid a:hover { text-decoration: underline; }

/* ==========================================================================
   LR PREVIEW RESKIN — capa de estilos que adapta el theme al look de
   preview-lr-design/index.html reutilizando las clases existentes.
   Al ir al final del archivo, gana en la cascada (misma especificidad).
   ========================================================================== */
:root {
    --lr-bg: #f7f7f9;
    --lr-surface: #f7f7f9;
    --lr-soft: #fafafa;
    --lr-card: linear-gradient(145deg, #ffffff 0%, #fff 100%);
    --lr-line: rgba(230, 230, 233, 0.95);
    --lr-line-2: #dadadd;
    --lr-grid-line: rgba(205, 205, 212, 0.55);
    --lr-ink: #171717;
    --lr-body: #4A4A54;
    --lr-muted: #82828C;
    --lr-dim: #A8A8B0;
    --lr-brand: #6366F1;
    --lr-brand-2: #4F46E5;
    --lr-brand-50: #f7f7f9;
    --lr-brand-100: #eef0f3;
    --lr-header-bg: rgba(247, 247, 249, 0.52);
    --lr-header-bg-scrolled: rgba(247, 247, 249, 0.58);
    --lr-ok: #059669;
    --lr-sm: 0 1px 2px rgba(16, 16, 20, .05);
    --lr-sh: 0 22px 52px -32px rgba(23, 23, 23, .32), 0 1px 0 rgba(255, 255, 255, .9) inset;
    --lr-lg: 0 30px 70px -30px rgba(16, 16, 20, .28);
    --lr-rad: 24px;
    --lr-rad-md: 16px;
    --lr-sp-96: 96px;
    --lr-sp-80: 80px;
    --lr-sp-120: 120px;
    --header-offset: 80px;
    --lr-badge-bg: linear-gradient(145deg, #F8FAFF, #EEF2FF);
    --lr-badge-border: #D9E1FF;
    --lr-badge-shadow: 0 12px 28px -16px rgba(79, 70, 229, 0.55), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    --lr-badge-color: #315DFF;
    --lr-soft-indigo: #F4F6FF;
    --lr-soft-indigo-2: #E9EDFF;
    --lr-soft-indigo-3: #DFE4FF;
}

html {
    scroll-padding-top: var(--header-offset);
}

body {
    background: var(--lr-bg);
    color: var(--lr-body);
}

/* Títulos unificados a 600 (los precios/numéricos mantienen 700) */
.hero-title,
.features-section-header h2,
.how-header h2,
.ex-stack-header h2,
.pricing-header h2,
.comparison-header h2,
.faq-side h2,
.why-google-content h2,
.businesses-title,
.section-header h2,
.testimonial-quote,
.problem-heading h2,
.cta-section h2,
.fn-hero h1,
.feature-card h3,
.how-card h3,
.pricing-card h3,
.fn-grow-card h3 {
    font-weight: 600;
}

/* Eyebrows — texto brand simple como preview */
.problem-badge,
.businesses-eyebrow {
    background: transparent;
    color: var(--lr-brand);
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ===== Header / Nav ===== */
.header {
    position: sticky;
    top: 0;
    height: 72px;
    background: var(--lr-header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}
.header.is-scrolled {
    background: var(--lr-header-bg-scrolled);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: none;
    border-bottom-color: transparent;
}
.header {
    display: flex;
    align-items: center;
}
.header-inner {
    position: relative;
    max-width: 1120px;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .header-inner {
        padding: 0 24px;
    }
}
.header-left {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
    flex-shrink: 0;
}
.logo {
    position: static;
    transform: none;
}
.logo-img {
    margin-top: 0;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    white-space: nowrap;
    z-index: 1;
}
@media (max-width: 768px) {
    .nav {
        display: none;
    }
}
.nav a {
    color: var(--lr-ink);
    font-weight: 500;
}
.nav a:hover {
    color: var(--lr-brand);
    opacity: 1;
}
.mobile-menu {
    top: 72px;
}
.btn-login {
    border-color: var(--lr-line-2);
    border-radius: 10px;
    color: var(--lr-ink);
}
.btn-login:hover {
    border-color: var(--lr-dim);
    background: #fff;
}
.btn-try:hover {
    background: var(--lr-brand-2);
}

/* ===== Botones hero ===== */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--lr-brand);
    border-radius: 12px;
    padding: 14px 26px;
    min-width: 170px;
    font-size: 16px;
    box-shadow: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-hero-primary::after {
    content: none;
    display: none;
}
.btn-hero-primary:hover {
    background: var(--lr-brand-2);
    transform: none;
}
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 14px 26px;
    min-width: 170px;
    font-size: 16px;
    border: 1px solid #d0d0d7;
    background: #fff;
    box-shadow: var(--lr-sm);
    transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-hero-secondary:hover {
    border-color: #c4c4cc;
    background: var(--lr-soft);
    transform: none;
}
.localweb-home .hero .btn-hero-secondary .btn-hero-play-icon,
.home .hero .btn-hero-secondary .btn-hero-play-icon {
    display: none;
}
.btn-try {
    background: var(--lr-brand);
    border-radius: 10px;
    padding: 11px 18px;
    font-size: 14px;
    box-shadow: none;
}
.btn-try:hover {
    background: var(--lr-brand-2);
    transform: none;
}

/* Header CTA: oculto al inicio en home/landings, aparece al scrollear el hero */
body.header-cta-deferred .header .btn-try {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    pointer-events: none;
    max-width: 0;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    transition:
        opacity 200ms ease,
        transform 200ms ease,
        max-width 220ms ease,
        padding 220ms ease,
        visibility 0ms linear 200ms;
}
body.header-cta-deferred.header-cta-visible .header .btn-try {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    max-width: 12rem;
    padding-left: 18px;
    padding-right: 18px;
    transition:
        opacity 200ms ease,
        transform 200ms ease,
        max-width 220ms ease,
        padding 220ms ease,
        visibility 0ms;
}
@media (prefers-reduced-motion: reduce) {
    body.header-cta-deferred .header .btn-try {
        transition: none;
    }
}
.btn-login {
    border-radius: 10px;
    padding: 11px 18px;
    font-size: 14px;
}

/* ===== Hero ===== */
.localweb-home .hero,
.home .hero {
    position: relative;
    padding: 68px 0 48px;
    overflow: visible;
    display: block;
    min-height: auto;
    align-items: stretch;
    background: var(--lr-bg) !important;
    background-image: none !important;
}
.localweb-home .hero::after,
.home .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 560px;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(680px 320px at 50% -80px, rgba(233, 233, 240, 0.72), transparent 72%);
}
.hero {
    background: transparent;
    background-image: none;
    padding: 0;
    overflow: hidden;
}
.localweb-home .hero::before,
.home .hero::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: -80px 0 20px;
    background-image:
        linear-gradient(rgba(205, 205, 212, 0.78) 1px, transparent 1px),
        linear-gradient(90deg, rgba(205, 205, 212, 0.78) 1px, transparent 1px);
    background-size: 76px 76px;
    -webkit-mask-image: radial-gradient(circle at 50% 22%, rgba(0, 0, 0, 0.7), transparent 72%);
    mask-image: radial-gradient(circle at 50% 22%, rgba(0, 0, 0, 0.7), transparent 72%);
    opacity: 0.78;
    pointer-events: none;
}
.hero::before {
    inset: -80px 0 20px;
    background-image:
        linear-gradient(rgba(205, 205, 212, 0.78) 1px, transparent 1px),
        linear-gradient(90deg, rgba(205, 205, 212, 0.78) 1px, transparent 1px);
    background-size: 76px 76px;
    -webkit-mask-image: radial-gradient(circle at 50% 22%, rgba(0, 0, 0, 0.7), transparent 72%);
    mask-image: radial-gradient(circle at 50% 22%, rgba(0, 0, 0, 0.7), transparent 72%);
    opacity: 0.78;
}
.hero-inner {
    max-width: 1120px;
    position: relative;
    padding: 0 24px 60px;
    z-index: 1;
}
.localweb-home .hero-inner,
.home .hero-inner {
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
}
.hero-content {
    padding-top: 92px;
    padding-bottom: 40px;
    text-align: center;
    align-items: center;
}
.localweb-home .hero-content,
.home .hero-content {
    max-width: 780px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 0;
}
.hero-title {
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--lr-ink);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.hero .hero-title {
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 600;
    max-width: 780px;
}
.localweb-home .hero-subtitle,
.home .hero-subtitle {
    margin-bottom: 0;
    max-width: 640px;
}
.localweb-home .hero-buttons,
.home .hero-buttons {
    margin-top: 28px;
    margin-bottom: 0;
}
.localweb-home .trust-text,
.home .trust-text {
    margin-top: 24px;
}
.hero-subtitle {
    font-size: 20px;
    line-height: 1.65;
    max-width: 640px;
}
.hero-subtitle,
.trust-text {
    color: var(--lr-muted);
}
.hero-buttons {
    justify-content: center;
}

/* Hero float cards — rubros en desktop */
.hero-float-card {
    position: absolute;
    display: flex;
    padding: 10px;
    border-radius: 20px;
    background: rgba(245, 245, 250, 0.48);
    border: 1px solid rgba(234, 234, 240, 0.8);
    box-shadow: 0 16px 40px -28px rgba(23, 23, 23, 0.1);
    white-space: nowrap;
    opacity: 0;
    z-index: 2;
    cursor: default;
    user-select: none;
    pointer-events: none;
    overflow: hidden;
}
/* Difuminado solo arriba — como Arvow */
.hero-float-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.22) 55%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}
.hero-float-card__inner {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(236, 236, 242, 0.95);
    color: var(--lr-ink);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.localweb-home .hero-float-card,
.home .hero-float-card {
    display: flex;
}
.localweb-home .hero-float-card__inner svg,
.home .hero-float-card__inner svg {
    width: 18px;
    height: 18px;
    color: #d2d2dc;
    flex-shrink: 0;
}
.hero-float-card--one {
    left: 0;
    top: -30px;
    transform: rotate(-5deg);
    animation: heroFloatEnter1 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}
.hero-float-card--two {
    right: 24px;
    top: 36px;
    transform: rotate(5deg);
    animation: heroFloatEnter2 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}
.hero-float-card--three {
    right: 150px;
    bottom: -8px;
    top: auto;
    transform: rotate(-3deg);
    animation: heroFloatEnter3 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.44s forwards;
}
.hero-float-card--four {
    left: 48px;
    top: 58%;
    bottom: auto;
    transform: rotate(4deg);
    animation: heroFloatEnter4 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}
@keyframes heroFloatEnter1 {
    from { opacity: 0; transform: translateY(18px) rotate(-5deg); }
    to { opacity: 1; transform: translateY(0) rotate(-5deg); }
}
@keyframes heroFloatEnter2 {
    from { opacity: 0; transform: translateY(18px) rotate(5deg); }
    to { opacity: 1; transform: translateY(0) rotate(5deg); }
}
@keyframes heroFloatEnter3 {
    from { opacity: 0; transform: translateY(18px) rotate(-3deg); }
    to { opacity: 1; transform: translateY(0) rotate(-3deg); }
}
@keyframes heroFloatEnter4 {
    from { opacity: 0; transform: translateY(18px) rotate(4deg); }
    to { opacity: 1; transform: translateY(0) rotate(4deg); }
}
@media (prefers-reduced-motion: reduce) {
    .localweb-home .hero-float-card,
    .home .hero-float-card {
        opacity: 1;
        animation: none;
    }
}
@media (max-width: 920px) {
    .localweb-home .hero-float-card,
    .home .hero-float-card {
        display: none;
    }
    .localweb-home .hero,
    .home .hero {
        padding-top: 28px;
        padding-bottom: 28px;
    }
    .localweb-home .hero-subtitle,
    .home .hero-subtitle {
        font-size: 19px;
        line-height: 1.6;
    }
    .localweb-home .hero-inner,
    .home .hero-inner {
        min-height: auto;
        padding-bottom: 8px;
    }
}
@media (min-width: 921px) {
    .localweb-home .biz-icons-section,
    .home .biz-icons-section {
        display: none;
    }
}

.localweb-home .features-section,
.home .features-section {
    position: relative;
    overflow: visible;
    overflow-x: visible;
}
.section-rubro-floats {
    display: none;
}
.features-section-header-wrap {
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
}
.features-section-header-wrap .features-section-header {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}
@media (min-width: 921px) {
    .features-section-header-wrap {
        margin-bottom: 54px;
        padding: 8px 0 20px;
        min-height: 168px;
    }
    .localweb-home .section-rubro-floats,
    .home .section-rubro-floats {
        display: block;
        position: absolute;
        pointer-events: none;
        z-index: 1;
    }
    .section-rubro-floats--top {
        inset: -48px -56px 0;
    }
    .section-rubro-floats--how {
        inset: -64px -56px auto;
        height: 64px;
    }
    .how-header-wrap {
        position: relative;
        max-width: 1100px;
        margin: -56px auto 54px;
        overflow: visible;
        padding-top: calc(36px + 1rem);
    }
    .how-header-wrap .how-header {
        position: relative;
        z-index: 2;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
    }
    .localweb-home .how,
    .home .how {
        overflow: visible;
    }
    .section-rubro-float {
        position: absolute;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: var(--lr-rad-md);
        background: var(--lr-card);
        border: 1px solid var(--lr-line);
        box-shadow: var(--lr-sh);
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        overflow: hidden;
    }
    .section-rubro-float::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 18px;
        border-radius: var(--lr-rad-md) var(--lr-rad-md) 0 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.28) 52%, transparent 100%);
        pointer-events: none;
        z-index: 2;
    }
    .section-rubro-float .biz-icon-ico,
    .section-rubro-float .biz-icon-name {
        position: relative;
        z-index: 1;
    }
    .section-rubro-float .biz-icon-ico {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--lr-badge-bg);
        border: 1px solid var(--lr-badge-border);
        box-shadow: var(--lr-badge-shadow);
        flex-shrink: 0;
    }
    .section-rubro-float .biz-icon-ico svg {
        width: 18px;
        height: 18px;
        color: var(--lr-badge-color);
    }
    .section-rubro-float .biz-icon-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--lr-ink);
        letter-spacing: -0.01em;
    }
    .section-rubro-float--1 {
        left: 0;
        top: -22px;
        animation: sectionRubroIn1 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
    }
    .section-rubro-float--2 {
        right: 0;
        top: -18px;
        animation: sectionRubroIn2 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
    }
    .section-rubro-float--3 {
        left: 0;
        top: -10px;
        animation: sectionRubroIn3 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
    }
    .section-rubro-float--4 {
        right: 0;
        top: -4px;
        animation: sectionRubroIn4 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
    }
}
@keyframes sectionRubroIn1 {
    from { opacity: 0; transform: translateY(12px) rotate(-5deg); }
    to { opacity: 1; transform: translateY(0) rotate(-5deg); }
}
@keyframes sectionRubroIn2 {
    from { opacity: 0; transform: translateY(12px) rotate(4deg); }
    to { opacity: 1; transform: translateY(0) rotate(4deg); }
}
@keyframes sectionRubroIn3 {
    from { opacity: 0; transform: translateY(12px) rotate(6deg); }
    to { opacity: 1; transform: translateY(0) rotate(6deg); }
}
@keyframes sectionRubroIn4 {
    from { opacity: 0; transform: translateY(12px) rotate(-6deg); }
    to { opacity: 1; transform: translateY(0) rotate(-6deg); }
}
@media (prefers-reduced-motion: reduce) {
    .section-rubro-float {
        opacity: 1;
        animation: none !important;
    }
}

.localweb-home .biz-icons-section,
.home .biz-icons-section {
    position: relative;
    padding: 16px 0 20px;
    background: var(--lr-bg);
    overflow: hidden;
}
.localweb-home .biz-icons-section::before,
.localweb-home .biz-icons-section::after,
.home .biz-icons-section::before,
.home .biz-icons-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(40px, 7vw, 88px);
    z-index: 4;
    pointer-events: none;
}
.localweb-home .biz-icons-section::before,
.home .biz-icons-section::before {
    left: 0;
    background: linear-gradient(to right, var(--lr-bg) 18%, rgba(247, 247, 249, 0.55) 62%, transparent 100%);
}
.localweb-home .biz-icons-section::after,
.home .biz-icons-section::after {
    right: 0;
    background: linear-gradient(to left, var(--lr-bg) 18%, rgba(247, 247, 249, 0.55) 62%, transparent 100%);
}
.localweb-home .biz-icons-tracks {
    margin-top: 0;
}
.biz-icons-tracks,
.biz-icons-tracks .biz-icon-row,
.biz-icons-tracks .biz-icon-card,
.biz-icons-tracks .biz-icon-link {
    cursor: grab;
}
.biz-icons-section.is-dragging .biz-icons-tracks,
.biz-icons-section.is-dragging .biz-icons-tracks .biz-icon-row,
.biz-icons-section.is-dragging .biz-icons-tracks .biz-icon-card,
.biz-icons-section.is-dragging .biz-icons-tracks .biz-icon-link {
    cursor: grabbing;
}

/* ===== Biz icons marquee ===== */
.localweb-home .biz-icons-section,
.home .biz-icons-section {
    background: transparent;
}
.localweb-home .biz-icons-label,
.home .biz-icons-label {
    color: var(--lr-muted);
}
.localweb-home .biz-icon-card,
.home .biz-icon-card {
    flex-shrink: 0;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    border-radius: var(--lr-rad-md);
    background: var(--lr-card);
    border: 1px solid var(--lr-line);
    box-shadow: var(--lr-sh);
    text-decoration: none;
    cursor: grab;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.localweb-home .biz-icon-card:hover,
.home .biz-icon-card:hover {
    border-color: var(--lr-line-2);
}
.localweb-home .biz-icon-ico,
.home .biz-icon-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--lr-badge-bg);
    border: 1px solid var(--lr-badge-border);
    box-shadow: var(--lr-badge-shadow);
    flex-shrink: 0;
}
.localweb-home .biz-icon-card svg,
.home .biz-icon-card svg {
    width: 18px;
    height: 18px;
    color: var(--lr-badge-color);
    flex-shrink: 0;
}
.localweb-home .biz-icon-name,
.home .biz-icon-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--lr-ink);
    white-space: nowrap;
    letter-spacing: -0.01em;
    text-align: left;
}
.localweb-home .biz-icons-tracks,
.home .biz-icons-tracks {
    position: relative;
    z-index: 1;
    gap: 10px;
}
.localweb-home .biz-icon-row,
.home .biz-icon-row {
    gap: 12px;
}


/* ===== Cards genéricas → superficie con degradé + sombra + radio grande ===== */
.features-section,
.ex-examples,
.testimonial-wrap,
.faq,
.comparison-section,
.pricing,
.how,
.cta-wrapper,
.footer,
.fn-included,
.fn-pro,
.fn-compare {
    background: var(--lr-bg);
}
/* ===== Anchos unificados — encabezados de sección ===== */
.how-header,
.ex-stack-header,
.features-section-header-wrap,
.features-section-header,
.comparison-header,
.pricing-header,
.section-header {
    max-width: 640px;
    margin: 0 auto 54px;
    text-align: center;
}
.features-section-header-wrap {
    max-width: 1100px;
}
.features-section-header-wrap .features-section-header {
    margin-bottom: 0;
}
.comparison-table-wrap,
.cta-wrapper {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.features-section-header h2 .features-h2-line1,
.features-section-header h2 .features-h2-line2 {
    display: block;
}
.features-section-header h2 .features-h2-line2 {
    margin-top: 6px;
}
.features-section-header h2 .word-rotate {
    text-align: center;
    vertical-align: baseline;
}
.pricing-grid {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.features-grid {
    gap: 18px;
}
.features-col {
    gap: 18px;
}
.how-grid {
    gap: 18px;
}
.pricing-grid {
    gap: 18px;
}
.features-section-header p {
    font-size: 19px;
    color: var(--lr-muted);
}
.features-section-header h2 .word-rotate-text {
    color: var(--lr-brand);
}
.features-section .feature-card .fs-visual {
    display: none;
}
.feature-card,
.how-card,
.pricing-card,
.ex-card-inner,
.testimonial-card,
.fn-grow-card {
    background: var(--lr-card);
    border: 1px solid var(--lr-line);
    border-radius: var(--lr-rad);
    box-shadow: var(--lr-sh);
}
.feature-card h3 {
    line-height: 1.08;
    letter-spacing: -0.03em;
}
.feature-card {
    padding: 30px;
    gap: 0;
    min-height: 248px;
}
.feature-card p,
.how-card > p {
    color: #5C6470;
    margin-bottom: 0;
}
.feature-card-ico,
.how-step-badge,
.features-section .feature-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 17px;
    background: var(--lr-badge-bg);
    border: 1px solid var(--lr-badge-border);
    box-shadow: var(--lr-badge-shadow);
    color: var(--lr-badge-color);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 22px;
    padding: 0;
    align-self: flex-start;
    letter-spacing: 0;
    text-transform: none;
}
.features-section .feature-card-badge {
    display: none;
}
.feature-card-ico svg {
    width: 22px;
    height: 22px;
    color: var(--lr-badge-color);
    stroke: var(--lr-badge-color);
    stroke-width: 1.8;
    flex-shrink: 0;
}
.feature-card h3 {
    margin-bottom: 12px;
}
.how-card .fs-visual,
.how-card .step-mini {
    display: none !important;
}
.how-card h3 {
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-top: 0;
}
.how-card {
    padding: 30px;
}
.features-section-link {
    display: none !important;
}
.features-section-link:hover {
    display: none !important;
}

/* Espaciado y ancho de secciones como preview */
.features-section,
.how,
.ex-examples,
.pricing,
.comparison-section,
.faq,
.cta-wrapper,
.testimonial-wrap {
    padding-top: var(--lr-sp-80);
    padding-bottom: var(--lr-sp-80);
}
.cta-wrapper {
    padding-top: 48px;
    padding-bottom: 48px;
}
.how {
    position: relative;
}
.ex-examples {
    padding-bottom: 0;
}
.features-grid {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}
.how-grid {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    position: relative;
}
/* ===== How ===== */
.how-header p {
    color: var(--lr-muted);
}

/* ===== Why Google (única sección azul) ===== */
.why-google {
    background: transparent;
    padding: 0 24px;
    margin-top: var(--lr-sp-80);
    margin-bottom: var(--lr-sp-80);
    position: static;
}
.why-google-wrap {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-left: auto;
    margin-right: auto;
    background: var(--lr-brand);
    border-radius: var(--lr-rad);
    padding: 64px 72px;
    position: relative;
    overflow: hidden;
}
.why-google-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 45%, rgba(129, 140, 248, 0.25) 100%);
    border-radius: var(--lr-rad);
    pointer-events: none;
    z-index: 0;
}
.why-google-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: var(--lr-rad);
    background-image:
        linear-gradient(rgba(199, 210, 254, 0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(199, 210, 254, 0.35) 1px, transparent 1px);
    background-size: 76px 76px;
    -webkit-mask-image: radial-gradient(circle at 50% 85%, rgba(0, 0, 0, 0.55), transparent 68%);
    mask-image: radial-gradient(circle at 50% 85%, rgba(0, 0, 0, 0.55), transparent 68%);
}
.why-google-wrap > * {
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .why-google-wrap {
        padding: 48px 28px;
    }
}
.why-google::before,
.why-google::after {
    display: none;
}
.why-google-content .problem-badge {
    color: #fafafa;
    background: rgba(255, 255, 255, 0.09);
    border-color: transparent;
    border-radius: 8px;
}
.why-google-visual .fs-float {
    display: none !important;
}

/* ===== Examples (sticky-stack con desvanecido, diseno nuevo) ===== */
.ex-stack {
    max-width: 1100px;
}
.ex-card-inner {
    background: var(--lr-card);
    border: 1px solid var(--lr-line);
    border-radius: var(--lr-rad);
    box-shadow: var(--lr-sh);
    padding: 44px 48px;
}
.ex-card-copy h3 {
    font-weight: 600;
    font-size: clamp(22px, 2.6vw, 30px);
}
.ex-card-copy p {
    color: var(--lr-muted);
}
.ex-card-link {
    border-radius: 12px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--lr-line);
    background: #fff;
    box-shadow: var(--lr-sm), 0 6px 18px -8px rgba(23, 23, 23, 0.14);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.ex-card-link:hover {
    border-color: var(--lr-line-2);
    background: var(--lr-soft);
    box-shadow: var(--lr-sm), 0 10px 24px -10px rgba(23, 23, 23, 0.18);
}
.ex-examples--single .ex-card {
    position: static;
    top: auto;
}
.ex-examples--single .ex-stack {
    padding-bottom: 48px;
}
.localweb-home .ex-card.ex-card--hidden {
    display: none;
}
.ex-browser {
    border-radius: 14px;
    border-color: var(--lr-line);
    background: var(--lr-bg);
    overflow: hidden;
}
.ex-browser-viewport {
    height: 284px;
    overflow: hidden;
    background: #eef0f3;
    position: relative;
    padding: 0;
}
.ex-browser-shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

/* ===== Pricing ===== */
.pricing-header p {
    color: var(--lr-muted);
}
.pricing-billing-toggle {
    background: #eaeaef;
    border-radius: 12px;
    margin-bottom: 0;
    border: none;
}
.pricing-billing-opt {
    color: #71717a;
}
.pricing-billing-opt.is-active {
    background: #fff;
    color: var(--lr-ink);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.pricing-currency-prefix {
    font-weight: 500;
    color: #9ca3af;
}
.pricing-currency {
    gap: 5px;
    letter-spacing: -0.1em;
}
.pricing-currency-symbol {
    color: #1a1a1a;
}
.pricing-amount {
    font-size: 30px;
}
.pricing-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.pricing-save-badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
    background: #dcfce7;
    border: none;
    padding: 5px 11px;
    border-radius: 8px;
    margin-top: 8px;
    margin-bottom: 0;
    width: fit-content;
    line-height: 1.2;
    letter-spacing: 0.01em;
}
.pricing-save-badge[hidden] {
    display: none;
}
.pricing-card--featured {
    position: relative;
}
.pricing-plan-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--lr-brand);
    padding: 5px 12px;
    border-radius: 8px;
    margin-bottom: 0;
    line-height: 1.2;
    white-space: nowrap;
    z-index: 1;
}
.pricing-grid .pricing-card:last-child:not(.pricing-card--featured) {
    border: 1px solid var(--lr-line);
    box-shadow: var(--lr-sh);
    outline: none;
    transform: none;
}
.pricing-period span {
    margin-left: 1px;
}
.pricing-grid {
    overflow: visible;
    padding-top: 12px;
}
.pricing-card {
    overflow: visible;
}
.pricing-cta {
    border-radius: 10px;
    background: var(--lr-brand);
    border-color: var(--lr-brand);
}
.pricing-cta:hover {
    background: var(--lr-brand-2);
    border-color: var(--lr-brand-2);
}
.pricing-foot {
    color: var(--lr-muted);
}
.pricing-features li svg {
    stroke: var(--lr-body);
}

/* ===== Testimonial (oculto temporalmente — HTML intacto) ===== */
.testimonial-wrap {
    display: none !important;
}
.testimonial-card {
    border-radius: var(--lr-rad);
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-body {
    color: var(--lr-muted);
}
.testimonial-quote {
    font-size: clamp(26px, 3.5vw, 32px);
}

/* ===== Comparison ===== */
.comparison-header p {
    color: var(--lr-muted);
}
.comparison-table-wrap {
    border: 1px solid var(--lr-line);
    border-radius: var(--lr-rad);
    box-shadow: var(--lr-sh);
    background: var(--lr-soft);
    overflow: clip;
}
.comparison-table-inner {
    background: #fff;
}
.comparison-table {
    border: none;
    border-radius: 0;
    background: #fff;
}
/* Sticky en thead completo: fondo suave tapa esquinas al scrollear */
.comparison-table thead {
    position: sticky;
    top: 72px;
    z-index: 10;
    background: var(--lr-soft);
    box-shadow: 0 1px 0 var(--lr-line);
}
.comparison-table thead th {
    position: static;
    top: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 26px 24px;
    color: var(--lr-ink);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
}
.comparison-table thead th:first-child,
.comparison-table thead th:last-child {
    border-radius: 0;
}
.cmp-th-pick {
    display: none !important;
}
/* Columnas competidor: sin fondo gris del base */
.comparison-table thead th.col-competitor {
    background: transparent;
}
/* Check y cruz tipograficos — mas finos y modernos que circulos/SVG */
.cmp-check {
    display: inline;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    color: var(--lr-ok);
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
}
.cmp-check svg {
    display: none;
}
.cmp-check::before {
    content: '✓';
}
.cmp-cross {
    display: inline;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    color: var(--lr-muted);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
}
.cmp-cross svg {
    display: none;
}
.cmp-cross::before {
    content: '✗';
}
/* Filas: separadores suaves, sin fondos ni bordes por celda */
.comparison-table tbody tr {
    background: transparent;
}
.comparison-table tbody td {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--lr-line);
    padding: 22px 24px;
    color: var(--lr-body);
}
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}
.comparison-table tbody td:first-child {
    color: var(--lr-ink);
}
/* Columna Localweb: resaltada por tinte indigo + acento superior, sin bordes-caja */
.comparison-table thead th.col-localweb {
    background: var(--lr-soft-indigo);
    border: none;
    box-shadow: inset 0 3px 0 var(--lr-brand);
}
.comparison-table tbody td.col-lw,
.comparison-table tfoot td.col-lw {
    background: var(--lr-soft-indigo);
    border: none;
    border-bottom: 1px solid var(--lr-line);
}
.comparison-table tbody tr:last-child td.col-lw {
    border-bottom: none;
}
.comparison-table tbody tr:hover td {
    background: var(--lr-soft-indigo-2);
}
.comparison-table tbody tr:hover td.col-lw {
    background: var(--lr-soft-indigo-3);
}

/* ===== FAQ ===== */
.faq-wrap {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}
.faq-side {
    position: static;
    top: auto;
    padding-right: 0;
    text-align: center;
    max-width: 640px;
    width: 100%;
    margin: 0 auto 54px;
}
.faq-side h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--lr-ink);
    margin-bottom: 16px;
}
.faq-side p {
    font-size: 19px;
    line-height: 1.6;
    color: var(--lr-muted);
    margin-bottom: 0;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.faq-item {
    width: 100%;
    border: 1px solid var(--lr-line);
    border-radius: var(--lr-rad-md);
    background: var(--lr-card);
    box-shadow: var(--lr-sh);
    overflow: hidden;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item summary {
    padding: 22px 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    font-weight: 500;
    font-size: 16px;
    color: var(--lr-ink);
}
.faq-icon {
    color: var(--lr-muted);
    font-size: 20px;
    font-weight: 400;
    transition: transform 0.45s var(--reveal-ease);
}
.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    color: var(--lr-muted);
    font-weight: 400;
}
.faq-answer {
    padding: 0 24px 24px;
    max-width: none;
    width: 100%;
    font-size: 15px;
    line-height: 1.65;
    color: var(--lr-body);
    box-sizing: border-box;
}
.faq-item.is-open summary {
    padding-bottom: 14px;
}

/* ===== CTA final (primary, grid, badges) ===== */
.cta-wrapper {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    overflow: visible;
}
.cta-section {
    position: relative;
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    background: linear-gradient(135deg, var(--lr-brand) 0%, #5B52E8 48%, var(--lr-brand-2) 100%);
    border: none;
    border-radius: var(--lr-rad);
    box-shadow: 0 24px 64px -24px rgba(79, 70, 229, 0.55);
    padding: 64px 36px;
    text-align: center;
}
.cta-section > * {
    position: relative;
    z-index: 1;
}
.cta-section::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    inset: 0;
    border-radius: inherit;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.17) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.17) 1px, transparent 1px);
    background-size: 76px 76px;
    -webkit-mask-image: radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.68), transparent 74%);
    mask-image: radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.68), transparent 74%);
    opacity: 0.95;
    pointer-events: none;
}
.cta-section::after {
    display: none;
}
.cta-section h2 {
    color: #fff;
    margin-bottom: 12px;
}
.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #fff;
    color: var(--lr-ink);
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 10px 28px -10px rgba(15, 23, 42, 0.2);
    text-decoration: none;
}
.cta-section .btn-cta::after {
    content: none;
    display: none;
}
.cta-section .btn-cta:hover {
    background: rgba(255, 255, 255, 0.96);
    color: var(--lr-ink);
}
.cta-wrapper.is-inview {
    margin-bottom: 4rem;
}
.cta-section-floats {
    display: none;
}
@media (min-width: 921px) {
    .cta-section-floats {
        display: block;
        position: absolute;
        inset: -20px -56px;
        pointer-events: none;
        z-index: 2;
    }
    .cta-float {
        position: absolute;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: var(--lr-rad-md);
        background: var(--lr-card);
        border: 1px solid var(--lr-line);
        box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.22), 0 6px 16px -8px rgba(15, 23, 42, 0.12);
        white-space: nowrap;
        overflow: hidden;
    }
    .cta-float::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 18px;
        border-radius: var(--lr-rad-md) var(--lr-rad-md) 0 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.28) 52%, transparent 100%);
        pointer-events: none;
        z-index: 2;
    }
    .cta-float .biz-icon-ico,
    .cta-float .biz-icon-name {
        position: relative;
        z-index: 1;
    }
    .cta-float .biz-icon-ico {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--lr-badge-bg);
        border: 1px solid var(--lr-badge-border);
        box-shadow: var(--lr-badge-shadow);
        flex-shrink: 0;
    }
    .cta-float .biz-icon-ico svg {
        width: 18px;
        height: 18px;
        color: var(--lr-badge-color);
    }
    .cta-float .biz-icon-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--lr-ink);
        letter-spacing: -0.01em;
    }
    .cta-float--1 {
        top: 14%;
        left: -1%;
        transform: rotate(-4deg);
    }
    .cta-float--2 {
        bottom: 16%;
        right: 0;
        transform: rotate(3deg);
    }
}

/* ===== Footer ===== */
.footer {
    border-top: 1px solid var(--lr-line);
}
.footer-tagline,
.footer-col a {
    color: var(--lr-muted);
}
.footer-col a:hover {
    color: var(--lr-ink);
}
.footer-col .btn-footer {
    background: var(--lr-brand);
    border-radius: 10px;
}
.footer-col .btn-footer:hover {
    background: var(--lr-brand-2);
}
.footer-bottom {
    border-top-color: var(--lr-line);
}

/* ===== Funciones (fn-*) ===== */
.localweb-funciones .hero {
    position: relative;
    padding: 60px 24px 40px;
    overflow: visible;
    display: block;
    min-height: auto;
    background: var(--lr-bg) !important;
    background-image: none !important;
}
.localweb-funciones .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 560px;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(680px 320px at 50% -80px, rgba(233, 233, 240, 0.72), transparent 72%);
}
.localweb-funciones .hero::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: -80px 0 20px;
    background-image:
        linear-gradient(rgba(205, 205, 212, 0.78) 1px, transparent 1px),
        linear-gradient(90deg, rgba(205, 205, 212, 0.78) 1px, transparent 1px);
    background-size: 76px 76px;
    -webkit-mask-image: radial-gradient(circle at 50% 22%, rgba(0, 0, 0, 0.7), transparent 72%);
    mask-image: radial-gradient(circle at 50% 22%, rgba(0, 0, 0, 0.7), transparent 72%);
    opacity: 0.78;
    pointer-events: none;
}
.localweb-funciones .hero-inner {
    min-height: auto;
    padding: 0 24px;
}
.localweb-funciones .hero-content-wrap {
    position: relative;
    width: 100%;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.localweb-funciones .hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 0;
}
.localweb-funciones .hero-title {
    max-width: 780px;
}
.localweb-funciones .hero-subtitle {
    margin-bottom: 0;
    max-width: 640px;
}
.localweb-funciones .hero-buttons,
.localweb-funciones .hero-content .btn-hero-primary {
    margin-top: 28px;
}
.localweb-funciones .section-header {
    max-width: 640px;
    margin: 0 auto 54px;
    text-align: center;
}
.localweb-funciones .section-header p {
    color: var(--lr-muted);
    font-size: 19px;
}
.fn-included {
    background: var(--lr-bg);
}
.fn-spec-wrap,
.fn-compare-wrap {
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid var(--lr-line);
    border-radius: var(--lr-rad);
    box-shadow: var(--lr-sh);
    background: var(--lr-soft);
    overflow: clip;
}
.fn-spec-table,
.fn-compare-table {
    width: 100%;
    border: none;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}
.fn-spec-table thead,
.fn-compare-table thead {
    position: sticky;
    top: 72px;
    z-index: 10;
    background: var(--lr-soft);
    box-shadow: 0 1px 0 var(--lr-line);
}
.fn-spec-table thead th,
.fn-compare-table thead th {
    padding: 22px 24px;
    background: transparent;
    border-bottom: 1px solid var(--lr-line);
    color: var(--lr-ink);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
    vertical-align: middle;
    box-shadow: none;
}
.fn-spec-table thead th:last-child,
.fn-compare-table thead th:nth-child(2),
.fn-compare-table thead th:nth-child(3) {
    text-align: center;
}
.fn-spec-table thead th.fn-spec-col-status,
.fn-compare-table thead th:last-child {
    text-align: center;
}
.localweb-funciones .fn-spec-table thead th.fn-spec-col-status,
.localweb-funciones .fn-compare-table thead th:last-child {
    background: transparent;
    box-shadow: none;
}
.fn-spec-table tbody td,
.fn-compare-table tbody td {
    padding: 22px 24px;
    border-bottom: 1px solid var(--lr-line);
    vertical-align: middle;
    color: var(--lr-body);
    background: #fff;
}
.fn-spec-table tbody td.fn-spec-status,
.fn-compare-table tbody td:last-child,
.fn-compare-table tfoot td:last-child {
    text-align: center;
}
.localweb-funciones .fn-spec-table tbody td.fn-spec-status,
.localweb-funciones .fn-compare-table tbody td:last-child,
.localweb-funciones .fn-compare-table tfoot td:last-child {
    background: #fff;
}
.fn-compare-table tbody td:nth-child(2),
.fn-compare-table tfoot td:nth-child(2) {
    text-align: center;
    background: #fff;
}
.fn-spec-table tbody tr:last-child td,
.fn-compare-table tbody tr:last-child td {
    border-bottom: none;
}
.fn-spec-table tbody tr:hover td,
.fn-compare-table tbody tr:hover td {
    background: var(--lr-soft);
}
.localweb-funciones .fn-spec-table tbody tr:hover td.fn-spec-status,
.localweb-funciones .fn-compare-table tbody tr:hover td:last-child {
    background: var(--lr-soft);
}
.fn-spec-name {
    color: var(--lr-ink);
    font-weight: 500;
}
.fn-spec-desc {
    color: var(--lr-body);
}
.fn-spec-status {
    text-align: center;
}
.fn-compare-table tfoot td {
    padding: 22px 24px;
    border-top: 1px solid var(--lr-line);
    background: var(--lr-soft);
    text-align: center;
    vertical-align: middle;
}
.fn-compare-table tfoot td:first-child {
    text-align: left;
    background: #fff;
}
.fn-pro {
    background: var(--lr-bg);
}
.fn-pro-inner {
    max-width: 940px;
    margin: 0 auto;
}
.fn-grow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 940px;
    margin: 0 auto;
    align-items: start;
}
.fn-grow-grid .features-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.fn-grow-grid .features-col:last-child {
    margin-top: 60px;
}
.fn-grow-card {
    min-height: 0;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.fn-grow-card h3 {
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--lr-ink);
}
.fn-grow-card p {
    color: #5C6470;
    margin-bottom: 0;
}
.fn-grow-video-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    width: 100%;
    gap: 6px;
    margin-top: 20px;
    padding: 9px 14px;
    border-radius: 10px;
    border-color: var(--lr-line-2);
    background: #fff;
    color: var(--lr-ink);
}
.fn-grow-video-btn:hover {
    border-color: var(--lr-dim);
    background: var(--lr-soft);
}
.fn-compare {
    background: var(--lr-bg);
}
.fn-compare-table thead th .fn-compare-plan-name {
    text-transform: none;
    letter-spacing: -0.03em;
}
.fn-compare-table tbody tr.fn-compare-cat td {
    background: var(--lr-soft);
    color: var(--lr-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 24px 10px;
    text-align: left;
}
.fn-compare-plan-name {
    color: var(--lr-ink);
}
.fn-compare-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}
.fn-compare-icon svg {
    display: none;
}
.fn-compare-icon--yes::before {
    content: '✓';
    color: var(--lr-ok);
}
.fn-compare-icon--no::before {
    content: '✗';
    color: var(--lr-muted);
}
.fn-compare-num {
    color: var(--lr-ink);
    font-weight: 600;
}
@media (max-width: 900px) {
    .fn-grow-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .fn-grow-grid .features-col:last-child {
        margin-top: 0;
    }
}

/* ===== Blog ===== */
.localweb-blog-card {
    border-radius: var(--lr-rad);
    border-color: var(--lr-line);
    box-shadow: var(--lr-sm);
}
.localweb-blog-card:hover {
    box-shadow: var(--lr-sh);
}
.localweb-blog-card-title {
    font-weight: 600;
}
.localweb-single-related-title,
.localweb-single-title {
    font-weight: 700;
}

/* ===== Landings (hero: texto arriba, imagen abajo) ===== */
.localweb-landing .hero {
    position: relative;
    padding: 44px 0 48px;
    min-height: auto;
    display: block;
    align-items: stretch;
    background: var(--lr-bg) !important;
    background-image: none !important;
    overflow: visible;
}
.localweb-landing .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 560px;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(680px 320px at 50% -80px, rgba(233, 233, 240, 0.72), transparent 72%);
}
.localweb-landing .hero::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: -80px 0 20px;
    background-image:
        linear-gradient(rgba(205, 205, 212, 0.78) 1px, transparent 1px),
        linear-gradient(90deg, rgba(205, 205, 212, 0.78) 1px, transparent 1px);
    background-size: 76px 76px;
    -webkit-mask-image: radial-gradient(circle at 50% 22%, rgba(0, 0, 0, 0.7), transparent 72%);
    mask-image: radial-gradient(circle at 50% 22%, rgba(0, 0, 0, 0.7), transparent 72%);
    opacity: 0.78;
    pointer-events: none;
}
.localweb-landing .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 40px;
    gap: 32px;
    position: relative;
    z-index: 1;
}
.localweb-landing .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 640px;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}
.localweb-landing .hero-visual {
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 1;
}
.localweb-landing .hero-visual img {
    width: 100%;
    height: auto;
    max-height: 480px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    border-radius: var(--lr-rad-md);
    box-shadow: var(--lr-sh);
    display: block;
}
.localweb-landing .hero-seo-label {
    display: inline-block;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--lr-brand);
    margin: 0 0 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.localweb-landing .hero-title,
.localweb-landing .hero-display-title {
    font-size: clamp(34px, 4.5vw, 50px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--lr-ink);
    margin: 0 0 16px;
}
.localweb-landing .hero-subtitle {
    color: var(--lr-muted);
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 640px;
}
.localweb-landing .hero-buttons {
    justify-content: flex-start;
    margin-bottom: 20px;
}
.localweb-landing .trust-text {
    margin-top: 0;
}
.localweb-landing .btn-hero-primary,
.localweb-landing .btn-hero-secondary {
    padding: 14px 26px;
    min-width: 170px;
    justify-content: center;
    font-size: 15px;
    border-radius: 12px;
}
.localweb-landing .btn-hero-primary {
    background: var(--lr-brand);
    box-shadow: none;
}
.localweb-landing .btn-hero-primary:hover {
    background: var(--lr-brand-2);
}
.localweb-landing .btn-hero-secondary {
    border-color: var(--lr-line-2);
    background: #fff;
    box-shadow: var(--lr-sm);
}
.localweb-landing .features-section-header h2 .word-rotate {
    display: none;
}
@media (max-width: 800px) {
    .localweb-landing .feature-card--diseno,
    .localweb-landing .feature-card--catalog { order: 1; }
    .localweb-landing .feature-card--google { order: 2; }
    .localweb-landing .feature-card--whatsapp { order: 3; }
    .localweb-landing .feature-card--confianza { order: 4; }
}
@media (min-width: 769px) {
    .localweb-landing .hero-inner {
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }
    .localweb-landing .hero-content {
        flex: 1 1 0;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .localweb-landing .hero-visual {
        flex: 0 0 420px;
        max-width: 480px;
    }
    .localweb-landing .hero-visual img {
        max-height: 480px;
        aspect-ratio: 1 / 1.2;
        object-fit: cover;
    }
}
@media (max-width: 768px) {
    .localweb-landing .hero-inner {
        padding: 0 34px 60px;
        gap: 24px;
    }
    .localweb-landing .hero-content {
        padding-top: 8px;
        max-width: none;
    }
    .localweb-landing .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        width: auto;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
    .localweb-landing .btn-hero-primary,
    .localweb-landing .btn-hero-secondary {
        width: auto;
    }
    .localweb-landing .hero-visual img {
        max-height: 280px;
        aspect-ratio: 4 / 3;
    }
}

/* ===== Páginas simples / legal / 404 / contacto ===== */
.legal-content h1 {
    color: var(--lr-ink);
    font-weight: 600;
}
.legal-content h2 {
    font-weight: 600;
}
.section-header h1 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--lr-ink);
    margin: 0 0 12px;
}
.localweb-rubros-index {
    padding: calc(var(--header-offset) + 24px) 24px 80px;
    max-width: 940px;
    margin: 0 auto;
    background: var(--lr-bg);
}
.localweb-rubros-index .section-header {
    margin-bottom: 36px;
}
.localweb-rubros-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
}
.localweb-rubros-grid a {
    display: block;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--lr-line);
    border-radius: var(--lr-rad-md);
    color: var(--lr-ink);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.35;
    text-decoration: none;
    box-shadow: var(--lr-sm);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.localweb-rubros-grid a:hover {
    color: var(--lr-brand);
    border-color: var(--lr-line-2);
    box-shadow: var(--lr-sh);
    text-decoration: none;
}
.legal-meta {
    border-bottom-color: var(--lr-line);
}
.localweb-page-main {
    padding-top: calc(var(--header-offset) + 24px);
}
.localweb-page-inner h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--lr-ink);
    margin-bottom: 12px;
}
.localweb-page-inner a {
    color: var(--lr-brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.localweb-page-inner a:hover {
    color: var(--lr-brand-2);
}
.contact-main {
    max-width: 640px;
    margin: 0 auto;
    padding: calc(var(--header-offset) + 32px) 24px 80px;
    background: var(--lr-bg);
}
.contact-main h1 {
    font-size: clamp(30px, 4.5vw, 44px);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--lr-ink);
    margin-bottom: 12px;
}
.contact-intro {
    font-size: 18px;
    line-height: 1.6;
    color: var(--lr-muted);
    margin-bottom: 28px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--lr-line);
    border-radius: var(--lr-rad);
    box-shadow: var(--lr-sh);
}
.contact-form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--lr-ink);
    margin-bottom: 8px;
}
.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid var(--lr-line-2);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    color: var(--lr-ink);
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: var(--lr-brand);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.14);
}
.contact-form-field textarea {
    resize: vertical;
    min-height: 140px;
}
.contact-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.contact-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    background: var(--lr-brand);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}
.contact-form-submit:hover:not(:disabled) {
    background: var(--lr-brand-2);
}
.contact-form-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
.contact-form-message {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}
.contact-form-message--success {
    background: #dcfce7;
    color: #166534;
}
.contact-form-message--error {
    background: #fee2e2;
    color: #991b1b;
}

@media (max-width: 640px) {
    .localweb-rubros-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .header {
        transition: none;
    }
}

@media (max-width: 1024px) {
    .hero .hero-title {
        font-size: clamp(36px, 7vw, 56px);
    }
}

@media (max-width: 768px) {
    .hero-inner,
    .localweb-home .hero-inner,
    .home .hero-inner,
    .localweb-funciones .hero-inner {
        padding: 0 34px 60px;
    }
    .hero .hero-title {
        font-size: clamp(32px, 8vw, 42px);
    }
}

@media (max-width: 920px) {
    .how-header,
    .how-header-wrap,
    .ex-stack-header,
    .features-section-header-wrap,
    .features-section-header,
    .comparison-header,
    .pricing-header,
    .section-header,
    .faq-side {
        margin: 0 auto 40px;
    }
    .features-section-header-wrap .features-section-header {
        margin-bottom: 0;
    }
    .faq-wrap {
        max-width: 760px;
        padding-left: 0;
        padding-right: 0;
    }
    .faq-side {
        position: static;
        padding-right: 0;
        text-align: center;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 72px 16px;
    }

    /* Wrapper sin caja: cada feature es su propia tarjeta */
    .comparison-table-wrap {
        max-width: 560px;
        margin: 0 auto;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        overflow: visible;
    }

    .comparison-table-inner {
        background: transparent;
    }

    /* La tabla no aporta fondo: cada feature es su propia tarjeta */
    .comparison-table {
        background: transparent;
    }

    .comparison-table tbody {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* Tarjeta por feature (mismo lenguaje visual que el resto: radio + sombra del sistema) */
    .comparison-table tbody tr {
        display: block;
        background: #fff;
        border: 1px solid var(--lr-line);
        border-radius: var(--lr-rad-md);
        overflow: hidden;
        box-shadow: var(--lr-sh);
    }

    .comparison-table tbody tr:last-child {
        border-bottom: 1px solid var(--lr-line);
    }

    .comparison-table tbody tr:hover td:not(:first-child) {
        background: #fff;
    }

    .comparison-table tbody tr:hover td:first-child {
        background: #fff;
    }

    .comparison-table tbody tr:hover td.col-lw {
        background: var(--lr-soft-indigo);
    }

    /* Encabezado de la tarjeta = nombre del feature (limpio, sin relleno gris) */
    .comparison-table tbody td:first-child {
        display: block;
        font-size: 15px;
        font-weight: 700;
        color: var(--lr-ink);
        line-height: 1.4;
        letter-spacing: -0.01em;
        padding: 15px 18px 13px;
        background: #fff;
        border-bottom: 1px solid var(--lr-line);
    }

    /* Filas de valores: label a la izquierda, marca a la derecha */
    .comparison-table tbody td:not(:first-child) {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 13px 18px;
        background: #fff;
        border: none;
        border-bottom: 1px solid var(--lr-line);
    }

    .comparison-table tbody tr td:last-child {
        border-bottom: none;
    }

    .comparison-table tbody td:not(:first-child)::before {
        font-size: 14px;
        font-weight: 500;
        color: var(--lr-body);
        letter-spacing: -0.01em;
    }

    /* Localweb es lo único destacado: label de marca + fila con tinte índigo */
    .comparison-table tbody td:nth-child(2)::before {
        content: "Localweb";
        color: var(--lr-brand);
        font-weight: 700;
    }

    .comparison-table tbody td.col-lw {
        background: var(--lr-soft-indigo);
    }

    .cmp-check {
        color: var(--lr-ok);
        font-size: 19px;
        font-weight: 700;
    }

    .cmp-cross {
        color: var(--lr-muted);
        font-size: 16px;
    }

    .pricing-grid {
        gap: 40px;
    }
}