
        :root {
            --primary-dark: #202938;
            --primary-light: #3b82f6;
            --primary-pink: #f43f5e;
            --text-dark: #1a1a1a;
            --text-gray: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* TYPOGRAPHY */
        h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: var(--primary-dark); }
        h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; color: var(--primary-dark); line-height: 1.3; }
        h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
        p { font-size: 1.125rem; margin-bottom: 15px; color: var(--text-gray); }

        .highlight { color: var(--primary-pink); }
        .text-bold { font-weight: 700; color: var(--text-dark); }

        /* LAYOUT & SECTIONS */
        .container { max-width: 1400px; margin: 0 auto; padding: 80px 40px; }
        .container-narrow { max-width: 900px; margin: 0 auto; padding: 80px 40px; }

        .section-dark { background-color: var(--primary-dark); color: var(--white); }
        .section-dark h1, .section-dark h2, .section-dark h3, .section-dark p, .section-dark .text-bold { color: var(--white); }
        .section-dark p { opacity: 0.85; }

        /* HERO SECTION */
        .hero {
            text-align: center;
            padding: 120px 40px 100px;
            background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
        }

        .hero p.subtitle {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--text-dark);
            font-weight: 400;
        }

        /* BUTTONS */
        .btn {
            display: inline-block;
            background-color: var(--primary-light); /* Blue */
            color: var(--white);
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 25px rgba(59, 130, 246, 0.35);
            background-color: #2563eb;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            box-shadow: none;
        }
        
        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary-dark);
            box-shadow: 0 10px 20px rgba(255,255,255,0.2);
        }

        .btn-more {
            display: block;
            width: 100%;
            background-color: #eff6ff;
            color: var(--primary-light);
            padding: 10px 15px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            margin-top: 15px;
        }

        .btn-more:hover {
            background-color: var(--primary-light);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
        }

        /* AGITATION SECTION (Reading Minds) */
        .mind-reading {
            background-color: var(--white);
            border-radius: 24px;
            padding: 70px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.03);
            margin-top: -60px;
            position: relative;
            z-index: 10;
        }

        .mind-reading ul { list-style: none; margin-top: 40px; }
        .mind-reading li {
            font-size: 1.2rem;
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            color: var(--text-dark);
            font-weight: 600;
        }
        .mind-reading li span.cross { color: var(--primary-pink); font-weight: bold; font-size: 1.4rem; }

        /* THE REAL ENEMY SECTION */
        .real-enemy {
            background: #fff1f2;
            border-left: 8px solid var(--primary-pink);
            padding: 50px;
            border-radius: 0 24px 24px 0;
            margin: 60px 0;
        }
        
        .real-enemy h3 { color: var(--primary-dark); font-size: 2rem; }
        .real-enemy p { color: var(--text-dark); font-size: 1.15rem; }

        /* SOLUTION / PACKAGE SECTION */
        .package-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .package-card {
            background: var(--white);
            padding: 25px 20px; /* Reduced padding */
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.04);
            transition: transform 0.3s;
            border-top: 4px solid var(--primary-pink);
            text-align: left;
            display: flex;
            flex-direction: column;
        }

        .package-card:hover { transform: translateY(-5px); }
        .package-card h3 { color: var(--primary-dark); font-size: 1.3rem; min-height: 50px; margin-bottom: 10px; }
        .package-card p { font-size: 0.95rem; margin-bottom: 15px; line-height: 1.4; }
        
        .package-card .price {
            font-size: 1rem;
            color: var(--primary-pink);
            font-weight: 700;
            margin-bottom: 15px;
            display: inline-block;
            background: #fff1f2;
            padding: 4px 12px;
            border-radius: 12px;
            align-self: flex-start;
        }

        /* Add modern styling to form inputs */
        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form input[type="tel"],
        .contact-form select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            font-size: 1rem;
            color: #333;
            background-color: #f8fafc;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .contact-form input[type="text"]:focus,
        .contact-form input[type="email"]:focus,
        .contact-form input[type="tel"]:focus,
        .contact-form select:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
            background-color: #fff;
        }

        .contact-form .form-group {
            margin-bottom: 18px;
        }

        .contact-form label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: #4b5563;
        }

        /* Checkboxes and Radios */
        .contact-form input[type="checkbox"],
        .contact-form input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: var(--primary-light);
            cursor: pointer;
        }

        .package-card ul { list-style: none; margin-bottom: 10px; margin-top: auto; }
        .package-card ul li { margin-bottom: 8px; display: flex; gap: 8px; color: var(--text-gray); font-size: 0.9rem; line-height: 1.3; }
        .package-card ul li::before { content: "✓"; color: var(--primary-light); font-weight: bold; }

        /* TESTIMONIALS */
        .testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 25px; margin-top: 60px; }
        @media(min-width: 992px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

        .testimonial-card {
            background: var(--primary-dark);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 20px;
            color: var(--white);
            position: relative;
        }
        
        .testimonial-card::before {
            content: "“"; font-size: 6rem; position: absolute; top: 10px; right: 20px;
            color: rgba(244, 63, 94, 0.15); font-family: serif;
        }

        .testimonial-card p { color: rgba(255,255,255,0.85); font-size: 1.05rem; font-style: italic; position: relative; z-index: 1; }
        .testimonial-card .author { font-weight: 700; margin-top: 25px; color: var(--white); font-size: 1.15rem; display: flex; align-items: center; gap: 10px; }
        .testimonial-card .author::before { content: ""; display: block; width: 30px; height: 2px; background-color: var(--primary-pink); }

        /* FOOTER CTA */
        .cta-section { text-align: center; background-color: var(--bg-light); padding-bottom: 80px; }
        .cta-box { background: var(--primary-dark); border-radius: 24px; padding: 80px 40px; position: relative; overflow: hidden; }

        /* MODALS */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(4px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 20px;
        }

        .modal-content {
            background: linear-gradient(135deg, #ffffff 0%, #f4f7f6 100%);
            width: 100%;
            max-width: 650px;
            border-radius: 24px;
            padding: 40px;
            position: relative;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 30px rgba(59, 130, 246, 0.1);
            max-height: 90vh;
            overflow-y: auto;
            border: 1px solid rgba(59, 130, 246, 0.1);
        }

        .modal-overlay.active { display: flex; }
        .modal-overlay.active .modal-content { transform: translateY(0); opacity: 1; }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: #f1f5f9;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            border: none;
            font-size: 1.5rem;
            color: var(--text-gray);
            transition: 0.2s;
        }

        .modal-close:hover { background: #e2e8f0; color: var(--primary-pink); }
        .modal-content h3 { color: var(--primary-dark); font-size: 1.8rem; margin-bottom: 15px; padding-right: 40px; }
        .modal-content p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 15px; }
        .modal-content .highlight-box { background: #fff1f2; padding: 20px; border-radius: 12px; margin: 20px 0; border-left: 4px solid var(--primary-pink); }
        .modal-content .highlight-box p { color: var(--primary-dark); font-weight: 600; margin-bottom: 0; }

        /* SYSTEM FLOW MODAL CSS */
        .flow-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 25px;
            margin-bottom: 25px;
        }

        .flow-step {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            padding: 15px 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .flow-step .step-number {
            background: var(--primary-light);
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            flex-shrink: 0;
            font-size: 1.1rem;
        }

        .flow-step .step-text {
            font-size: 1rem;
            color: var(--text-dark);
            font-weight: 600;
            line-height: 1.3;
        }
        
        .flow-step .step-text span {
            display: block;
            font-size: 0.85rem;
            color: var(--text-gray);
            font-weight: 400;
            margin-top: 3px;
        }

        .flow-arrow {
            text-align: center;
            color: var(--primary-pink);
            font-size: 1.5rem;
            line-height: 1;
            margin: -5px 0;
        }

        .flow-split {
            display: flex;
            gap: 15px;
        }
        
        .flow-split .flow-step {
            flex: 1;
            background: #eff6ff;
            border-color: #bfdbfe;
        }
        
        .flow-split .flow-step .step-number {
            background: var(--primary-pink);
        }

        /* CRM PHONE MOCKUP */
        .phone-mockup {
            border: 8px solid #cbd5e1;
            border-radius: 30px;
            background: #f8fafc;
            overflow: hidden;
            max-width: 320px;
            margin: 30px auto 10px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            position: relative;
        }

        .phone-header {
            background: var(--primary-dark);
            color: var(--white);
            padding: 20px 15px 15px;
            text-align: center;
            font-weight: 700;
            font-size: 1.1rem;
            border-bottom: 2px solid var(--primary-pink);
        }

        .phone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 20px;
            background: #cbd5e1;
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
            z-index: 2;
        }

        .phone-body {
            padding: 15px;
            max-height: 280px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .crm-card-mockup {
            background: white;
            border-radius: 12px;
            padding: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary-light);
        }

        .crm-card-mockup.new { border-left-color: #22c55e; } /* Green */
        .crm-card-mockup.called { border-left-color: var(--primary-light); } /* Blue */
        
        .crm-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .crm-badge {
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: bold;
            color: white;
        }
        
        .crm-badge.new { background: #22c55e; }
        .crm-badge.called { background: var(--primary-light); }

        .crm-blur-text {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            filter: blur(4px);
            user-select: none;
        }
        
        .crm-blur-sub {
            color: var(--text-gray);
            font-size: 0.8rem;
            filter: blur(4px);
            user-select: none;
            margin-top: 4px;
        }

        .crm-date {
            font-size: 0.75rem;
            color: var(--text-gray);
        }

        @media(max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .container, .container-narrow { padding: 40px 20px; }
            .mind-reading { padding: 40px 20px; margin-top: -20px; }
            .btn { width: 100%; text-align: center; }
            .real-enemy { padding: 30px 20px; }
            .package-grid { grid-template-columns: 1fr; }
            .modal-content { padding: 30px 20px; }
        }
        
        @media(max-width: 600px) {
            .flow-split {
                flex-direction: column;
                gap: 12px;
            }
        }
    
 . c o n t a c t - f o r m   {   d i s p l a y :   f l e x ;   f l e x - d i r e c t i o n :   c o l u m n ;   g a p :   1 5 p x ;   m a r g i n - t o p :   2 0 p x ;   } 
 . c o n t a c t - f o r m   . f o r m - g r o u p   {   d i s p l a y :   f l e x ;   f l e x - d i r e c t i o n :   c o l u m n ;   g a p :   5 p x ;   t e x t - a l i g n :   l e f t ;   } 
 . c o n t a c t - f o r m   l a b e l   {   f o n t - w e i g h t :   6 0 0 ;   c o l o r :   v a r ( - - p r i m a r y - d a r k ) ;   f o n t - s i z e :   0 . 9 5 r e m ;   } 
 . c o n t a c t - f o r m   i n p u t [ t y p e = ' t e x t ' ]   {   p a d d i n g :   1 2 p x   1 5 p x ;   b o r d e r :   1 p x   s o l i d   # c b d 5 e 1 ;   b o r d e r - r a d i u s :   8 p x ;   f o n t - s i z e :   1 r e m ;   f o n t - f a m i l y :   i n h e r i t ;   t r a n s i t i o n :   b o r d e r - c o l o r   0 . 2 s ;   } 
 . c o n t a c t - f o r m   i n p u t [ t y p e = ' t e x t ' ] : f o c u s   {   o u t l i n e :   n o n e ;   b o r d e r - c o l o r :   v a r ( - - p r i m a r y - l i g h t ) ;   b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 5 9 ,   1 3 0 ,   2 4 6 ,   0 . 1 ) ;   } 
 . c o n t a c t - f o r m   . c h e c k b o x - g r o u p   {   f l e x - d i r e c t i o n :   r o w ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   1 0 p x ;   } 
 . c o n t a c t - f o r m   i n p u t [ t y p e = ' c h e c k b o x ' ]   {   w i d t h :   1 8 p x ;   h e i g h t :   1 8 p x ;   c u r s o r :   p o i n t e r ;   } 
  
 