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

        :root {
            --bg: #000;
            --surface: #0a0a0a;
            --card: #111;
            --border: rgba(255,255,255,0.08);
            --text: #fff;
            --muted: rgba(255,255,255,0.5);
            --accent: #10B981;
            --accent-light: #34D399;
            --danger: #EF4444;
            --warning: #F59E0B;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 40px;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        nav img {
            height: 32px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
        }

        .nav-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text);
        }

        .nav-cta {
            padding: 10px 20px;
            background: var(--accent);
            color: #000;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 24px 80px;
            position: relative;
            overflow: hidden;
        }

        /* Video Background */
        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .hero-video-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
        }

        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.6) 0%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.8) 100%
            );
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 100px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent);
            margin-bottom: 32px;
        }

        .hero-badge .dot {
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero h1 {
            font-size: clamp(40px, 8vw, 80px);
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
        }

        .hero h1 span {
            display: block;
            background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(18px, 2vw, 22px);
            color: var(--muted);
            max-width: 700px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .hero-tagline {
            font-size: 16px;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 48px;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 40px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--accent);
            color: #000;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--border);
        }

        .btn-outline:hover {
            background: rgba(255,255,255,0.05);
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat .value {
            font-family: 'JetBrains Mono', monospace;
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
        }

        .hero-stat .label {
            font-size: 12px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 4px;
        }

        /* TRUST BAR */
        .trust-bar {
            padding: 40px 24px;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: var(--surface);
        }

        .trust-bar-inner {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--muted);
            font-size: 14px;
        }

        .trust-item svg {
            width: 20px;
            height: 20px;
            color: var(--accent);
        }

        /* SECTION BASE */
        .section {
            padding: 100px 24px;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .section-header p {
            font-size: 18px;
            color: var(--muted);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* STORY SECTION */
        .story-section {
            padding: 80px 24px;
            background: var(--surface);
            position: relative;
        }

        .story-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('Alarma que te notifica al celular.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.12;
            z-index: 0;
        }

        .story-section .story-container {
            position: relative;
            z-index: 1;
        }

        .story-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .time-display {
            text-align: center;
            margin-bottom: 40px;
        }

        .current-time {
            font-family: 'JetBrains Mono', monospace;
            font-size: clamp(56px, 12vw, 120px);
            font-weight: 600;
            letter-spacing: -0.02em;
            line-height: 1;
            margin-bottom: 8px;
            color: var(--accent);
        }

        .time-scenario {
            font-size: 14px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .play-controls {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 40px;
        }

        .play-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: var(--accent);
            color: #000;
            border: none;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }

        .skip-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: rgba(255,255,255,0.05);
            color: var(--text);
            border: 1px solid var(--border);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .skip-btn:hover {
            background: rgba(255,255,255,0.1);
        }

        .dual-story {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 40px;
        }

        .story-column {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
        }

        .story-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border);
        }

        .story-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .story-label.danger {
            color: var(--danger);
        }

        .story-label.success {
            color: var(--accent);
        }

        .story-body {
            padding: 20px;
        }

        .story-event {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.5s ease;
        }

        .story-event:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .story-event.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .event-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .event-time {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: var(--muted);
        }

        .event-title {
            font-size: 14px;
            font-weight: 600;
        }

        .danger-col .event-title {
            color: var(--danger);
        }

        .success-col .event-title {
            color: var(--accent);
        }

        .event-text {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
        }

        .situation-card {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 16px;
            padding: 28px;
            text-align: center;
            margin-bottom: 40px;
        }

        .situation-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--danger);
        }

        .situation-card p {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.7;
        }

        .result-summary {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .result-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }

        .result-card.danger {
            border-color: rgba(239, 68, 68, 0.3);
        }

        .result-card.success {
            border-color: rgba(16, 185, 129, 0.3);
        }

        .result-card h4 {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
        }

        .result-card.danger h4 {
            color: var(--danger);
        }

        .result-card.success h4 {
            color: var(--accent);
        }

        .result-card .value {
            font-family: 'JetBrains Mono', monospace;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .result-card.danger .value {
            color: var(--danger);
        }

        .result-card.success .value {
            color: var(--accent);
        }

        .result-card .label {
            font-size: 12px;
            color: var(--muted);
        }

        /* HOW IT WORKS */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .step-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            position: relative;
        }

        .step-number {
            position: absolute;
            top: -12px;
            left: 24px;
            width: 32px;
            height: 32px;
            background: var(--accent);
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
        }

        .step-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            margin-top: 8px;
        }

        .step-card p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
        }

        /* SERVICES */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .service-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateY(-4px);
        }

        .service-icon {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .service-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .service-card p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .service-tag {
            display: inline-block;
            padding: 6px 12px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--accent);
        }

        /* FEATURES */
        .features-section {
            background: var(--surface);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .feature-item {
            text-align: center;
            padding: 24px;
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 16px;
        }

        .feature-item h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .feature-item p {
            font-size: 12px;
            color: var(--muted);
        }

        /* TESTIMONIALS */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px;
        }

        .testimonial-text {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 20px;
        }

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

        .author-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent), #059669);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            color: #000;
        }

        .author-info h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .author-info span {
            font-size: 12px;
            color: var(--muted);
        }

        /* LOCATIONS */
        .locations-section {
            background: var(--surface);
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .location-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .location-card:hover {
            border-color: var(--accent);
        }

        .location-icon {
            font-size: 36px;
            margin-bottom: 16px;
        }

        .location-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .location-card p {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 16px;
        }

        .location-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--accent);
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
        }

        .location-link:hover {
            text-decoration: underline;
        }

        /* PROMO */
        .promo-section {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
            border-top: 1px solid rgba(16, 185, 129, 0.2);
            border-bottom: 1px solid rgba(16, 185, 129, 0.2);
            text-align: center;
        }

        .promo-badge {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .promo-section h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .promo-section p {
            font-size: 16px;
            color: var(--muted);
            margin-bottom: 24px;
        }

        .promo-section strong {
            color: var(--accent);
        }

        /* FAQ */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
        }

        .faq-item h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .faq-item p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7;
        }

        /* CTA */
        .cta-section {
            text-align: center;
            background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
        }

        .cta-section h2 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 18px;
            color: var(--muted);
            max-width: 500px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }

        .cta-trust {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 24px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--muted);
        }

        .trust-item svg {
            width: 16px;
            height: 16px;
            color: var(--accent);
        }

        /* FOOTER */
        .footer {
            padding: 60px 24px 40px;
            border-top: 1px solid var(--border);
        }

        .footer-top {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand img {
            height: 32px;
            margin-bottom: 16px;
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            max-width: 280px;
        }

        .footer-col h4 {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--muted);
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            max-width: 1100px;
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 13px;
            color: var(--muted);
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: #000;
        }

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

        /* WHATSAPP */
        .whatsapp-float {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 1000;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        /* CLIENT FLOAT BUTTON */
        .client-float-btn {
            position: fixed;
            top: 80px;
            right: 40px;
            z-index: 100;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 100px;
            text-decoration: none;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .client-float-btn:hover {
            background: rgba(16, 185, 129, 0.15);
            border-color: rgba(16, 185, 129, 0.4);
            transform: translateY(-2px);
        }

        .float-btn-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse-client 2s infinite;
        }

        @keyframes pulse-client {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
            50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
        }

        .float-btn-text {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .float-btn-arrow {
            font-size: 0.9rem;
            color: var(--accent);
            transition: transform 0.3s ease;
        }

        .client-float-btn:hover .float-btn-arrow {
            transform: translateX(4px);
        }

        @media (max-width: 600px) {
            .client-float-btn {
                top: 70px;
                right: 20px;
                padding: 8px 14px;
            }
            
            .float-btn-text {
                font-size: 0.65rem;
            }
        }

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

            .footer-top {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 16px 20px;
            }

            .nav-links {
                display: none;
            }

            .dual-story,
            .services-grid,
            .testimonials-grid,
            .locations-grid,
            .faq-grid,
            .steps-grid,
            .result-summary,
            .features-grid {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                gap: 24px;
            }

            .trust-bar-inner {
                gap: 24px;
            }

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

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