/*       * CSS Landing page - lap thang may khi dang xay
         * SCOPED CSS RESET & VARIABLES
         * Designed to not conflict with WordPress themes
         * All classes prefixed with 'lp-'
         */
        .lp-wrapper {
            --lp-primary: #E60012;
            --lp-primary-dark: #cc0010;
            --lp-dark: #0f172a;
            --lp-dark-secondary: #1e293b;
            --lp-text-main: #334155;
            --lp-text-light: #64748b;
            --lp-bg-light: #f8fafc;
            --lp-white: #ffffff;
            --lp-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
            --lp-radius: 12px;
            --lp-container: 1200px;
            
            font-family: 'Manrope', sans-serif;
            color: var(--lp-text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            width: 100%;
            overflow-x: hidden;
            box-sizing: border-box;
            background-color: var(--lp-white);
        }

        /* Reset within wrapper */
        .lp-wrapper *, .lp-wrapper *::before, .lp-wrapper *::after {
            box-sizing: inherit;
            margin: 0;
            padding: 0;
        }

        .lp-wrapper h1, .lp-wrapper h2, .lp-wrapper h3, .lp-wrapper h4 {
            font-family: 'Epilogue', sans-serif;
            color: var(--lp-dark);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .lp-wrapper p {
            margin-bottom: 1.5rem;
        }

        .lp-wrapper a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s ease;
        }

        .lp-wrapper ul {
            list-style: none;
        }

        .lp-wrapper img {
            max-width: 100%;
            display: block;
        }

        /* UTILITIES */
        .lp-container {
            max-width: var(--lp-container);
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        .lp-text-primary { color: var(--lp-primary); }
        .lp-text-center { text-align: center; }
        .lp-font-bold { font-weight: 700; }
        .lp-hidden-mobile { display: none; }
        
        @media (min-width: 768px) {
            .lp-hidden-mobile { display: block; }
            .lp-hidden-desktop { display: none; }
        }

        /* BUTTONS */
        .lp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .lp-btn-primary {
            background-color: var(--lp-primary);
            color: white;
            box-shadow: 0 4px 14px rgba(230, 0, 18, 0.3);
        }

        .lp-btn-primary:hover {
            background-color: var(--lp-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 0, 18, 0.4);
        }

        .lp-btn-outline {
            background-color: transparent;
            border: 2px solid var(--lp-dark-secondary);
            color: var(--lp-dark-secondary);
        }

        .lp-btn-outline:hover {
            background-color: var(--lp-dark-secondary);
            color: white;
        }

        .lp-btn-ghost {
            background: rgba(230, 0, 18, 0.1);
            color: var(--lp-primary);
        }

        /* HERO SECTION */
        .lp-hero {
            position: relative;
            background-color: var(--lp-dark);
            color: white;
            padding: 80px 0;
            overflow: hidden;
        }

        .lp-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
            z-index: 1;
        }

        .lp-hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        @media (min-width: 992px) {
            .lp-hero-content {
                grid-template-columns: 1.2fr 1fr;
                gap: 60px;
            }
        }

        .lp-hero-text h1 {
            font-size: 36px;
            color: white;
            margin-bottom: 20px;
        }

        @media (min-width: 768px) {
            .lp-hero-text h1 { font-size: 48px; }
        }

        .lp-hero-text h1 span {
            color: var(--lp-primary);
            background: rgba(255,255,255,0.05);
            padding: 0 5px;
            border-radius: 4px;
        }

        .lp-hero-text p {
            font-size: 18px;
            color: #cbd5e1;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .lp-hero-features {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .lp-feature-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 10px 16px;
            border-radius: 8px;
            font-size: 14px;
            backdrop-filter: blur(5px);
        }

        .lp-feature-badge span.material-symbols-outlined {
            color: var(--lp-primary);
        }

        /* HERO FORM */
        .lp-form-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
            border-top: 5px solid var(--lp-primary);
        }

        .lp-form-header h3 {
            font-size: 20px;
            margin-bottom: 5px;
        }
        
        .lp-form-header p {
            font-size: 13px;
            color: var(--lp-text-light);
            margin-bottom: 20px;
        }

        .lp-input-group {
            margin-bottom: 15px;
        }

        .lp-input-group label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--lp-dark);
        }

        .lp-input-wrapper {
            position: relative;
        }

        .lp-input-wrapper span {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
        }

        .lp-input {
            width: 100%;
            height: 48px;
            padding-left: 44px;
            padding-right: 15px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            background-color: #f8fafc;
            font-size: 15px;
            font-family: inherit;
            color: var(--lp-dark);
            outline: none;
            transition: 0.3s;
        }

        .lp-input:focus {
            border-color: var(--lp-primary);
            background-color: white;
            box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.1);
        }

        .lp-secure-note {
            text-align: center;
            font-size: 12px;
            color: #94a3b8;
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        /* PROBLEMS SECTION */
        .lp-section {
            padding: 80px 0;
        }

        .lp-section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .lp-eyebrow {
            color: var(--lp-primary);
            text-transform: uppercase;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: 2px;
            margin-bottom: 10px;
            display: block;
        }

        .lp-section-title {
            font-size: 32px;
            font-weight: 800;
        }

        .lp-grid-3 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        @media (min-width: 768px) {
            .lp-grid-3 { grid-template-columns: repeat(3, 1fr); }
        }

        .lp-card {
            background: white;
            padding: 30px;
            border-radius: var(--lp-radius);
            border: 1px solid #f1f5f9;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .lp-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
            border-color: rgba(230, 0, 18, 0.2);
        }

        .lp-icon-box {
            width: 60px;
            height: 60px;
            background: #fff1f2;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--lp-primary);
        }

        .lp-card:hover .lp-icon-box {
            background: var(--lp-primary);
            color: white;
        }

        /* SOLUTION SECTION */
        .lp-bg-dark {
            background-color: var(--lp-dark);
            color: white;
            position: relative;
            overflow: hidden;
        }

        /* Abstract glow effects */
        .lp-glow {
            position: absolute;
            width: 400px;
            height: 400px;
            background: var(--lp-primary);
            filter: blur(100px);
            opacity: 0.15;
            border-radius: 50%;
            pointer-events: none;
        }
        .lp-glow-1 { top: -100px; right: -100px; }
        .lp-glow-2 { bottom: -100px; left: -100px; background: #3b82f6; }

        .lp-solution-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        @media (min-width: 768px) {
            .lp-solution-grid { grid-template-columns: 1fr 1fr; }
        }

        .lp-solution-card {
            background: white;
            color: var(--lp-dark);
            border-radius: 16px;
            padding: 30px;
            height: 100%;
        }

        .lp-solution-header {
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid #f1f5f9;
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .lp-solution-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .lp-solution-icon.blue { background: #eff6ff; color: #2563eb; }
        .lp-solution-icon.orange { background: #fff7ed; color: #ea580c; }

        .lp-check-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .lp-check-list span.material-symbols-outlined {
            color: var(--lp-primary);
            font-size: 20px;
            margin-top: 2px;
        }

        /* SPECS TABLE */
        .lp-bg-grid {
            background-color: #f9fafb;
            background-image: linear-gradient(#e5e7eb 1px, transparent 1px), linear-gradient(90deg, #e5e7eb 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .lp-specs-wrapper {
            background: white;
            border: 2px solid var(--lp-dark);
            border-radius: 4px;
            box-shadow: 8px 8px 0 rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .lp-table-scroll {
            overflow-x: auto;
        }

        .lp-table {
            width: 100%;
            border-collapse: collapse;
            font-family: 'Manrope', monospace;
            font-size: 14px;
            min-width: 600px;
        }

        .lp-table th {
            background: var(--lp-dark-secondary);
            color: white;
            text-align: left;
            padding: 16px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
        }

        .lp-table td {
            padding: 16px;
            border-bottom: 1px solid #e2e8f0;
            border-right: 1px solid #e2e8f0;
            color: var(--lp-text-main);
        }

        .lp-table tr:last-child td { border-bottom: none; }
        .lp-table tr:nth-child(even) { background-color: #f8fafc; }
        .lp-table td:first-child { font-weight: 700; color: var(--lp-dark); }

        /* PROCESS */
        .lp-process-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-top: 50px;
            position: relative;
        }

        @media (min-width: 768px) {
            .lp-process-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
            
            /* Dotted line connector */
            .lp-process-grid::before {
                content: '';
                position: absolute;
                top: 40px;
                left: 10%;
                width: 80%;
                height: 2px;
                background-image: linear-gradient(to right, #cbd5e1 50%, rgba(255,255,255,0) 0%);
                background-position: bottom;
                background-size: 10px 1px;
                background-repeat: repeat-x;
                z-index: 0;
            }
        }

        .lp-process-item {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .lp-process-circle {
            width: 80px;
            height: 80px;
            background: white;
            border: 4px solid #e2e8f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: 0.3s;
        }

        .lp-process-item:hover .lp-process-circle {
            border-color: var(--lp-primary);
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .lp-process-circle span {
            font-size: 32px;
            color: #94a3b8;
        }

        .lp-process-item:hover .lp-process-circle span {
            color: var(--lp-primary);
        }

        /* FOOTER CTA */
        .lp-footer-cta {
            background: #fff;
            padding: 80px 0;
            border-top: 1px solid #e2e8f0;
            text-align: center;
        }

        .lp-cta-box {
            max-width: 800px;
            margin: 0 auto;
        }

        .lp-trust-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
            font-size: 14px;
            color: var(--lp-text-light);
            font-weight: 600;
        }

        .lp-trust-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .lp-trust-item span { color: #16a34a; }

        .lp-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
        }

        @media (min-width: 600px) {
            .lp-actions { flex-direction: row; }
        }

        /* ANIMATIONS */
        @keyframes lp-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.95); }
        }

        .lp-pulse-dot {
            width: 8px;
            height: 8px;
            background-color: var(--lp-primary);
            border-radius: 50%;
            display: inline-block;
            animation: lp-pulse 2s infinite;
        }