/* Styles from head */
:root {
            --blue-900: #0B1B4A;
            --blue-800: #0F2A74;
            --blue-700: #1F3C88;
            --blue-600: #2B56C7;

            --green-500: #2ECC71;
            --green-600: #22B862;

            --text: #ffffff;
            --muted: rgba(255, 255, 255, .85);
            --muted2: rgba(255, 255, 255, .72);

            --card: rgba(255, 255, 255, .08);
            --stroke: rgba(255, 255, 255, .14);

            --radius: 18px;
            --shadow: 0 24px 60px rgba(0, 0, 0, .35);
            --shadowSoft: 0 14px 30px rgba(0, 0, 0, .25);

            --max: 1200px;

            --pc-blue: #1F3C88;
            --pc-blue2: #0B1F5C;
            --pc-cyan: #46D6FF;
            --pc-green: #2ECC71;
            --pc-text: #e2e8f0;
            --pc-muted: #94a3b8;
            --pc-border: rgba(255, 255, 255, 0.08);
            --pc-card: rgba(255, 255, 255, 0.04);
            --pc-soft: #0c1a30;
            --pc-shadow: 0 14px 30px rgba(0, 0, 0, .25);
            --pc-radius: 18px;
            --pc-max: 1100px;
        }

        * {
            box-sizing: border-box
        }

        html,
        body {
            height: 100%
        }

        body {
            margin: 0;
            font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
            color: var(--text);
            background: var(--blue-900);
            overflow-x: hidden;
        }

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

        img {
            max-width: 100%;
            height: auto;
            display: block
        }

        /* Offset for fixed nav */
        section[id] {
            scroll-margin-top: 70px;
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* ====== HERO BACKGROUND (como tu imagen) ====== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: stretch;
            padding: 70px 18px 34px;
            background:
                radial-gradient(1200px 600px at 60% 70%, rgba(90, 170, 255, .35), transparent 65%),
                radial-gradient(900px 480px at 75% 75%, rgba(0, 220, 255, .22), transparent 60%),
                radial-gradient(700px 360px at 85% 60%, rgba(110, 255, 210, .14), transparent 60%),
                linear-gradient(135deg,
                    #08163F 0%,
                    #0B1F5C 30%,
                    #12348A 60%,
                    #1F3C88 100%);
            isolation: isolate;
        }

        /* Capa de “polvo/estrellas” */
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;

            /* Estrellas en varias capas */
            background-image:
                /* micro estrellas */
                radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1.8px),
                /* estrellas medias */
                radial-gradient(circle, rgba(255, 255, 255, 0.28) 1px, transparent 2.2px),
                /* estrellas “brillantes” con glow */
                radial-gradient(circle, rgba(255, 255, 255, 0.35) 1.2px, rgba(255, 255, 255, 0.08) 2.5px, transparent 6px),
                /* polvo lejano */
                radial-gradient(circle, rgba(255, 255, 255, 0.10) 1px, transparent 2.8px);

            background-size:
                120px 120px,
                180px 180px,
                260px 260px;

            background-position:
                0 0,
                40px 80px,
                120px 160px;

            opacity: 0.9;
        }



        /* Glow inferior como “niebla” */
        .hero::after {
            content: "";
            position: absolute;
            left: -20%;
            right: -20%;
            bottom: -20%;
            /*height:55%;*/
            background: radial-gradient(closest-side, rgba(200, 235, 255, .25), transparent 70%);
            opacity: .9;
            z-index: -1;
        }

        /* ====== NAV ====== */
        .container {
            width: 100%;
            max-width: var(--max);
            margin: 0 auto;
            padding: 0 6px;
            /* 👈 evita cortes raros en algunos viewports */
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 24px;
            gap: 12px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.35s ease;
            background: rgba(6, 11, 25, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .nav--scrolled {
            background: rgba(6, 11, 25, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.35);
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            letter-spacing: .2px;
            font-size: clamp(18px, 1.4vw, 22px);
        }

        .brand-badge {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, #46D6FF, #2ECC71);
            box-shadow: 0 4px 18px rgba(46, 204, 113, .35);
            position: relative;
            overflow: visible;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .brand:hover .brand-badge {
            transform: scale(1.1);
            box-shadow: 0 6px 24px rgba(46, 204, 113, .5);
        }

        .brand-pulse-ring {
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            border: 2px solid rgba(46, 204, 113, .45);
            animation: brandPulse 2.8s ease-out infinite;
            pointer-events: none;
        }

        .brand-check {
            z-index: 1;
            display: block;
        }

        .brand-text {
            font-weight: 300;
            font-size: 1.05em;
            letter-spacing: -0.2px;
            color: rgba(255,255,255,.6);
            -webkit-text-fill-color: initial;
        }

        .brand-highlight {
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #46D6FF, #2ECC71);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .brand-highlight::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #46D6FF, #2ECC71);
            border-radius: 2px;
            opacity: 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease, opacity 0.4s ease;
        }

        .brand:hover .brand-highlight::after {
            opacity: .7;
            transform: scaleX(1);
        }

        @keyframes brandPulse {
            0%   { opacity: .8; transform: scale(1); }
            60%  { opacity: 0;  transform: scale(1.6); }
            100% { opacity: 0;  transform: scale(1.6); }
        }

        /* ── Inline brand (used in headings, buttons, footer) ── */
        .inline-brand {
            font-weight: 300;
            color: rgba(255,255,255,.55);
        }
        .inline-brand strong {
            font-weight: 800;
            background: linear-gradient(135deg, #46D6FF, #2ECC71);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Check icon inside CTA buttons */
        .inline-brand-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #46D6FF, #2ECC71);
            vertical-align: middle;
            margin: 0 2px -2px 0;
        }
        .inline-brand-mark svg {
            display: block;
        }

        /* Laptop sidebar mini brand badge */
        .lp-brand-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: linear-gradient(135deg, #46D6FF, #2ECC71);
            vertical-align: middle;
            margin-right: 2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            color: rgba(255, 255, 255, .92);
            font-weight: 600;
            font-size: 13px;
            opacity: .92;
        }

        .nav-links a {
            padding: 8px 12px;
            border-radius: 10px;
            white-space: nowrap;
            transition: all 0.2s;
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, .10);
            color: #46D6FF;
        }

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

        /* Hamburger button - hidden on desktop */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 8px;
            cursor: pointer;
            padding: 8px 7px;
            transition: all 0.3s;
        }

        .nav-hamburger span {
            display: block;
            height: 2px;
            width: 100%;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s;
        }

        .nav-hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .nav-hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .nav-hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile overlay menu - hidden by default */
        .nav-mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(6, 11, 25, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1001;
            opacity: 0;
            transition: opacity 0.35s ease;
            pointer-events: none;
        }

        .nav-mobile-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }

        .nav-mobile-menu {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            gap: 8px;
            padding: 80px 30px 40px;
        }

        .nav-mobile-menu a {
            display: block;
            width: 100%;
            text-align: center;
            padding: 16px 20px;
            color: rgba(255,255,255,0.85);
            font-size: 1.15em;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.2s;
            letter-spacing: 0.3px;
        }

        .nav-mobile-menu a:hover,
        .nav-mobile-menu a:active {
            background: rgba(255,255,255,0.08);
            color: #46D6FF;
        }

        .nav-mobile-cta {
            margin-top: 16px;
            width: 100%;
            max-width: 280px;
            padding: 16px 28px !important;
            font-size: 1.05em !important;
        }

        .btn {
            border: none;
            cursor: pointer;
            font-weight: 700;
            border-radius: 999px;
            padding: 12px 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(180deg, rgba(46, 204, 113, 1) 0%, rgba(34, 184, 98, 1) 100%);
            color: #fff;
            box-shadow: 0 18px 40px rgba(46, 204, 113, .25);
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 22px 52px rgba(46, 204, 113, .28);
        }

        .btn-ghost {
            background: rgba(255, 255, 255, .10);
            border: 1px solid rgba(255, 255, 255, .14);
            color: #fff;
            backdrop-filter: blur(10px);
        }

        .btn-ghost:hover {
            transform: translateY(-1px);
            background: rgba(255, 255, 255, .14);
        }

        /* ====== HERO CONTENT ====== */
        .hero-main {
            display: grid;
            grid-template-columns: 1.05fr .95fr;
            gap: 44px;
            padding: 54px 4px 0;
            align-items: center;
        }

        .kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .10);
            border: 1px solid rgba(255, 255, 255, .14);
            color: rgba(255, 255, 255, .92);
            font-weight: 700;
            font-size: 13px;
            width: fit-content;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
            margin-bottom: 18px;
        }

        .kicker-mp-logo {
            height: 16px;
            width: auto;
            display: inline-block;
            vertical-align: middle;
        }

        h1 {
            margin: 0 0 14px;
            font-size: clamp(34px, 4vw, 64px);
            line-height: 1.05;
            letter-spacing: -0.6px;
            font-weight: 900;
        }

        .subtitle {
            margin: 0 0 22px;
            font-size: clamp(16px, 1.6vw, 20px);
            line-height: 1.55;
            color: var(--muted);
            max-width: 560px;
        }

        /* Mercado Pago inline brand in subtitle */
        .mp-inline-brand {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: #00b1ea;
            font-weight: 800;
            white-space: nowrap;
            vertical-align: baseline;
        }

        .mp-inline-logo {
            height: 20px;
            width: auto;
            display: inline-block;
        }

        .checks {
            list-style: none;
            padding: 0;
            margin: 0 0 26px;
            display: grid;
            gap: 14px;
            font-size: clamp(15px, 1.3vw, 18px);
            color: rgba(255, 255, 255, .92);
            font-weight: 700;
        }

        .checks li {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .check-dot {
            width: 26px;
            height: 26px;
            border-radius: 999px;
            display: grid;
            place-items: center;
            background: rgba(46, 204, 113, .20);
            border: 1px solid rgba(46, 204, 113, .40);
            box-shadow: 0 10px 24px rgba(46, 204, 113, .15);
            flex: 0 0 auto;
        }

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

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 10px;
        }

        .microcopy {
            color: var(--muted2);
            font-weight: 600;
            font-size: 13px;
            margin-top: 8px;
        }

        /* ====== HERO VISUAL ====== */
        .visual {
            position: relative;
            justify-self: end;
            width: min(720px, 110%);
            margin-right: -40px;
        }

        .visual-frame img {
            transform: translateX(-3rem) scale(1.35);
        }


        /* Si querés “flotar” más como tu imagen */
        .visual-frame img {
            transform: translateX(-3rem) scale(1.35);
        }

        .visual-frame::after {
            content: "";
            position: absolute;
            inset: -30px;
            background: radial-gradient(closest-side,
                    rgba(120, 180, 255, .45),
                    rgba(60, 120, 255, .25),
                    transparent 70%);
            filter: blur(30px);
            z-index: -1;
        }

        .floating-icons {
            position: absolute;
            right: 22px;
            /*bottom: 18px;*/
            display: flex;
            gap: 10px;
            opacity: .95;
        }

        .floating-icons h4 {
            position: absolute;
            top: -22px;
            right: 0;
            font-size: 12px;
            color: var(--muted2);
            font-weight: 500;
        }

        .mini-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: rgba(255, 255, 255, .14);
            border: 1px solid rgba(255, 255, 255, .16);
            display: grid;
            place-items: center;
            box-shadow: var(--shadowSoft);
            backdrop-filter: blur(10px);
        }

        /* ====== SECTIONS (placeholders, por si seguís) ====== */
        .section {
            padding: 72px 18px;
            background: #fff;
            color: #0b1226;
        }

        .section .container {
            max-width: 1100px;
        }

        .section h2 {
            margin: 0 0 8px;
            font-size: clamp(24px, 2.4vw, 36px);
            letter-spacing: -.3px;
        }

        .section p {
            margin: 0;
            color: #3a445c;
            line-height: 1.6;
        }

        /* ====== RESPONSIVE ====== */

        /* Nav collapses to hamburger at 1100px */
        @media (max-width: 1100px) {
            .nav-links {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .nav-mobile-overlay {
                display: block;
            }
        }

        @media (max-width: 980px) {

            /* menú simple */

            .hero {
                padding: 70px 14px 34px;
            }

            .hero-main {
                grid-template-columns: 1fr;
                gap: 24px;
                padding-top: 26px;
            }

            /* 🔥 FIX: el bloque visual NO debe medir 110% ni tener margin negativo */
            .visual {
                justify-self: center;
                width: 100%;
                margin-right: 0;
            }

            /* 🔥 FIX: la imagen NO debe ir traducida a la izquierda en mobile */
            .visual-frame img {
                transform: translateX(0) scale(1.05);
                margin: 0 auto;
            }

            /* opcional: baja un poco el glow para que no invada */
            .visual-frame::after {
                inset: -10px;
                filter: blur(24px);
            }

            .hero {
                min-height: auto;
                padding-bottom: 48px;
            }
        }


        @media (max-width: 520px) {
            .btn {
                width: 100%;
                justify-content: center;
            }

            .hero-actions {
                width: 100%;
            }

            .kicker {
                font-size: 12px;
            }

            .floating-icons {
                right: 10px;
                bottom: 10px;
            }

            .mini-icon {
                width: 42px;
                height: 42px;
            }
        }


        /* Responsive */
        @media (max-width: 980px) {
            .pc-grid--3 {
                grid-template-columns: 1fr;
            }

            .pc-grid--2 {
                grid-template-columns: 1fr;
            }

            .pc-section {
                padding: 64px 16px;
            }

            .pc-section__head {
                margin-bottom: 30px;
            }
        }

        /* Animación REAL para el patrón (más visible que transform) */
        @keyframes starsDrift {
            0% {
                background-position: 0 0, 40px 80px, 120px 160px;
            }

            100% {
                background-position: 0 -180px, 40px -260px, 120px -360px;
            }
        }

        .hero::before {
            animation: starsDrift 45s linear infinite;
            will-change: background-position;
        }


        .pc-section {
            padding: 84px 18px;
        }

        .pc-section--light {
            background: linear-gradient(180deg, #0c1a30 0%, #101e36 100%);
            color: #e2e8f0;
        }

        .pc-section--soft {
            background: linear-gradient(180deg, #0a1628 0%, #0e1b32 100%);
            color: #e2e8f0;
        }

        .pc-container {
            width: 100%;
            max-width: var(--pc-max);
            margin: 0 auto;
        }

        .pc-section__head {
            text-align: center;
            margin-bottom: 44px;
        }

        .pc-title {
            margin: 0 0 10px;
            font-size: clamp(26px, 2.6vw, 40px);
            letter-spacing: -.3px;
        }

        .pc-subtitle {
            margin: 0;
            color: var(--pc-muted);
            font-size: clamp(15px, 1.25vw, 18px);
            line-height: 1.55;
        }

        .pc-grid {
            display: grid;
            gap: 18px;
        }

        .pc-grid--3 {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .pc-grid--2 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .pc-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--pc-radius);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            padding: 22px 20px;
            transition: transform .18s ease, box-shadow .18s ease;
        }

        .pc-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .pc-card__title {
            margin: 12px 0 8px;
            font-size: 18px;
            letter-spacing: -.2px;
        }

        .pc-card__text {
            margin: 0;
            color: var(--pc-muted);
            line-height: 1.6;
            font-size: 15px;
        }

        .pc-card__text strong {
            color: #fff;
        }

        .pc-card__note {
            display: block;
            margin-top: 8px;
            color: rgba(148, 163, 184, .92);
        }

        .pc-devices {
            display: block;
            margin-top: 10px;
            font-weight: 700;
            color: rgba(31, 60, 136, .95);
        }

        .pc-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, .08);
            background: rgba(31, 60, 136, .15);
        }

        .pc-icon svg {
            width: 24px;
            height: 24px;
            color: var(--pc-cyan);
        }

        .pc-icon--green {
            background: rgba(46, 204, 113, .12);
            border-color: rgba(46, 204, 113, .22);
        }

        .pc-icon--green svg {
            color: var(--pc-green);
        }

        .pc-icon--cyan {
            background: rgba(70, 214, 255, .10);
            border-color: rgba(70, 214, 255, .22);
        }

        .pc-icon--cyan svg {
            color: #0ea5e9;
        }

        .pc-icon--blue {
            background: rgba(31, 60, 136, .10);
            border-color: rgba(31, 60, 136, .22);
        }

        .pc-icon--blue svg {
            color: var(--pc-blue);
        }

        .pc-ctaRow {
            margin-top: 26px;
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        .pc-ctaRow--center {
            justify-content: center;
        }

        .pc-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 18px;
            border-radius: 999px;
            font-weight: 800;
            font-size: 14px;
            text-decoration: none;
            border: 1px solid transparent;
            transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
            white-space: nowrap;
        }

        .pc-btn--primary {
            background: linear-gradient(180deg, var(--pc-green), #22B862);
            color: #fff;
            box-shadow: 0 16px 34px rgba(46, 204, 113, .25);
        }

        .pc-btn--primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 20px 44px rgba(46, 204, 113, .28);
        }

        .pc-btn--ghost {
            background: rgba(255, 255, 255, .06);
            border-color: rgba(255, 255, 255, .15);
            color: #cbd5e1;
        }

        .pc-btn--ghost:hover {
            transform: translateY(-1px);
            background: rgba(255, 255, 255, .10);
            color: #fff;
        }

        .pc-microcopy {
            font-size: 13px;
            color: rgba(75, 85, 104, .85);
            font-weight: 600;
        }

        .pc-microcopy--center {
            display: block;
            text-align: center;
            margin-top: 10px;
        }

        .pc-impact {
            margin-top: 34px;
            padding: 26px 22px;
            border-radius: var(--pc-radius);
            border: 1px solid rgba(31, 60, 136, .16);
            background: rgba(31, 60, 136, .06);
            text-align: center;
        }

        .pc-impact__big {
            margin: 0 0 16px;
            font-size: clamp(16px, 1.3vw, 18px);
            color: var(--pc-text);
        }


        /* Accesibilidad: reduce motion */
        @media (prefers-reduced-motion: reduce) {
            .btn {
                transition: none;
            }

            .visual-frame img {
                transform: none;
            }
        }

        /* =====================  DEMO SECTION STYLES  ===================== */

.demo-section{
  padding: 96px 18px;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(70,214,255,.08), transparent 60%),
    #0a1628;
  color: #e2e8f0;
}

.demo-container{
  max-width: 1100px;
  margin: 0 auto;
}

.demo-head{
  text-align: center;
  margin-bottom: 40px;
}

.demo-badge{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(70,214,255,.1);
  color: #46D6FF;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
  border: 1px solid rgba(70,214,255,.15);
}

.demo-head h2{
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -.4px;
  color: #fff;
}

.demo-head p{
  margin: 0;
  font-size: 16px;
  color: #94a3b8;
}

/* CARD */
.demo-card{
  background: rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  padding: 34px 32px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
}

.demo-info h3{
  margin: 0 0 16px;
  font-size: 20px;
  color: #fff;
}

/* CREDENTIALS */
.demo-credentials{
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.demo-credential{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(70,214,255,.06);
  border: 1px solid rgba(70,214,255,.12);
}

.demo-label{
  font-weight: 800;
  font-size: 14px;
  color: #46D6FF;
}

.demo-credential code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  background: rgba(255,255,255,.06);
  padding: 6px 10px;
  border-radius: 8px;
  color: #e2e8f0;
}

.demo-note{
  margin: 10px 0 0;
  font-size: 13px;
  color: #5b647a;
}

/* ACTION */
.demo-action{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.demo-btn{
  width: 100%;
  max-width: 280px;
  font-size: 15px;
}

.demo-microcopy{
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .demo-card{
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .demo-action{
    align-items: stretch;
  }

  .demo-btn{
    max-width: none;
  }
}
/* Styles from bottom — duplicate :root and grid defs removed, kept only device/demo styles */

            /* --- DEMO ANIMATON STYLES --- */
            
            /* Contenedor Principal de Dispositivos */
            .devices-wrapper {
                display: flex;
                align-items: flex-end; /* Alinear abajo para perspectiva */
                justify-content: center;
                gap: 40px;
                flex-wrap: wrap;
                perspective: 1000px;
                margin-top: 40px;
            }

            /* --- ESTILOS COMUNES --- */
            .devices-wrapper > div {
                 transition: all 0.3s ease;
            }

            /* 1. PHONE */
            .phone-mockup {
                width: 280px;
                height: 570px;
                background: #000;
                border-radius: 50px;
                padding: 12px;
                box-shadow: 
                    inset 0 0 0 2px #333,
                    0 0 0 4px #1a1a1a, /* Inner Frame */
                    0 0 0 6px #d4af37, /* Gold/Metal Frame simulation */
                    0 30px 60px rgba(0,0,0,0.4);
                position: relative;
                box-sizing: border-box;
                text-align: left;
            }
            .phone-mockup::before { /* Botón lateral silencio */
                content: ""; position: absolute; left: -8px; top: 100px;
                width: 4px; height: 25px; background: #d4af37; border-radius: 4px 0 0 4px;
            }
            .phone-mockup::after { /* Botones volumen */
                content: ""; position: absolute; left: -8px; top: 140px;
                width: 4px; height: 50px; background: #d4af37; border-radius: 4px 0 0 4px;
                box-shadow: 0 60px 0 #d4af37; /* Segundo botón volumen */
            }
            .phone-power {
                position: absolute; right: -8px; top: 160px;
                width: 4px; height: 80px; background: #d4af37; border-radius: 0 4px 4px 0;
            }

            .phone-screen {
                background: #fff;
                width: 100%;
                height: 100%;
                border-radius: 40px;
                overflow: hidden;
                display: flex;
                flex-direction: column;
                position: relative;
            }
            .phone-screen::after { /* Home Indicator */
                content: ""; position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
                width: 120px; height: 4px; background: #000; border-radius: 10px; opacity: 0.3;
            }

            .phone-notch {
                position: absolute;
                top: 0; left: 50%; transform: translateX(-50%);
                width: 100px; height: 28px;
                background: #000;
                border-bottom-left-radius: 18px;
                border-bottom-right-radius: 18px;
                z-index: 100;
            }
            .phone-notch::after {
                content: ""; position: absolute; top: 50%; right: 15px; transform: translateY(-50%);
                width: 8px; height: 8px; background: #1a1a1a; border-radius: 50%;
                box-shadow: -15px 0 0 2px #0f0f0f; 
            }
            
            .fade-in-item {
                animation: fadeIn 0.5s ease-out forwards;
                opacity: 0;
                transform: translateY(10px);
            }
            @keyframes fadeIn {
                to { opacity: 1; transform: translateY(0); }
            }

            .pulse-text {
                animation: pulse 0.3s ease-in-out;
            }
            @keyframes pulse {
                0% { transform: scale(1); }
                50% { transform: scale(1.1); color: #00a650; }
                100% { transform: scale(1); }
            }

            /* Phone UI */
            .ph-header { background: #009ee3; color: white; padding: 40px 20px 20px; text-align: center; }
            .ph-balance { font-size: 2em; font-weight: bold; }
            .ph-body { padding: 15px; flex: 1; }
            .ph-list { display: flex; flex-direction: column; gap: 10px; }
            .ph-item { background: white; padding: 10px; border-radius: 8px; display: flex; align-items: center; justify-content: space-between; font-size: 0.85em; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
            
            /* Notificación Push Phone */
            .ph-push {
                position: absolute; top: -60px; left: 10px; right: 10px;
                background: rgba(255,255,255,0.95); padding: 10px; border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 20;
                display: flex; gap: 10px; align-items: center;
                transition: top 0.5s ease;
                text-align: left;
            }
            .ph-push.active { top: 45px; }


            /* --- 2. LAPTOP (MACBOOK) --- */
            .laptop-mockup {
                width: 650px;
                height: 420px;
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: left;
            }
            .laptop-screen-frame {
                width: 100%;
                height: 380px;
                background: #111; /* Marco negro */
                border-radius: 16px 16px 0 0;
                padding: 12px;
                box-sizing: border-box;
                box-shadow: 
                    inset 0 0 0 1px #333,
                    0 0 0 2px #c0c0c0; /* Borde metálico exterior */
                position: relative;
            }
            /* MacBook Notch simulation */
            .laptop-notch {
                position: absolute; top: 0; left: 50%; transform: translateX(-50%);
                width: 150px; height: 20px; background: #000;
                border-radius: 0 0 10px 10px; z-index: 50;
            }

            .laptop-screen {
                background: #fff;
                width: 100%;
                height: 100%;
                border-radius: 6px; /* Esquinas pantalla */
                overflow: hidden;
                display: flex;
                position: relative;
            }
            
            .laptop-base {
                width: 750px;
                height: 25px;
                background: linear-gradient(to bottom, #dcdcdc, #b0b0b0);
                border-radius: 0 0 20px 20px;
                position: relative;
                box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            }
            /* Laptop UI */
            .lp-sidebar { width: 180px; background: #003049; color: white; display: flex; flex-direction: column; padding: 20px; box-sizing: border-box; }
            .lp-logo { font-weight: bold; margin-bottom: 30px; font-size: 1em; display: flex; align-items: center; gap: 10px; }
            .lp-menu-item { padding: 10px 0; color: #aaa; font-size: 0.9em; border-bottom: 1px solid rgba(255,255,255,0.1); cursor: pointer; }
            .lp-menu-item.active { color: white; font-weight: bold; }
            
            .lp-main { flex: 1; padding: 30px; background: #f4f7f6; display: flex; flex-direction: column; box-sizing: border-box; }
            .lp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
            .lp-title { font-size: 1.5em; font-weight: bold; color: #333; margin: 0; text-align: left; }
            
            .audio-toggle-btn {
                background: none; border: 2px solid #ccc; cursor: pointer;
                width: 40px; height: 40px; border-radius: 50%;
                display: flex; align-items: center; justify-content: center;
                font-size: 1.2em; color: #666; transition: all 0.3s;
            }
            .audio-toggle-btn:hover { background: #ddd; }
            .audio-toggle-btn.muted { color: #d9534f; border-color: #d9534f; position: relative; }
            .audio-toggle-btn.muted::after {
                content: ''; position: absolute; width: 100%; height: 2px;
                background: #d9534f; transform: rotate(45deg);
            }
            .audio-toggle-btn.active-sound { color: #009ee3; border-color: #009ee3; transform: scale(1.1); box-shadow: 0 0 10px rgba(0, 158, 227, 0.3); }
            .audio-toggle-btn.speaking-pulse {
                animation: pulse-green 1s infinite !important;
                border-color: #00e676 !important;
                color: #00e676 !important;
                box-shadow: 0 0 15px rgba(0,230,118,0.8) !important;
            }
            @keyframes pulse-green {
                0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); transform: scale(1.1); }
                70% { box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); transform: scale(1.15); }
                100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); transform: scale(1.1); }
            }
            .lp-card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); text-align: left; }
            .lp-balance-big { font-size: 2.5em; font-weight: bold; color: #333; }
            .lp-table { width: 100%; margin-top: 20px; border-collapse: collapse; }
            .lp-table th { text-align: left; color: #888; font-size: 0.8em; padding-bottom: 10px; border-bottom: 1px solid #eee; }
            .lp-table td { padding: 10px 0; border-bottom: 1px solid #f9f9f9; font-size: 0.9em; }

            /* --- 3. SMARTWATCH (APPLE WATCH) --- */
            .watch-mockup {
                width: 170px;
                height: 200px;
                background: #222;
                border-radius: 40px; /* Apple Watch shape */
                padding: 2px; /* Small bezel */
                box-shadow: 
                    0 0 0 2px #444, /* Case */
                    0 15px 30px rgba(0,0,0,0.3);
                position: relative;
                align-self: flex-end;
                margin-bottom: 50px;
                background: linear-gradient(135deg, #333, #111);
                text-align: center;
            }
            /* Digital Crown */
            .watch-mockup::before {
                content: ""; position: absolute; right: -8px; top: 40px;
                width: 8px; height: 25px;
                background: repeating-linear-gradient(to bottom, #888, #888 2px, #333 3px);
                border-radius: 4px;
                box-shadow: -2px 0 5px rgba(0,0,0,0.5);
                z-index: -1;
            }
            /* Side Button */
            .watch-mockup::after {
                content: ""; position: absolute; right: -4px; top: 80px;
                width: 4px; height: 40px;
                background: #333; border-radius: 3px; z-index: -1;
            }

            /* Correas Apple Watch Style */
            .watch-strap {
                position: absolute; left: 50%; transform: translateX(-50%);
                width: 120px; height: 80px; 
                background: #eef2f3; /* White rubber strap */
                z-index: -1;
                box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
            }
            .strap-top { 
                top: -30px; 
                border-radius: 20px 20px 0 0; 
                clip-path: polygon(10% 0, 90% 0, 100% 100%, 0% 100%);
            }
            .strap-bottom { 
                bottom: -30px; 
                border-radius: 0 0 20px 20px;
                clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
            }
            
            .watch-screen {
                background: #000;
                width: 100%; height: 100%;
                border-radius: 38px; /* Match case radius */
                display: flex; flex-direction: column;
                align-items: center; justify-content: center;
                color: white; text-align: center;
                overflow: hidden;
                box-shadow: inset 0 0 20px rgba(255,255,255,0.1); /* Glass effect */
            }
            .watch-content { display: none; width: 100%; height: 100%; align-items: center; justify-content: center; flex-direction: column; }
            .watch-content.visible { display: flex; animation: zoomIn 0.3s; }
            @keyframes zoomIn { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }

            .w-icon { font-size: 2em; margin-bottom: 5px; color: #00a650; }
            .w-text { font-size: 0.8em; opacity: 0.8; }
            .w-amount { font-size: 1.2em; font-weight: bold; margin-top: 5px; }

            /* --- RESPONSIVIDAD DEMO --- */
            @media (max-width: 1200px) {
                .devices-wrapper {
                    transform: scale(0.85);
                    transform-origin: top center;
                    gap: 20px;
                    /* Necesario para que el scale no deje espacio blanco excesivo abajo */
                    margin-bottom: -100px; 
                }
            }

            @media (max-width: 900px) {
                .devices-wrapper {
                    flex-direction: row;
                    flex-wrap: wrap;
                    align-items: flex-end;
                    justify-content: center;
                    gap: 20px;
                    transform: none;
                    margin-bottom: 0;
                    width: 100%;
                    max-width: 100%;
                    overflow: hidden;
                    padding: 20px 10px;
                    box-sizing: border-box;
                }

                .phone-mockup {
                    width: 200px;
                    height: 410px;
                    border-radius: 36px;
                    padding: 8px;
                    order: 1;
                    transform: none;
                    margin: 0;
                    flex-shrink: 0;
                }
                .phone-mockup::before { left: -4px; top: 70px; width: 3px; height: 20px; }
                .phone-mockup::after { left: -4px; top: 100px; width: 3px; height: 38px; }
                .phone-screen { border-radius: 30px; }
                .phone-notch { width: 70px; height: 20px; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; }
                .ph-header { padding: 30px 14px 14px; }
                .ph-balance { font-size: 1.4em; }
                .ph-body { padding: 10px; }
                .ph-item { padding: 7px; font-size: 0.75em; }
                .ph-push { left: 5px; right: 5px; padding: 7px; font-size: 0.85em; }
                .ph-push.active { top: 30px; }

                .laptop-mockup {
                    width: 100%;
                    max-width: 500px;
                    height: auto;
                    order: 3;
                    transform: none;
                    margin: 0;
                    left: 0;
                    overflow: visible;
                }
                .laptop-screen-frame { height: 280px; padding: 8px; }
                .lp-sidebar { width: 120px; padding: 12px; }
                .lp-logo { font-size: 0.75em; margin-bottom: 16px; }
                .lp-menu-item { padding: 6px 0; font-size: 0.7em; }
                .lp-main { padding: 14px; }
                .lp-title { font-size: 1em; }
                .lp-balance-big { font-size: 1.6em; }
                .lp-card { padding: 12px; }
                .lp-table th { font-size: 0.65em; }
                .lp-table td { font-size: 0.7em; padding: 6px 0; }
                .audio-toggle-btn { width: 28px; height: 28px; font-size: 0.85em; }
                .laptop-base { width: calc(100% + 16px); height: 18px; margin-left: -8px; }

                .watch-mockup {
                    width: 110px;
                    height: 130px;
                    border-radius: 28px;
                    align-self: flex-end;
                    margin-bottom: 30px;
                    order: 2;
                    transform: none;
                    flex-shrink: 0;
                }
                .watch-mockup::before { right: -4px; top: 25px; width: 5px; height: 16px; }
                .watch-mockup::after { right: -3px; top: 52px; width: 3px; height: 26px; }
                .watch-screen { border-radius: 26px; }
                .watch-strap { width: 80px; height: 50px; }
                .strap-top { top: -18px; }
                .strap-bottom { bottom: -18px; }
                .w-icon { font-size: 1.3em; margin-bottom: 2px; }
                .w-text { font-size: 0.55em; }
                .w-amount { font-size: 0.8em; }
                #watchClock { font-size: 1em; }
            }

            @media (max-width: 500px) {
                .devices-wrapper {
                    gap: 12px;
                    padding: 16px 6px;
                }

                .phone-mockup {
                    width: 160px;
                    height: 330px;
                    border-radius: 32px;
                }
                .phone-notch { width: 60px; height: 18px; }
                .ph-header { padding: 26px 10px 10px; }
                .ph-balance { font-size: 1.2em; }
                .ph-item { padding: 5px; font-size: 0.68em; }

                .watch-mockup {
                    width: 85px;
                    height: 102px;
                    border-radius: 24px;
                    margin-bottom: 20px;
                }
                .watch-strap { width: 62px; height: 38px; }
                .strap-top { top: -14px; }
                .strap-bottom { bottom: -14px; }
                .watch-screen { border-radius: 22px; }
                .w-icon { font-size: 1em; }
                .w-text { font-size: 0.5em; }
                .w-amount { font-size: 0.7em; }
                #watchClock { font-size: 0.85em; }

                .laptop-mockup { max-width: 100%; }
                .laptop-screen-frame { height: 200px; padding: 6px; }
                .lp-sidebar { width: 80px; padding: 8px; }
                .lp-logo { font-size: 0.6em; margin-bottom: 10px; gap: 4px; }
                .lp-menu-item { font-size: 0.6em; padding: 5px 0; }
                .lp-main { padding: 10px; }
                .lp-title { font-size: 0.85em; }
                .lp-balance-big { font-size: 1.2em; }
                .lp-table th { font-size: 0.55em; }
                .lp-table td { font-size: 0.6em; padding: 4px 0; }
                .laptop-base { width: calc(100% + 12px); margin-left: -6px; height: 14px; }
                .audio-toggle-btn { width: 22px; height: 22px; font-size: 0.7em; }
            }

/* LIVE TRANSFER PROMO STYLES */
.demo-live-transfer {
    background: rgba(245, 158, 11, 0.08);
    border: 2px dashed rgba(245, 158, 11, 0.35);
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
    font-size: 15px;
    color: #cbd5e1;
}

.live-transfer-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #fbbf24;
    font-size: 16px;
}

.live-icon {
    font-size: 20px;
}

.alias-highlight {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    font-family: monospace;
    font-size: 1.1em;
    user-select: all;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.refund-note {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #16a34a; /* Green 600 */
    font-weight: 600;
}

/* HERO VISUALIZATION EFFECTS */

/* Left Context - Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-main > div:first-child > * {
    opacity: 0; /* Initial state hidden */
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-main > div:first-child .kicker { animation-delay: 0.1s; }
.hero-main > div:first-child h1 { animation-delay: 0.2s; }
.hero-main > div:first-child .subtitle { animation-delay: 0.3s; }
.hero-main > div:first-child .checks { animation-delay: 0.4s; }
.hero-main > div:first-child .hero-actions { animation-delay: 0.5s; }
.hero-main > div:first-child .microcopy { animation-delay: 0.6s; }

/* Right Context - Floating & Enhanced Entrance */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-main .visual {
    opacity: 0;
    animation: slideInRight 1s ease-out forwards 0.3s; /* Entrance */
}

.hero-main .visual-frame {
    animation: float 6s ease-in-out infinite; /* Continuous floating */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); /* Soft shadow */
    transition: filter 0.3s ease;
}

.hero-main .visual-frame:hover {
    filter: drop-shadow(0 30px 60px rgba(46, 204, 113, 0.4)); /* Glow on hover */
}

/* Floating Icons Animation */
.mini-icon {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mini-icon:hover {
    transform: scale(1.2) rotate(10deg);
}

/* --- VALIDATION SECTION IMPROVEMENTS --- */

.validation-section {
    position: relative;
    padding: 100px 20px;
    background:
        radial-gradient(circle at 50% 0%, rgba(70,214,255,0.06) 0%, transparent 60%),
        #0b1526;
    overflow: hidden;
    color: black;
}

@media (max-width: 900px) {
    .validation-section { padding: 60px 12px; }
}
@media (max-width: 500px) {
    .validation-section { padding: 40px 8px; }
}

/* Background Pattern Decoration */
.validation-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

/* Badge Style */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(70, 214, 255, 0.08);
    color: #46D6FF;
    font-weight: 700;
    font-size: 0.85em;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(70, 214, 255, 0.18);
}

/* Enhanced Title */
.pc-title-lg {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.text-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Enhanced Devices Wrapper */
.devices-wrapper {
    position: relative;
    z-index: 1;
    /* Adding a subtle glow behind the devices */
    box-shadow: 0 100px 180px -40px rgba(37, 99, 235, 0.15); 
    border-radius: 50%; /* Soft glow shape */
}

/* Mockup Enhancements on Hover */
@media (min-width: 901px) {
    .phone-mockup:hover, .laptop-mockup:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 40px 80px rgba(0,0,0,0.15);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}

/* --- MP REQUIREMENT BANNER (High Visibility) --- */
.mp-requirement-banner {
    background: #0f172a; /* Dark Blue Slate 900 */
    color: #fff;
    padding: 40px 20px;
    border-top: 4px solid #0ea5e9; /* Top Highlight */
    position: relative;
    z-index: 10;
    text-align: center;
}

.mp-req-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.05); /* Subtle Glass */
    padding: 24px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mp-req-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #0ea5e9;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.mp-req-content {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.mp-req-content h3 {
    margin: 0 0 8px;
    font-size: 1.25em;
    color: #fff; /* White Title */
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mp-req-content p {
    margin: 0;
    font-size: 1em;
    line-height: 1.5;
    color: #cbd5e1; /* Slate 300 for readability */
}

/* Highlight Mercado Pago in text */
.mp-req-content strong {
    color: #0ea5e9; /* Cyan highlight */
}

.mp-req-logo {
    background: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
}

.mp-req-logo img {
    height: 28px;
    display: block;
}

@media (max-width: 768px) {
    .mp-req-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .mp-req-content {
        text-align: center;
    }
}

/* --- LIGHT BANNER VARIANT (Hero Position) --- */
.mp-requirement-banner.mp-requirement-banner--light {
    background: #f1f5f9; /* Slate 100 - Light gray/blue */
    color: #334155;
    border-top: none;
    border-bottom: 1px solid #cbd5e1;
    padding: 30px 20px;
}

.mp-requirement-banner--light .mp-req-container {
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}

/* Override text colors for light background */
.mp-requirement-banner--light .mp-req-content h3 {
    color: #0f172a; /* Dark Slate */
}

.mp-requirement-banner--light .mp-req-content p {
    color: #64748b; /* Slate 500 */
}

/* Icon adjustment if needed */
.mp-requirement-banner--light .mp-req-icon {
    box-shadow: none; /* Remove glow in light mode */
    background: rgba(14, 165, 233, 0.1); /* Light blue bg */
    color: #0284c7; /* Darker blue icon */
}

/* --- PAIN POINTS SECTION --- */
.pain-section {
    padding: 80px 20px;
    background: #0f172a; /* Dark Blue Slate */
    color: #fff;
    text-align: center;
}

.pain-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
    font-weight: 800;
}

.pain-header p {
    color: #94a3b8;
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto 50px;
}

.pain-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.pain-card {
    background: rgba(255,255,255,0.05); /* Glass effect */
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
    flex: 1;
    min-width: 250px;
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.pain-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pain-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(252, 165, 165, 0.1);
    border: 1px solid rgba(252, 165, 165, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #fca5a5;
}

.pain-card h3 {
    margin-bottom: 12px;
    color: #fca5a5; /* Light Red Highlight for negative emotion */
}

.pain-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* --- SOCIAL PROOF & SECURITY SECTION --- */
.trust-section {
    padding: 60px 20px;
    background: #e2e8f0; /* Soft Gray */
    text-align: center;
}

.trust-section .pc-container {
    max-width: 900px;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-block {
    flex: 1;
    min-width: 300px;
}

.trust-block h3 {
    margin-bottom: 20px;
    color: #475569;
}

.trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.trust-tags span {
    background: #fff;
    padding: 8px 16px;
    border-radius: 99px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-weight: 600;
    color: #64748b;
}

.security-block {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.sec-icon {
    font-size: 32px;
    background: #ecfdf5; /* Green 50 */
    color: #059669; /* Green 600 */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sec-content h3 {
    margin: 0 0 6px;
    font-size: 1.1em;
    color: #0f172a;
}

.sec-content p {
    font-size: 0.9em;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

/* --- FAQ SECTION --- */
/* OLD FAQ/CTA styles removed — see enhanced versions below */

/* --- NEW STEP CARDS STYLE ("HOW IT WORKS") --- */
.steps-section .steps-grid {
    gap: 30px;
}

.step-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.3);
    border-color: rgba(70, 214, 255, 0.2);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(70, 214, 255, 0.06);
    line-height: 1;
    pointer-events: none;
}

.step-card h3 {
    margin: 20px 0 12px;
    font-size: 1.25em;
    color: #fff;
    font-weight: 700;
}

.step-card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95em;
}

.step-devices-mini {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    color: #64748b;
    font-size: 18px;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px dashed rgba(255,255,255,0.08);
}

/* ══════════════════════════════════════
   HOW SHOWCASE (MP Integration Layout)
   ══════════════════════════════════════ */
.how-showcase-section {
    border-top: 1px solid var(--pc-border);
    border-bottom: 1px solid var(--pc-border);
}

.how-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* -- Left content -- */
.how-showcase-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.how-showcase-mp-logo {
    height: 28px;
    width: auto;
}
.how-showcase-x {
    font-size: 1.2em;
    color: var(--pc-muted);
    font-weight: 300;
}
.how-showcase-brand {
    font-size: 1.1em;
    font-weight: 300;
    color: var(--pc-muted);
}
.how-showcase-brand strong {
    font-weight: 800;
    background: linear-gradient(135deg, #46D6FF, #2ECC71);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how-showcase-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px;
    color: var(--pc-text);
}
.how-showcase-title strong {
    color: #009ee3;
}

.how-showcase-desc {
    font-size: 1em;
    color: var(--pc-muted);
    line-height: 1.7;
    margin: 0 0 28px;
}
.how-showcase-desc strong {
    color: var(--pc-text);
}

/* Feature list */
.how-showcase-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.how-feat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--pc-card);
    border: 1px solid var(--pc-border);
    border-radius: 14px;
    transition: all 0.3s ease;
}
.how-feat:hover {
    border-color: rgba(0, 158, 227, 0.2);
    background: rgba(255, 255, 255, 0.06);
}
.how-feat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(0, 158, 227, 0.1);
    color: #009ee3;
    flex-shrink: 0;
    font-size: 0.95em;
}
.how-feat-text strong {
    display: block;
    font-size: 0.88em;
    color: var(--pc-text);
}
.how-feat-text span {
    font-size: 0.78em;
    color: var(--pc-muted);
}

/* -- Right: Flow Diagram -- */
.how-showcase-visual {
    display: flex;
    justify-content: center;
}
.how-flow-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 32px;
    background: var(--pc-card);
    border: 1px solid var(--pc-border);
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
}

.how-flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--pc-border);
    border-radius: 14px;
    font-size: 0.82em;
    font-weight: 600;
    color: var(--pc-text);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}
.how-flow-node:hover {
    border-color: rgba(255, 255, 255, 0.15);
}
.how-flow-node img {
    height: 22px;
    width: auto;
}
.how-flow-node i {
    font-size: 1.3em;
}
.how-flow-client i {
    color: var(--pc-muted);
}
.how-flow-mp {
    border-color: rgba(0, 158, 227, 0.2);
    background: rgba(0, 158, 227, 0.05);
}
.how-flow-api i {
    color: var(--pc-cyan);
}
.how-flow-app {
    border-color: rgba(46, 204, 113, 0.2);
    background: rgba(46, 204, 113, 0.05);
}
.how-flow-app-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #46D6FF, #2ECC71);
}
.how-flow-arrow {
    color: var(--pc-muted);
    font-size: 1.2em;
}
.how-flow-devices {
    display: flex;
    gap: 12px;
    padding: 10px 0;
}
.how-flow-device {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(70, 214, 255, 0.08);
    border: 1px solid rgba(70, 214, 255, 0.15);
    color: var(--pc-cyan);
    font-size: 0.9em;
    transition: all 0.3s ease;
}
.how-flow-device:hover {
    background: rgba(70, 214, 255, 0.15);
    border-color: rgba(70, 214, 255, 0.3);
}
.how-flow-label {
    font-size: 1em;
    color: var(--pc-green);
    font-weight: 600;
    text-align: center;
}

/* ── How Showcase Responsive ── */
@media (max-width: 980px) {
    .how-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .how-showcase-content {
        text-align: center;
    }
    .how-showcase-logo-row {
        justify-content: center;
    }
    .how-showcase-title {
        text-align: center;
    }
    .how-showcase-desc {
        text-align: center;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px;
    }
    .how-flow-diagram {
        max-width: 380px;
        margin: 0 auto;
        padding: 24px;
    }
    .how-flow-node {
        padding: 12px 24px;
    }
}

@media (max-width: 640px) {
    .how-showcase-grid {
        gap: 32px;
    }
    .how-showcase-title {
        font-size: 1.4rem;
    }
    .how-showcase-desc {
        font-size: 0.92em;
    }
    .how-feat {
        padding: 12px;
        gap: 12px;
    }
    .how-feat-icon {
        width: 34px;
        height: 34px;
    }
    .how-flow-diagram {
        padding: 20px 14px;
        max-width: 320px;
        gap: 10px;
    }
    .how-flow-node {
        padding: 10px 18px;
        font-size: 0.78em;
        max-width: 180px;
    }
    .how-flow-node img {
        height: 18px;
    }
    .how-flow-devices {
        gap: 8px;
    }
    .how-flow-device {
        width: 34px;
        height: 34px;
        font-size: 0.82em;
    }
    .how-flow-label {
        font-size: 0.65em;
    }
    .how-flow-arrow {
        font-size: 1em;
    }
}

@media (max-width: 420px) {
    .how-showcase-mp-logo {
        height: 22px;
    }
    .how-showcase-brand {
        font-size: 0.95em;
    }
    .how-flow-diagram {
        padding: 16px 10px;
        max-width: 280px;
    }
    .how-flow-node {
        padding: 8px 14px;
        font-size: 0.72em;
        max-width: 160px;
    }
    .how-flow-device {
        width: 30px;
        height: 30px;
        font-size: 0.75em;
    }
}

/* ── End How Showcase ── */

/* --- DEMO ACTION TEXT --- */
.demo-action-text {
    margin-bottom: 20px;
}

.demo-action-text h4 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    color: #fff;
}

.demo-action-text p {
    margin: 0;
    color: #94a3b8;
}

/* ============================================================
   NEW STYLES — Stats Strip, Trust V2, Footer CTA, Benefits
   ============================================================ */

/* --- STATS STRIP --- */
.stats-strip {
    padding: 50px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.5), transparent);
}

.stats-strip::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.5), transparent);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 10px 20px;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, #46D6FF, #2ECC71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.85em;
    color: #94a3b8;
    margin-top: 4px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .stats-grid {
        gap: 10px;
    }
    .stat-divider {
        display: none;
    }
    .stat-item {
        min-width: 45%;
        padding: 12px 10px;
    }
}

/* --- BENEFIT ACCENT CARDS --- */
.benefit-accent {
    position: relative;
    overflow: hidden;
}

.benefit-accent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--pc-radius) var(--pc-radius) 0 0;
}

.benefit-accent--green::before {
    background: linear-gradient(90deg, #2ECC71, #22B862);
}

.benefit-accent--cyan::before {
    background: linear-gradient(90deg, #0ea5e9, #46D6FF);
}

.benefit-accent--blue::before {
    background: linear-gradient(90deg, #1F3C88, #2B56C7);
}

.benefit-accent .pc-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
    border-radius: 16px;
}

.benefit-accent .pc-icon i {
    color: inherit;
}

.benefit-accent .pc-icon--green i { color: var(--pc-green); }
.benefit-accent .pc-icon--cyan i { color: #0ea5e9; }
.benefit-accent .pc-icon--blue i { color: var(--pc-blue); }

/* --- TRUST SECTION V2 --- */
.trust-section-v2 {
    padding: 100px 20px;
    background: 
        radial-gradient(ellipse 600px 300px at 30% 50%, rgba(14, 165, 233, 0.08), transparent),
        radial-gradient(ellipse 600px 300px at 70% 50%, rgba(46, 204, 113, 0.06), transparent),
        #0f172a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.trust-section-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.section-badge--dark {
    background: rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    border-color: rgba(255, 255, 255, 0.1);
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.trust-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-feature-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-4px);
}

.trust-feature-card:hover::before {
    opacity: 1;
}

.trust-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(46, 204, 113, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #46D6FF;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.trust-feature-card h3 {
    font-size: 1.2em;
    margin: 0 0 12px;
    color: #f1f5f9;
    font-weight: 800;
}

.trust-feature-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95em;
}

.trust-feature-card p strong {
    color: #e2e8f0;
}

.trust-industries {
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-industries-label {
    color: #64748b;
    font-size: 0.9em;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.trust-tags-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.trust-tags-v2 span {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 99px;
    font-weight: 600;
    color: #cbd5e1;
    font-size: 0.9em;
    transition: all 0.2s ease;
}

.trust-tags-v2 span:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
    color: #fff;
}

@media (max-width: 768px) {
    .trust-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* =====================  TESTIMONIOS SECTION  ===================== */
.testimonials-section {
    background: linear-gradient(180deg, #0a1628 0%, #0f1d32 100%);
    padding: 100px 20px;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #fbbf24;
    font-size: 0.9em;
}

.testimonial-quote {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.7;
    font-size: 0.95em;
    margin: 0;
    flex-grow: 1;
}

.testimonial-quote strong {
    color: #2ECC71;
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: rgba(46, 204, 113, 0.4);
    text-underline-offset: 3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ECC71, #22B862);
    color: #fff;
    font-weight: 700;
    font-size: 0.85em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-info strong {
    color: #f1f5f9;
    font-size: 0.95em;
}

.testimonial-info span {
    color: #64748b;
    font-size: 0.85em;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 70px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
}

/* --- ENHANCED FOOTER CTA --- */
.final-cta {
    background: 
        radial-gradient(ellipse 800px 400px at 50% 0%, rgba(14, 165, 233, 0.12), transparent),
        radial-gradient(circle at 50% 10%, #1e293b 0%, #0f172a 100%);
    padding: 100px 20px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.final-cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ECC71;
    font-weight: 800;
    font-size: 14px;
    border-radius: 99px;
    border: 1px solid rgba(46, 204, 113, 0.2);
    margin-bottom: 24px;
}

.btn-glow {
    position: relative;
    animation: btnPulseGlow 3s ease-in-out infinite;
}

@keyframes btnPulseGlow {
    0%, 100% { box-shadow: 0 18px 40px rgba(46, 204, 113, 0.25); }
    50% { box-shadow: 0 18px 60px rgba(46, 204, 113, 0.45), 0 0 30px rgba(46, 204, 113, 0.2); }
}

.final-guarantee {
    margin-top: 24px;
    color: #64748b;
    font-size: 0.9em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.final-guarantee i {
    color: #2ECC71;
}

/* --- FAQ ENHANCED --- */
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0c1a30 0%, #0a1628 100%);
    color: #e2e8f0;
}

.faq-section .pc-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.03);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-item[open] {
    border-color: rgba(70, 214, 255, 0.25);
    background: rgba(70, 214, 255, 0.04);
    box-shadow: 0 4px 16px rgba(70, 214, 255, 0.06);
}

.faq-item summary {
    font-weight: 700;
    color: #e2e8f0;
    list-style: none;
    position: relative;
    padding-right: 30px;
    font-size: 1em;
    line-height: 1.5;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 300;
    font-size: 1.5em;
    line-height: 1;
    color: #64748b;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: "−";
    color: #46D6FF;
}

.faq-item p {
    margin: 14px 0 0;
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.95em;
}

/* --- SECTION DIVIDER TRANSITIONS --- */
.pain-section + .stats-strip {
    margin-top: 0;
}

/* Smooth visual flow between light/dark sections */
.pc-section--soft + .demo-section {
    border-top: none;
}

/* ============================================================
   TOKEN TUTORIAL SECTION
   ============================================================ */

.token-tutorial {
    padding: 100px 24px;
    background:
        radial-gradient(800px 400px at 20% 80%, rgba(0,158,227,0.12), transparent 60%),
        radial-gradient(600px 350px at 80% 20%, rgba(0,166,80,0.08), transparent 60%),
        linear-gradient(180deg, #0a1628 0%, #0f1f3d 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
    color: #e2e8f0;
}

.token-tutorial::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(70,214,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.token-tutorial .pc-title {
    color: #fff;
}

.token-tutorial .pc-subtitle {
    color: #94a3b8;
}

/* Slider wrapper */
.tut-slider {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

/* Progress bar */
.tut-progress {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-bottom: 40px;
    overflow: hidden;
}

.tut-progress-bar {
    height: 100%;
    width: 16.66%;
    background: linear-gradient(90deg, #009ee3, #00a650);
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slides container */
.tut-slides {
    position: relative;
    min-height: 440px;
}

.tut-slide {
    display: none;
    animation: tutFadeIn 0.45s ease;
}

.tut-slide.active {
    display: block;
}

@keyframes tutFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slide content - 2 columns */
.tut-slide-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

/* Text side */
.tut-text {
    padding-top: 10px;
}

.tut-step-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0,158,227,0.15);
    color: #46D6FF;
    font-weight: 700;
    font-size: 0.8em;
    border-radius: 999px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(70,214,255,0.2);
}

.tut-text h3 {
    font-size: 1.45em;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.tut-text p {
    color: #94a3b8;
    font-size: 1em;
    line-height: 1.65;
    margin: 0 0 20px;
}

/* Tips */
.tut-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(0,158,227,0.08);
    border-left: 3px solid #009ee3;
    border-radius: 0 8px 8px 0;
    font-size: 0.88em;
    color: #cbd5e1;
    line-height: 1.5;
}

.tut-tip i {
    color: #46D6FF;
    margin-top: 2px;
    flex-shrink: 0;
}

.tut-tip--warning {
    background: rgba(245,158,11,0.1);
    border-left-color: #f59e0b;
}

.tut-tip--warning i {
    color: #fbbf24;
}

.tut-tip--danger {
    background: rgba(239,68,68,0.1);
    border-left-color: #ef4444;
}

.tut-tip--danger i {
    color: #f87171;
}

.tut-tip--success {
    background: rgba(0,166,80,0.1);
    border-left-color: #00a650;
}

.tut-tip--success i {
    color: #4ade80;
}

/* ---- Browser mockup ---- */
.tut-browser {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 0 80px rgba(0,158,227,0.08);
    border: 1px solid rgba(255,255,255,0.08);
}

.tut-browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.tut-browser-dots {
    display: flex;
    gap: 6px;
}

.tut-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.tut-browser-dots span:nth-child(1) { background: #ef4444; }
.tut-browser-dots span:nth-child(2) { background: #f59e0b; }
.tut-browser-dots span:nth-child(3) { background: #22c55e; }

.tut-browser-url {
    flex: 1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.78em;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tut-browser-url i {
    color: #22c55e;
    font-size: 0.85em;
}

.tut-browser-body {
    padding: 24px;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Mockup inner screens ---- */

/* Developers portal */
.tut-mockup-dev {
    width: 100%;
    text-align: center;
}

.tut-mock-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
    font-weight: 700;
    color: #334155;
    font-size: 0.95em;
}

.tut-mock-hero h4 {
    font-size: 1.3em;
    color: #0f172a;
    margin: 0 0 6px;
}

.tut-mock-hero p {
    color: #64748b;
    font-size: 0.9em;
    margin: 0 0 20px;
}

.tut-mock-btn {
    display: inline-block;
    padding: 10px 28px;
    background: #009ee3;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88em;
    cursor: default;
}

/* Login mockup */
.tut-mockup-login {
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.tut-login-logo {
    margin-bottom: 24px;
}

.tut-login-field {
    text-align: left;
    margin-bottom: 14px;
}

.tut-login-field span {
    display: block;
    font-size: 0.78em;
    color: #64748b;
    margin-bottom: 5px;
    font-weight: 600;
}

.tut-input-mock {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.88em;
    color: #334155;
    font-family: inherit;
}

.tut-input-mock.token-pasted {
    border-color: #00a650;
    background: rgba(0,166,80,0.04);
    color: #00a650;
    font-family: 'Courier New', monospace;
    font-size: 0.8em;
}

/* Create app mockup */
.tut-mockup-create {
    width: 100%;
    text-align: left;
}

.tut-mockup-create h4 {
    font-size: 1.1em;
    color: #0f172a;
    margin: 0 0 20px;
}

.tut-form-group {
    margin-bottom: 16px;
}

.tut-form-group label {
    display: block;
    font-size: 0.82em;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}

.tut-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tut-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.88em;
    color: #475569;
    cursor: default;
}

.tut-radio.selected {
    border-color: #009ee3;
    background: rgba(0,158,227,0.04);
    color: #009ee3;
    font-weight: 600;
}

.tut-radio i {
    font-size: 1em;
}

/* Credentials mockup */
.tut-mockup-creds {
    width: 100%;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    text-align: left;
}

.tut-creds-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tut-creds-menu-item {
    padding: 8px 12px;
    font-size: 0.78em;
    color: #64748b;
    border-radius: 6px;
    cursor: default;
}

.tut-creds-menu-item.active {
    background: rgba(0,158,227,0.08);
    color: #009ee3;
    font-weight: 700;
}

.tut-creds-main h4 {
    font-size: 0.95em;
    color: #0f172a;
    margin: 0 0 16px;
}

.tut-cred-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.82em;
}

.tut-cred-row span {
    font-weight: 600;
    color: #64748b;
    min-width: 80px;
}

.tut-cred-value {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #334155;
    background: #f8fafc;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tut-cred-value.blurred {
    filter: blur(3px);
    opacity: 0.5;
}

.tut-cred-row.highlight {
    background: rgba(0,166,80,0.06);
    border: 1.5px solid rgba(0,166,80,0.25);
}

.tut-cred-row.highlight .tut-cred-value {
    border-color: #00a650;
    color: #00a650;
}

.tut-copy-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #009ee3;
    color: #fff;
    border-radius: 6px;
    font-size: 0.85em;
    cursor: default;
}

/* Copy token mockup */
.tut-mockup-copy {
    width: 100%;
    text-align: left;
}

.tut-token-display {
    margin-bottom: 20px;
}

.tut-token-label {
    font-size: 0.82em;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
}

.tut-token-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0fdf4;
    border: 1.5px solid #00a650;
    border-radius: 10px;
    padding: 12px 16px;
}

.tut-token-box code {
    flex: 1;
    font-size: 0.72em;
    color: #334155;
    word-break: break-all;
    line-height: 1.4;
}

.tut-token-copy {
    flex-shrink: 0;
    padding: 6px 14px;
    border: none;
    border-radius: 6px;
    font-size: 0.78em;
    font-weight: 700;
    cursor: default;
    background: #e2e8f0;
    color: #64748b;
}

.tut-token-copy.copied {
    background: #00a650;
    color: #fff;
}

.tut-mock-toast {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #0f172a;
    color: #fff;
    border-radius: 8px;
    font-size: 0.82em;
    font-weight: 600;
}

.tut-mock-toast i {
    color: #00a650;
}

/* Final step mockup */
.tut-mockup-final {
    width: 100%;
    text-align: left;
}

.tut-mockup-final h4 {
    font-size: 1.05em;
    color: #0f172a;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tut-mockup-final h4 i {
    color: #64748b;
}

.tut-btn-success {
    background: #00a650 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tut-success-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 14px 18px;
    background: #f0fdf4;
    border: 1.5px solid #00a650;
    border-radius: 10px;
    font-size: 0.88em;
    color: #15803d;
    font-weight: 600;
    animation: tutFadeIn 0.6s ease;
}

.tut-success-msg i {
    color: #00a650;
    font-size: 1.3em;
}

/* ---- Slider navigation ---- */
.tut-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 36px;
    gap: 16px;
}

.tut-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    font-size: 0.88em;
    font-weight: 700;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 130px;
    justify-content: center;
}

.tut-nav-btn:hover:not(:disabled) {
    border-color: #46D6FF;
    color: #46D6FF;
    background: rgba(70,214,255,0.08);
}

.tut-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.tut-next:not(:disabled) {
    background: #009ee3;
    border-color: #009ee3;
    color: #fff;
}

.tut-next:not(:disabled):hover {
    background: #0086c4;
    border-color: #0086c4;
    color: #fff;
}

/* Dots */
.tut-dots {
    display: flex;
    gap: 6px;
}

.tut-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.tut-dot span {
    font-size: 0.72em;
    font-weight: 800;
    color: rgba(255,255,255,0.4);
}

.tut-dot.active {
    background: #009ee3;
    border-color: #009ee3;
    transform: scale(1.1);
}

.tut-dot.active span {
    color: #fff;
}

.tut-dot.completed {
    background: #00a650;
    border-color: #00a650;
}

.tut-dot.completed span {
    color: #fff;
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE — ALL SECTIONS
   ============================================================ */

/* ---- TABLET (max 980px) ---- */
@media (max-width: 980px) {
    /* Grids → single column */
    .pc-grid--3,
    .steps-grid.pc-grid--3 {
        grid-template-columns: 1fr !important;
    }

    .pc-grid--2 {
        grid-template-columns: 1fr !important;
    }

    .pc-section {
        padding: 60px 16px;
    }

    .pc-section__head {
        margin-bottom: 28px;
    }

    /* Pain cards → vertical stack */
    .pain-grid {
        flex-direction: column;
        align-items: center;
    }
    .pain-card {
        min-width: unset;
        max-width: 500px;
        width: 100%;
    }

    /* Trust features → single column */
    .trust-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Demo card → single column */
    .demo-card {
        grid-template-columns: 1fr;
        padding: 28px 22px;
    }
    .demo-action {
        align-items: stretch;
    }
    .demo-btn {
        max-width: none;
    }

    /* Step cards gap tighter */
    .steps-section .steps-grid {
        gap: 20px;
    }

    /* Footer CTA */
    .final-cta {
        padding: 80px 20px 36px;
    }
    .final-cta h2 {
        font-size: clamp(26px, 5vw, 40px);
    }

    /* Validation section */
    .validation-section {
        padding: 70px 16px;
    }

    /* Notification mockup inline styles need override */
    .notification-mockup {
        transform: rotate(0deg) !important;
    }

    /* Token tutorial */
    .token-tutorial {
        padding: 70px 16px;
    }
    .tut-slide-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .tut-text {
        padding-top: 0;
    }
    .tut-mockup-creds {
        grid-template-columns: 1fr;
    }
    .tut-creds-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
    .tut-creds-menu-item {
        padding: 6px 10px;
        font-size: 0.72em;
    }
    .tut-nav-btn {
        min-width: 110px;
        padding: 8px 16px;
        font-size: 0.82em;
    }
    .tut-dot {
        width: 28px;
        height: 28px;
    }
}

/* ---- MOBILE (max 640px) ---- */
@media (max-width: 640px) {
    /* Pain section */
    .pain-section {
        padding: 60px 16px;
    }
    .pain-header h2 {
        font-size: 1.5em;
    }

    /* Stats strip */
    .stats-strip {
        padding: 36px 16px;
    }

    /* Steps */
    .step-card {
        padding: 24px 20px;
    }
    .step-number {
        font-size: 60px;
    }

    /* Demo section */
    .demo-section {
        padding: 60px 16px;
    }
    .demo-head h2 {
        font-size: 1.5em;
    }

    /* Benefits */
    .pc-card--benefit {
        padding: 20px 18px;
    }

    /* Trust section */
    .trust-section-v2 {
        padding: 70px 16px;
    }
    .trust-feature-card {
        padding: 28px 20px;
    }
    .trust-tags-v2 span {
        padding: 6px 14px;
        font-size: 0.82em;
    }

    /* FAQ */
    .faq-section {
        padding: 60px 16px;
    }
    .faq-item {
        padding: 16px 18px;
    }
    .faq-item summary {
        font-size: 0.95em;
    }

    /* Footer guarantee */
    .final-guarantee {
        flex-direction: column;
        gap: 4px;
        font-size: 0.82em;
    }

    /* CTA Row center on mobile */
    .pc-ctaRow {
        justify-content: center;
    }

    /* Token tutorial */
    .token-tutorial {
        padding: 60px 12px;
    }
    .tut-slider {
        max-width: 100%;
    }
    .tut-slides {
        min-height: auto;
    }
    .tut-slide-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tut-text h3 {
        font-size: 1.2em;
    }
    .tut-browser-body {
        padding: 16px;
        min-height: 200px;
    }
    .tut-controls {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .tut-dots {
        order: -1;
        width: 100%;
        justify-content: center;
    }
    .tut-nav-btn {
        flex: 1;
        min-width: unset;
    }
    .tut-token-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .tut-mockup-creds {
        grid-template-columns: 1fr;
    }
    .tut-creds-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .tut-cred-row {
        flex-wrap: wrap;
    }
}

/* =====================  FLOATING ACTION BUTTONS  ===================== */

/* WhatsApp FAB */
.fab-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .45), 0 2px 8px rgba(0,0,0,.2);
    transition: transform .25s ease, box-shadow .25s ease;
    text-decoration: none;
    cursor: pointer;
}
.fab-whatsapp:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .6), 0 4px 12px rgba(0,0,0,.25);
}
.fab-whatsapp:active {
    transform: scale(.95);
}

/* Pulse animation */
.fab-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, .3);
    animation: fabPulse 2.5s ease-in-out infinite;
    z-index: -1;
}

@keyframes fabPulse {
    0%, 100% { transform: scale(1); opacity: .6; }
    50% { transform: scale(1.25); opacity: 0; }
}

/* Back to top FAB */
.fab-top {
    position: fixed;
    bottom: 120px;
    right: 32px;
    z-index: 9998;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #e2e8f0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity .35s ease, visibility .35s ease, transform .35s ease, background .2s ease, border-color .2s ease;
}
.fab-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.fab-top:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .25);
    color: #fff;
}
.fab-top:active {
    transform: scale(.9);
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .fab-whatsapp {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 18px;
    }
    .fab-whatsapp svg {
        width: 24px;
        height: 24px;
    }
    .fab-top {
        width: 38px;
        height: 38px;
        bottom: 82px;
        right: 22px;
        font-size: 14px;
    }
}
