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

        :root {
            --yellow: #F5C400;
            --yellow-hover: #e0b300;
            --navy: #1a2540;
            --navy-dark: #0f1929;
            --black: #1a1a1a;
            --gray: #4b5563;
            --gray-light: #6b7280;
            --border: #e5e7eb;
            --bg-soft: #f9fafb;
            --bg-page: #ECEEF2;
            --white: #ffffff;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', Arial, sans-serif;
            background: var(--bg-page);
            color: var(--black);
            font-size: 16px;
            line-height: 1.5;
        }

        a { text-decoration: none; color: inherit; }

        /* ── NAVBAR ── */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            background: var(--white);
            border-bottom: 1px solid var(--border);
            transition: border-color 0.3s;
            padding: 0 40px;
        }
        .nav.scrolled { border-bottom: 2px solid var(--yellow); }
        .nav-inner {
            max-width: 1200px; margin: 0 auto;
            display: flex; align-items: center;
            justify-content: space-between; height: 64px;
        }
        .nav-logo {
            display: flex; align-items: center; gap: 8px;
            font-weight: 800; font-size: 20px; letter-spacing: -0.02em;
        }
        .nav-logo-bar { width: 6px; height: 28px; background: var(--yellow); }
        .nav-logo-dot { color: var(--navy); }
        .nav-links { display: flex; align-items: center; gap: 28px; }
        .nav-link {
            font-size: 14px; font-weight: 500; color: var(--black);
            transition: color 0.15s;
        }
        .nav-link:hover { color: var(--navy); text-decoration: underline; }
        .nav-btn-dark {
            font-size: 13px; font-weight: 700;
            background: var(--navy); color: var(--white);
            padding: 9px 20px; transition: background 0.15s;
        }
        .nav-btn-dark:hover { background: var(--navy-dark); }
        .nav-btn-yellow {
            font-size: 13px; font-weight: 700;
            background: var(--yellow); color: var(--black);
            padding: 9px 20px; transition: background 0.15s;
        }
        .nav-btn-yellow:hover { background: var(--yellow-hover); }
        .hidden { display: none !important; }

        /* ── DROPDOWNS ── */
        .nav-dropdown-menu.hidden { display:none!important }
        .nav-dropdown-item {
            display:grid; grid-template-columns:1fr;
            padding:10px 16px; text-decoration:none; color:#1a1a1a;
            border-bottom:1px solid #f3f4f6; transition:background 0.1s;
        }
        .nav-dropdown-item:hover { background:#f9fafb; }
        .nav-dropdown-item strong { font-size:13px; font-weight:600; display:block; }
        .nav-dropdown-item span { font-size:12px; color:#6b7280; margin-top:1px; display:block; }
        .nav-dropdown-item--soon { opacity:0.5; pointer-events:none; }

        /* ── HERO ── */
        .hero {
            margin-top: 64px;
            position: relative; overflow: hidden;
            min-height: 520px; display: flex; align-items: center;
        }
        .hero-bg {
            position: absolute; inset: 0;
            background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80');
            background-size: cover; background-position: center 40%;
        }
        .hero-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(90deg, rgba(255,255,255,1) 48%, rgba(255,255,255,0.5) 72%, rgba(255,255,255,0) 100%);
        }
        .hero-inner {
            position: relative; max-width: 1200px;
            margin: 0 auto; padding: 80px 40px; width: 100%;
        }
        .hero-content { max-width: 540px; }
        .hero-label {
            font-size: 11px; font-weight: 600;
            letter-spacing: 0.12em; text-transform: uppercase;
            color: var(--gray-light); margin-bottom: 16px;
        }
        .hero-title {
            font-size: clamp(26px, 3.2vw, 38px);
            font-weight: 800; line-height: 1.1;
            letter-spacing: -0.025em; color: var(--black);
            margin-bottom: 8px;
        }
        .yellow-line { width: 40px; height: 3px; background: var(--yellow); margin: 14px 0 22px; }
        .hero-desc {
            font-size: 16px; line-height: 1.7;
            color: var(--gray); margin-bottom: 32px; max-width: 460px;
        }
        .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
        .btn-yellow {
            font-size: 14px; font-weight: 700;
            background: var(--yellow); color: var(--black);
            padding: 12px 28px; border: none; cursor: pointer;
            transition: background 0.15s; display: inline-block;
        }
        .btn-yellow:hover { background: var(--yellow-hover); }
        .btn-outline {
            font-size: 14px; font-weight: 700;
            background: transparent; color: var(--black);
            padding: 11px 28px; border: 2px solid var(--black);
            cursor: pointer; transition: all 0.15s; display: inline-block;
        }
        .btn-outline:hover { background: var(--black); color: var(--white); }

        /* ── COMPLIANCE STRIP ── */
        .strip {
            background: var(--navy); padding: 13px 40px;
        }
        .strip-inner {
            max-width: 1200px; margin: 0 auto;
            display: flex; align-items: center;
            justify-content: center; gap: 20px; flex-wrap: wrap;
        }
        .strip-badge {
            font-size: 12px; font-weight: 700;
            color: var(--yellow); letter-spacing: 0.08em;
        }
        .strip-sep { color: rgba(255,255,255,0.25); font-size: 18px; }
        .strip-text { font-size: 13px; color: #e5e7eb; }
        .strip-text strong { color: var(--yellow); }

        /* ── STATS ── */
        .stats-section { padding: 64px 40px; background: #E3E6EC; }
        .stats-inner { max-width: 1200px; margin: 0 auto; }
        .stats-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
        }
        .stat-item {
            padding: 0 40px 0 0;
            border-right: 1px solid var(--border);
        }
        .stat-item:first-child { padding-left: 0; }
        .stat-item:last-child { border-right: none; }
        .stat-num {
            font-size: 44px; font-weight: 800;
            color: var(--black); letter-spacing: -0.03em; line-height: 1;
        }
        .stat-label { font-size: 13px; color: var(--gray-light); margin-top: 8px; font-weight: 500; }

        /* ── SECTION HEADER ── */
        .section-header { margin-bottom: 48px; }
        .section-label {
            font-size: 11px; font-weight: 600;
            letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-light);
        }
        .section-title {
            font-size: clamp(24px, 3vw, 38px);
            font-weight: 800; letter-spacing: -0.02em;
            color: var(--black); max-width: 520px;
        }

        /* ── APPS ── */
        .apps-section { padding: 88px 40px; background: var(--white); }
        .apps-inner { max-width: 1200px; margin: 0 auto; }
        .apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
        .app-card {
            background: var(--white); border: 1px solid var(--border);
            padding: 32px; transition: border-color 0.2s, box-shadow 0.2s;
            position: relative;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        }
        .app-card:hover {
            border-color: var(--yellow);
            box-shadow: 0 4px 20px rgba(245,196,0,0.12);
        }
        .app-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
        .app-icon-box { display: none; }
        .app-badge {
            font-size: 10px; font-weight: 700;
            padding: 4px 10px; letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .badge-live { background: #16a34a; color: #fff; }
        .badge-free { background: var(--yellow); color: var(--black); }
        .badge-dev { background: #e5e7eb; color: var(--gray-light); }
        .badge-proximo { background: linear-gradient(135deg, #64748b, #475569); color: #fff; }
        .app-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
        .app-sub { font-size: 12px; color: var(--gray-light); margin-bottom: 10px; font-family: monospace; }
        .app-desc { font-size: 14px; line-height: 1.6; color: var(--gray); }
        .app-link {
            font-size: 13px; font-weight: 700; color: var(--navy);
            display: inline-flex; align-items: center; gap: 6px;
            margin-top: 18px; border-bottom: 2px solid var(--yellow);
            padding-bottom: 2px; transition: color 0.15s;
        }
        .app-link:hover { color: var(--black); }

        /* ── FEATURES ── */
        .features-section { background: var(--navy); padding: 88px 40px; }
        .features-inner {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start;
        }
        .features-left { position: sticky; top: 100px; }
        .features-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); }
        .features-title { font-size: clamp(24px, 2.5vw, 36px); font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1.2; }
        .features-desc { font-size: 15px; line-height: 1.7; color: #93a3b8; margin-top: 20px; }
        .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
        .feature-item {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 28px 0;
        }
        .feature-icon { font-size: 24px; }
        .feature-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
        .feature-desc { font-size: 14px; line-height: 1.65; color: #93a3b8; }

        /* ── PRECIOS ── */
        .prices-section { padding: 88px 40px; border-bottom: 1px solid var(--border); }
        .prices-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
        .price-card { padding: 40px 36px; border: 1px solid var(--border); position: relative; }
        .price-card.highlight { background: var(--navy); border-color: var(--navy); }
        .price-card.highlight::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--yellow); }
        .price-who { font-size: 13px; color: var(--gray-light); margin-bottom: 16px; }
        .price-card.highlight .price-who { color: #93a3b8; }
        .price-num { font-size: 52px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--black); }
        .price-card.highlight .price-num { color: #fff; }
        .price-period { font-size: 13px; font-weight: 600; color: var(--gray-light); margin-top: 8px; }
        .price-card.highlight .price-period { color: var(--yellow); }

        /* ── CTA ── */
        .cta-section { padding: 88px 40px; background: var(--navy); }
        .cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
        .cta-title { font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 18px; color: #fff; }
        .cta-highlight { background: var(--yellow); padding: 0 6px; }
        .cta-desc { font-size: 16px; line-height: 1.7; color: #b0bec5; margin-bottom: 36px; }
        .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

        /* footer via partials/footer.blade.php */

        /* ── HAMBURGER ── */
        .hamburger-btn {
            display: none; flex-direction: column; gap: 5px;
            background: none; border: none; cursor: pointer; padding: 8px;
        }
        .hamburger-btn span {
            width: 24px; height: 2px; background: var(--navy); display: block;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .nav { padding: 0 16px; }
            .hamburger-btn { display: flex !important; }
            .nav-links {
                display: none; flex-direction: column; gap: 12px;
                position: absolute; top: 64px; left: 0; right: 0;
                background: var(--white); padding: 20px 16px;
                border-bottom: 3px solid var(--yellow); z-index: 999;
                box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            }
            .nav-links.open { display: flex !important; }
            .nav-links .nav-link { display: block !important; font-size: 15px; padding: 8px 0; }
            .nav-links .nav-btn-dark, .nav-links .nav-btn-yellow { text-align: center; display: block; }
            .nav-links .nav-dropdown { width: 100%; }
            .nav-dropdown-menu { position: static !important; box-shadow: none !important; border: none !important; border-left: 3px solid var(--yellow) !important; margin: 8px 0 !important; }
            .hero-overlay {
                background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.85) 100%);
            }
            .hero-inner { padding: 48px 16px; }
            .hero-title { font-size: clamp(28px, 7vw, 42px); }
            .hero-ctas { flex-direction: column; }
            .hero-ctas a, .hero-ctas .btn-yellow, .hero-ctas .btn-outline { width: 100%; text-align: center; }
            .strip { padding: 13px 16px; }
            .strip-inner { gap: 8px; }
            .strip-sep { display: none; }
            .stats-section { padding: 48px 16px; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
            .stat-item { border-right: none; padding: 0 !important; }
            .apps-section, .features-section, .prices-section, .cta-section { padding: 60px 16px; }
            .apps-grid { grid-template-columns: 1fr 1fr; }
            .features-inner { grid-template-columns: 1fr; gap: 40px; }
            .features-left { position: static; }
            .features-grid { grid-template-columns: 1fr; }
            .prices-grid-3 { grid-template-columns: 1fr !important; }
            .price-card.highlight { order: -1; }
            /* footer responsive via partials/footer.blade.php */
        }
        @media (max-width: 480px) {
            .apps-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
            .cta-btns { flex-direction: column; }
            .cta-btns a { text-align: center; width: 100%; }
        }

        /* Chat widget styles loaded from partial */
