 /* ============================================
           RESET & GLOBAL
           ============================================ */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --navy: #1F60AB;
            --navy-dark: #174A86;
            --purple-deep: #0E335E;
            --coral: #ED6B12;
            --pink: #F28A35;
            --white: #ffffff;
            --gray-100: #f6f7f8;
            --gray-200: #ebecef;
            --gray-300: #ced2d9;
            --gray-500: #959eac;
            --gray-700: #606a7b;
            --gray-900: #333942;
            --success: #28c76f;
            --warning: #ff9f43;
            --info: #1F60AB;
        }

        html { scroll-behavior: smooth; }

        .xrm-page {
            font-family: 'Inter', 'Montserrat', sans-serif;
            color: var(--gray-900);
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: rgba(1, 46, 139, 0.95);
            backdrop-filter: blur(20px);
            padding: 0 2rem;
            height: 70px;
            display: flex; align-items: center; justify-content: space-between;
            transition: all 0.3s ease;
        }

        .nav.scrolled {
            background: rgba(1, 46, 139, 0.98);
            box-shadow: 0 4px 30px rgba(0,0,0,0.15);
        }

        .nav-logo {
            display: flex; align-items: center; gap: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800; font-size: 1.4rem; color: var(--white);
            text-decoration: none;
        }

        .nav-logo .logo-icon {
            width: 40px; height: 40px;
            background: linear-gradient(135deg, var(--coral), var(--pink));
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem; font-weight: 900; color: white;
        }

        .nav-links {
            display: flex; gap: 2rem; list-style: none; align-items: center;
        }

        .nav-links a {
            color: rgba(255,255,255,0.85); text-decoration: none;
            font-size: 0.9rem; font-weight: 500;
            transition: color 0.2s;
        }

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

        .nav-cta {
            background: linear-gradient(135deg, var(--coral), var(--pink)) !important;
            padding: 10px 24px !important; border-radius: 8px !important;
            color: white !important; font-weight: 600 !important;
            transition: transform 0.2s, box-shadow 0.2s !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 25px rgba(245,78,94,0.4) !important;
        }

        .hamburger {
            display: none; cursor: pointer; flex-direction: column; gap: 5px;
        }
        .hamburger span {
            width: 25px; height: 2px; background: white; border-radius: 2px;
            transition: 0.3s;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 40%, var(--purple-deep) 100%);
            display: flex; align-items: center; justify-content: center;
            padding: 100px 2rem 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute; top: -50%; right: -30%;
            width: 80%; height: 200%;
            background: radial-gradient(ellipse, rgba(245,78,94,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute; bottom: -20%; left: -20%;
            width: 60%; height: 100%;
            background: radial-gradient(ellipse, rgba(63,0,65,0.3) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-inner {
            max-width: 1300px; width: 100%;
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 4rem; align-items: center;
            position: relative; z-index: 2;
        }

        .hero-content { animation: fadeInUp 1s ease; }

        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 50px; padding: 8px 20px;
            font-size: 0.85rem; color: rgba(255,255,255,0.9);
            margin-bottom: 1.5rem; backdrop-filter: blur(10px);
        }

        .hero-badge i { color: var(--coral); }

        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem; font-weight: 800;
            color: var(--white); line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            background: linear-gradient(135deg, var(--coral), var(--pink));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-desc {
            font-size: 1.15rem; color: rgba(255,255,255,0.75);
            line-height: 1.7; margin-bottom: 2.5rem; max-width: 520px;
        }

        .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

        .btn-primary {
            background: linear-gradient(135deg, var(--coral), var(--pink));
            color: #fff; border: none; padding: 16px 36px;
            border-radius: 10px; font-size: 1rem; font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            cursor: pointer; transition: all 0.3s;
            display: inline-flex; align-items: center; gap: 10px;
            text-decoration: none;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(245,78,94,0.35);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.08);
            border: 1.5px solid rgba(255,255,255,0.25);
            color: white; padding: 16px 36px;
            border-radius: 10px; font-size: 1rem; font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            cursor: pointer; transition: all 0.3s;
            display: inline-flex; align-items: center; gap: 10px;
            text-decoration: none;
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }

        .hero-stats {
            display: flex; gap: 3rem; margin-top: 3rem;
        }

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

        .hero-stat .number {
            font-family: 'Montserrat'; font-size: 2rem; font-weight: 800;
            color: var(--white);
        }

        .hero-stat .label {
            font-size: 0.85rem; color: rgba(255,255,255,0.55);
            margin-top: 2px;
        }

        /* Phone Mockup in hero */
        .hero-phone-wrapper {
            display: flex; justify-content: center; align-items: center;
            animation: fadeInUp 1s ease 0.3s both;
        }

        /* ============================================
           PHONE MOCKUP COMPONENT
           ============================================ */
        .phone-mockup {
            width: 280px; height: 580px;
            background: #1a1a1a;
            border-radius: 36px;
            padding: 12px;
            box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
            position: relative;
        }

        .phone-mockup.large { width: 300px; height: 620px; }

        .phone-screen {
            width: 100%; height: 100%;
            background: var(--white);
            border-radius: 26px;
            overflow: hidden;
            display: flex; flex-direction: column;
        }

        .phone-statusbar {
            height: 28px; padding: 6px 20px 0;
            display: flex; justify-content: space-between; align-items: center;
            font-size: 0.65rem; font-weight: 600;
            background: var(--navy);
            color: white;
        }

        .phone-statusbar-icons { display: flex; gap: 4px; font-size: 0.6rem; }

        .phone-navbar {
            height: 44px;
            background: var(--navy);
            display: flex; align-items: center;
            padding: 0 14px;
            gap: 10px;
        }

        .phone-navbar .hamburger-icon {
            color: white; font-size: 1rem;
        }

        .phone-navbar .nav-title {
            color: white; font-size: 0.85rem; font-weight: 700;
            font-family: 'Montserrat', sans-serif;
        }

        .phone-body {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .phone-footer {
            height: 32px;
            background: #000;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.6rem; color: white; font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-family: 'Montserrat', sans-serif;
        }

        /* ============================================
           PHONE: LOGIN SCREEN
           ============================================ */
        .screen-login {
            background: linear-gradient(135deg, var(--navy) 0%, var(--purple-deep) 100%);
            display: flex; flex-direction: column; align-items: center;
            justify-content: center; padding: 1.5rem;
            height: 100%;
        }

        .screen-login .logo-circle {
            width: 80px; height: 80px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 12px; border: 2px solid rgba(255,255,255,0.15);
        }

        .screen-login .logo-circle i { font-size: 2rem; color: white; }

        .screen-login h3 {
            color: white; font-family: 'Montserrat'; font-weight: 700;
            font-size: 0.95rem; margin-bottom: 1.2rem;
        }

        .screen-login .input-field {
            width: 100%; height: 40px; border-radius: 20px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.18);
            color: white; padding: 0 16px;
            font-size: 0.75rem; margin-bottom: 10px;
            display: flex; align-items: center; gap: 8px;
        }

        .screen-login .input-field i {
            color: rgba(255,255,255,0.5); font-size: 0.75rem;
        }

        .screen-login .input-field span {
            color: rgba(255,255,255,0.45); font-size: 0.72rem;
        }

        .screen-login .remember-row {
            display: flex; align-items: center; gap: 6px;
            width: 100%; margin-bottom: 14px;
            font-size: 0.7rem; color: rgba(255,255,255,0.7);
        }

        .screen-login .remember-row .toggle {
            width: 32px; height: 18px; background: var(--coral);
            border-radius: 9px; position: relative;
        }

        .screen-login .remember-row .toggle::after {
            content: ''; position: absolute; right: 2px; top: 2px;
            width: 14px; height: 14px; background: white; border-radius: 50%;
        }

        .screen-login .btn-acceder {
            width: 100%; height: 40px;
            background: linear-gradient(135deg, var(--coral), var(--pink));
            border-radius: 10px; border: none;
            color: white; font-weight: 700;
            font-family: 'Montserrat'; font-size: 0.8rem;
            letter-spacing: 1px;
            display: flex; align-items: center; justify-content: center;
        }

        .screen-login .footer-text {
            position: absolute; bottom: 12px;
            font-size: 0.55rem; color: rgba(255,255,255,0.4);
            text-align: center; width: 100%;
        }

        /* ============================================
           PHONE: DASHBOARD SCREEN
           ============================================ */
        .screen-dashboard {
            padding: 12px; height: 100%;
            display: flex; flex-direction: column;
        }

        .screen-dashboard .company-selector {
            border: 1.5px solid var(--gray-300);
            border-radius: 8px; padding: 10px 12px;
            font-size: 0.7rem; color: var(--gray-700);
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 12px;
        }

        .screen-dashboard .company-selector i { color: var(--gray-500); font-size: 0.7rem; }

        .screen-dashboard .welcome-card {
            background: linear-gradient(135deg, var(--navy), var(--purple-deep));
            border-radius: 12px; padding: 16px;
            color: white; margin-bottom: 12px;
        }

        .screen-dashboard .welcome-card h4 {
            font-family: 'Montserrat'; font-size: 0.85rem; font-weight: 700;
            margin-bottom: 4px;
        }

        .screen-dashboard .welcome-card p {
            font-size: 0.65rem; opacity: 0.7;
        }

        .screen-dashboard .quick-stats {
            display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
            margin-bottom: 12px;
        }

        .screen-dashboard .stat-card {
            background: var(--gray-100);
            border-radius: 10px; padding: 12px;
            text-align: center;
        }

        .screen-dashboard .stat-card i {
            font-size: 1.2rem; margin-bottom: 4px;
        }

        .screen-dashboard .stat-card .stat-val {
            font-family: 'Montserrat'; font-weight: 800;
            font-size: 1.1rem; color: var(--navy);
        }

        .screen-dashboard .stat-card .stat-label {
            font-size: 0.55rem; color: var(--gray-500);
        }

        /* ============================================
           PHONE: SUBMENU SCREEN
           ============================================ */
        .screen-submenu {
            padding: 10px; height: 100%;
            display: flex; flex-direction: column;
        }

        .screen-submenu .menu-grid {
            display: grid; grid-template-columns: 1fr 1fr 1fr;
            gap: 8px; flex: 1;
        }

        .screen-submenu .menu-item {
            border: 1.5px solid var(--gray-200);
            border-radius: 12px;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            padding: 10px 4px;
            transition: all 0.2s;
            cursor: pointer;
            min-height: 80px;
        }

        .screen-submenu .menu-item:hover {
            border-color: var(--coral);
            background: rgba(245,78,94,0.03);
        }

        .screen-submenu .menu-item i {
            font-size: 1.4rem; color: var(--navy);
            margin-bottom: 6px;
        }

        .screen-submenu .menu-item span {
            font-size: 0.5rem; text-align: center;
            color: var(--gray-900); font-weight: 500;
            line-height: 1.3;
        }

        /* ============================================
           PHONE: INVENTORY SCREEN
           ============================================ */
        .screen-inventory {
            padding: 10px; height: 100%;
            overflow-y: auto;
        }

        .screen-inventory .form-group {
            margin-bottom: 8px;
        }

        .screen-inventory .form-label {
            font-size: 0.55rem; color: var(--gray-500);
            font-weight: 600; text-transform: uppercase;
            margin-bottom: 2px; display: block;
        }

        .screen-inventory .form-input {
            width: 100%; height: 32px;
            border: 1.5px solid var(--gray-300);
            border-radius: 6px; padding: 0 8px;
            font-size: 0.7rem; color: var(--gray-900);
            display: flex; align-items: center;
        }

        .screen-inventory .form-input.focused {
            border-color: var(--navy);
        }

        .screen-inventory .form-row {
            display: flex; gap: 6px;
        }

        .screen-inventory .form-row > * { flex: 1; }

        .screen-inventory .scan-row {
            display: flex; gap: 6px; align-items: flex-end;
            margin-bottom: 8px;
        }

        .screen-inventory .btn-scan {
            width: 32px; height: 32px;
            background: linear-gradient(135deg, var(--coral), var(--pink));
            border-radius: 6px; display: flex;
            align-items: center; justify-content: center;
            color: white; font-size: 0.65rem; font-weight: 800;
            flex-shrink: 0;
        }

        .screen-inventory .article-desc {
            background: var(--gray-100); border-radius: 6px;
            padding: 8px; text-align: center;
            font-size: 0.65rem; font-weight: 700;
            color: var(--gray-900);
            margin: 8px 0;
        }

        .screen-inventory .btn-row {
            display: flex; gap: 8px; justify-content: center;
            margin-top: 10px;
        }

        .screen-inventory .btn-action {
            padding: 8px 20px; border-radius: 8px;
            font-size: 0.65rem; font-weight: 700;
            font-family: 'Montserrat'; border: none;
            color: white; cursor: pointer;
        }

        .screen-inventory .btn-accept {
            background: linear-gradient(135deg, var(--coral), var(--pink));
        }

        .screen-inventory .btn-cancel {
            background: var(--gray-500);
        }

        /* ============================================
           PHONE: LIST SCREEN (Pedidos, Ordenes, etc.)
           ============================================ */
        .screen-list {
            height: 100%; display: flex; flex-direction: column;
        }

        .screen-list .search-bar {
            margin: 8px 10px;
            background: var(--gray-100);
            border-radius: 8px; padding: 8px 12px;
            display: flex; align-items: center; gap: 8px;
            font-size: 0.7rem; color: var(--gray-500);
        }

        .screen-list .search-bar i { font-size: 0.75rem; }

        .screen-list .list-items { flex: 1; overflow: hidden; }

        .screen-list .list-item {
            padding: 10px 12px;
            border-bottom: 1px solid var(--gray-200);
        }

        .screen-list .list-item-header {
            display: flex; justify-content: space-between;
            margin-bottom: 3px;
        }

        .screen-list .list-item-header .order-num {
            font-size: 0.72rem; font-weight: 700; color: var(--gray-900);
        }

        .screen-list .list-item-header .date {
            font-size: 0.62rem; color: var(--gray-500);
        }

        .screen-list .list-item .client {
            font-size: 0.65rem; color: var(--gray-700);
        }

        .screen-list .list-item .sub-info {
            font-size: 0.6rem; color: var(--gray-500); margin-top: 2px;
        }

        .screen-list .list-item.highlighted {
            border-left: 3px solid var(--success);
            background: rgba(40,199,111,0.04);
        }

        .screen-list .list-item.warning {
            border-left: 3px solid var(--warning);
            background: rgba(255,159,67,0.04);
        }

        /* ============================================
           PHONE: RECEPTION SCREEN (Compras)
           ============================================ */
        .screen-reception {
            padding: 10px; height: 100%;
            display: flex; flex-direction: column;
        }

        .screen-reception .top-buttons {
            display: flex; gap: 6px; margin-bottom: 8px;
        }

        .screen-reception .top-btn {
            flex: 1; padding: 6px;
            border-radius: 6px; font-size: 0.6rem;
            font-weight: 700; text-align: center;
            font-family: 'Montserrat';
        }

        .screen-reception .header-bar {
            background: #000; color: white;
            padding: 6px 10px; font-size: 0.6rem;
            font-weight: 700; text-align: center;
            margin: 8px -10px;
            text-transform: uppercase;
        }

        .screen-reception .line-item {
            display: flex; align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid var(--gray-200);
            gap: 8px;
        }

        .screen-reception .line-qty {
            font-family: 'Montserrat'; font-weight: 800;
            font-size: 1rem; color: var(--navy);
            min-width: 50px; text-align: center;
        }

        .screen-reception .line-desc {
            font-size: 0.62rem; color: var(--gray-700);
            line-height: 1.3;
        }

        /* ============================================
           PHONE: STOCK QUERY SCREEN
           ============================================ */
        .screen-stock-query {
            padding: 10px; height: 100%;
            display: flex; flex-direction: column;
        }

        .screen-stock-query .result-card {
            border: 1.5px solid var(--gray-200);
            border-radius: 8px; padding: 10px;
            margin-bottom: 8px;
        }

        .screen-stock-query .result-card .warehouse {
            font-size: 0.6rem; color: var(--gray-500); font-weight: 600;
        }

        .screen-stock-query .result-card .article {
            font-size: 0.7rem; font-weight: 700; color: var(--gray-900);
            margin: 2px 0;
        }

        .screen-stock-query .result-card .location {
            font-size: 0.6rem; color: var(--gray-500);
        }

        .screen-stock-query .result-card .stock-value {
            font-family: 'Montserrat'; font-weight: 800;
            font-size: 1.1rem; color: var(--navy);
            text-align: right; margin-top: 4px;
        }

        /* ============================================
           PHONE: TRANSFER SCREEN
           ============================================ */
        .screen-transfer {
            padding: 10px; height: 100%;
            overflow-y: auto;
        }

        .screen-transfer .section-title {
            font-size: 0.6rem; font-weight: 700;
            color: var(--coral); text-transform: uppercase;
            margin: 8px 0 4px; letter-spacing: 0.5px;
        }

        /* ============================================
           PHONE: FLYOUT / SIDEBAR
           ============================================ */
        .screen-flyout {
            position: absolute; top: 0; left: 0;
            width: 75%; height: 100%;
            background: var(--navy);
            z-index: 10;
            display: flex; flex-direction: column;
            box-shadow: 10px 0 40px rgba(0,0,0,0.3);
        }

        .screen-flyout .flyout-header {
            padding: 20px 14px 14px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .screen-flyout .flyout-header .empresa {
            font-family: 'Montserrat'; font-weight: 700;
            font-size: 0.8rem; color: white;
        }

        .screen-flyout .flyout-header .user-name {
            font-size: 0.72rem; color: rgba(255,255,255,0.8);
            font-weight: 600; margin-top: 4px;
        }

        .screen-flyout .flyout-header .user-group {
            font-size: 0.62rem; color: rgba(255,255,255,0.5);
        }

        .screen-flyout .flyout-items { flex: 1; padding: 8px 0; }

        .screen-flyout .flyout-item {
            display: flex; align-items: center; gap: 12px;
            padding: 11px 16px;
            color: rgba(255,255,255,0.85);
            font-size: 0.75rem; font-weight: 600;
            transition: background 0.2s;
        }

        .screen-flyout .flyout-item:hover,
        .screen-flyout .flyout-item.active {
            background: rgba(255,255,255,0.08);
        }

        .screen-flyout .flyout-item i {
            width: 22px; text-align: center; font-size: 0.85rem;
        }

        .screen-flyout .flyout-footer {
            padding: 10px 14px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.52rem; color: rgba(255,255,255,0.35);
            line-height: 1.6;
        }

        /* ============================================
           SECTIONS
           ============================================ */
        section {
            padding: 100px 2rem;
        }

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

        .section-tag {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(1,46,139,0.06);
            color: var(--navy); font-size: 0.8rem; font-weight: 700;
            padding: 8px 18px; border-radius: 50px;
            margin-bottom: 1rem;
            font-family: 'Montserrat';
            letter-spacing: 0.5px;
        }

        .section-title {
            font-family: 'Montserrat'; font-size: 2.8rem;
            font-weight: 800; color: var(--gray-900);
            line-height: 1.2; margin-bottom: 1rem;
        }

        .section-title span {
            background: linear-gradient(135deg, var(--coral), var(--pink));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            font-size: 1.1rem; color: var(--gray-500);
            max-width: 600px; line-height: 1.7;
        }

        /* ============================================
           PROBLEM SECTION
           ============================================ */
        .problems {
            background: var(--gray-100);
        }

        .problems-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 2rem; margin-top: 3rem;
        }

        .problem-card {
            background: white; border-radius: 16px;
            padding: 2rem; transition: all 0.3s;
            border: 1px solid var(--gray-200);
        }

        .problem-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        }

        .problem-icon {
            width: 56px; height: 56px;
            background: rgba(245,78,94,0.08);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem; color: var(--coral);
            margin-bottom: 1.2rem;
        }

        .problem-card h3 {
            font-family: 'Montserrat'; font-weight: 700;
            font-size: 1.1rem; margin-bottom: 0.7rem;
        }

        .problem-card p {
            font-size: 0.92rem; color: var(--gray-500); line-height: 1.6;
        }

        /* ============================================
           MODULE SECTIONS
           ============================================ */
        .module-section {
            padding: 100px 2rem;
        }

        .module-section:nth-child(even) {
            background: var(--gray-100);
        }

        .module-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 5rem; align-items: center;
            margin-top: 3rem;
        }

        .module-grid.reverse .module-phones {
            order: -1;
        }

        .module-phones {
            display: flex; gap: 1.5rem; justify-content: center;
            align-items: flex-start;
        }

        .module-phones .phone-mockup:nth-child(2) {
            margin-top: 40px;
        }

        .module-content { }

        .module-content .module-tag {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.75rem; font-weight: 700;
            color: var(--coral); text-transform: uppercase;
            letter-spacing: 1.5px; margin-bottom: 0.8rem;
            font-family: 'Montserrat';
        }

        .module-content h2 {
            font-family: 'Montserrat'; font-size: 2.2rem;
            font-weight: 800; line-height: 1.2;
            margin-bottom: 1rem; color: var(--gray-900);
        }

        .module-content .module-desc {
            font-size: 1rem; color: var(--gray-500);
            line-height: 1.7; margin-bottom: 2rem;
        }

        .feature-list { list-style: none; }

        .feature-list li {
            display: flex; align-items: flex-start; gap: 12px;
            margin-bottom: 1rem;
        }

        .feature-list li .check {
            width: 24px; height: 24px;
            background: rgba(40,199,111,0.1);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; margin-top: 2px;
        }

        .feature-list li .check i {
            font-size: 0.7rem; color: var(--success);
        }

        .feature-list li .feature-text {
            font-size: 0.95rem; color: var(--gray-700);
            line-height: 1.5;
        }

        .feature-list li .feature-text strong {
            color: var(--gray-900);
        }

        /* ============================================
           BENEFITS SECTION
           ============================================ */
        .benefits-grid {
            display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 2rem; margin-top: 3rem;
        }

        .benefit-card {
            text-align: center; padding: 2.5rem 1.5rem;
            border-radius: 16px; background: white;
            border: 1px solid var(--gray-200);
            transition: all 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.08);
            border-color: var(--coral);
        }

        .benefit-icon {
            width: 70px; height: 70px;
            background: linear-gradient(135deg, var(--navy), var(--purple-deep));
            border-radius: 20px; margin: 0 auto 1.2rem;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.6rem; color: white;
        }

        .benefit-card h3 {
            font-family: 'Montserrat'; font-weight: 700;
            font-size: 1.05rem; margin-bottom: 0.7rem;
        }

        .benefit-card p {
            font-size: 0.88rem; color: var(--gray-500); line-height: 1.6;
        }

        .benefit-number {
            font-family: 'Montserrat'; font-weight: 900;
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--coral), var(--pink));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        /* ============================================
           CTA SECTION
           ============================================ */
        .cta-section {
            background: linear-gradient(135deg, var(--navy) 0%, var(--purple-deep) 100%);
            text-align: center; padding: 100px 2rem;
            position: relative; overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute; top: -50%; left: -30%;
            width: 80%; height: 200%;
            background: radial-gradient(ellipse, rgba(245,78,94,0.1) 0%, transparent 60%);
        }

        .cta-inner {
            position: relative; z-index: 2; max-width: 700px; margin: 0 auto;
        }

        .cta-section h2 {
            font-family: 'Montserrat'; font-size: 2.8rem;
            font-weight: 800; color: white;
            margin-bottom: 1rem; line-height: 1.2;
        }

        .cta-section p {
            font-size: 1.1rem; color: rgba(255,255,255,0.65);
            margin-bottom: 2.5rem; line-height: 1.7;
        }

        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: #0a0a0a; padding: 3rem 2rem;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Montserrat'; font-weight: 800;
            font-size: 1.3rem; color: white; margin-bottom: 0.5rem;
        }

        .footer p {
            font-size: 0.85rem; color: rgba(255,255,255,0.35);
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0; transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal.visible {
            opacity: 1; transform: translateY(0);
        }

        /* Floating animation for phones */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .float-anim { animation: float 6s ease-in-out infinite; }
        .float-anim-delay { animation: float 6s ease-in-out 1.5s infinite; }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 2.8rem; }
            .hero-inner { grid-template-columns: 1fr; text-align: center; }
            .hero-desc { margin: 0 auto 2rem; }
            .hero-buttons { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-phone-wrapper { margin-top: 2rem; }
            .module-grid { grid-template-columns: 1fr; gap: 3rem; }
            .module-grid.reverse .module-phones { order: 0; }
            .module-phones { justify-content: center; }
            .problems-grid { grid-template-columns: 1fr 1fr; }
            .benefits-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .hero h1 { font-size: 2.2rem; }
            .section-title { font-size: 2rem; }
            .module-content h2 { font-size: 1.8rem; }
            .problems-grid { grid-template-columns: 1fr; }
            .benefits-grid { grid-template-columns: 1fr; }
            .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
            .phone-mockup { width: 240px; height: 500px; }
            .phone-mockup.large { width: 260px; height: 540px; }
            .module-phones { flex-direction: column; align-items: center; }
            .module-phones .phone-mockup:nth-child(2) { margin-top: 0; }
        }

        @media (max-width: 480px) {
            .hero { padding: 80px 1rem 40px; }
            section { padding: 60px 1rem; }
            .hero h1 { font-size: 1.8rem; }
            .cta-section h2 { font-size: 2rem; }
        }