/*

        
        body {
            margin: 0;
            padding: 0;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }
*/
        
        .main-section {
            min-height: 80vh;
            display: flex;
        }
        
        /* Left Side - BLACK with Headers (30%) */
        .left-side {
            background: #000;
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 40%;
            padding: 2rem;
            position: relative;
        }
        
        .left-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/ai_building.png') center center/cover;
            background-size: cover;
            background-position: center;
            opacity: 0.7;
        }
        
        .left-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
/*            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);*/
        }
        
        .left-content {
            text-align: center;
            z-index: 10;
            position: relative;
        }
        
        .main-title {
            font-size: 5.5rem;
            font-weight: 600;
            letter-spacing: -2px;
            margin-bottom: 0.5rem;
            line-height: 1;
            color: #EB1B3C;
			font-family: 'PP Neue Montreal', 'Inter', sans-serif;
/*            font-size: clamp(2.5rem, 5vw, 4rem);*/
            font-weight: 900;
            background: linear-gradient(135deg, var(--light-text) 0%, var(--primary-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1.1;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
                }
        
        .subtitle {
            font-size: 1.7rem;
            font-weight: 500;
            letter-spacing: 2px;
            color: #fff;
            opacity: 0.9;
        }
        
        /* Right Side - RED with Image and Content (70%) */
        .right-side {
            background: linear-gradient(135deg, #8B0000 0%, #A52A2A 100%);
            min-height: 80vh;
            width: 60%;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .city-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
/*            background: url('../img/ai_building.png') center center/cover;*/
            background-size: cover;
            background-position: center;
            opacity: 0.3;
        }
        
        .content-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-red) 0%, #d40000 100%);
        }
        
        .network-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="network" patternUnits="userSpaceOnUse" width="60" height="60"><circle cx="30" cy="30" r="2" fill="%23ffffff" opacity="0.4"/><line x1="30" y1="30" x2="90" y2="30" stroke="%23ffffff" stroke-width="1" opacity="0.2"/><line x1="30" y1="30" x2="30" y2="90" stroke="%23ffffff" stroke-width="1" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23network)"/></svg>') center center/cover;
            opacity: 0.4;
        }
        
        .right-content {
            position: relative;
            z-index: 10;
            padding: 8rem 3rem 3rem;
            width: 100%;
        }
        
        .content-text {
            font-size: 1.3rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-weight: 400;
            color: #fff;
        }
        
        .content-text strong {
            font-weight: 600;
        }
        
        .highlight-text {
            color: #ffdddd;
            font-weight: 600;
        }
        
        .cta-section {
            margin-top: 3rem;
        }
        
        .cta-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffdddd;
        }
        
        .final-statement {
            font-size: 1.3rem;
            font-weight: 600;
            margin-top: 2rem;
            color: #fff;
        }
        
        /* Enhanced Responsive Design */
        @media (max-width: 1400px) {
            .main-title {
                font-size: 5rem;
            }
            
            .subtitle {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 1200px) {
            .main-title {
                font-size: 4.5rem;
            }
            
            .content-text {
                font-size: 1.25rem;
            }
        }
        
        @media (max-width: 1024px) {
            .main-section {
                flex-direction: column;
/*                margin-top: 5vh;*/
            }
            
            .left-side, .right-side {
                width: 100%;
                min-height: 50vh;
            }
            
            .main-title {
                font-size: 4.8rem; /* Increased from 4rem */
            }
            
            .right-content {
                padding: 2rem 1.5rem;
            }
            
            .content-text {
                font-size: 1.35rem; /* Increased for better mobile readability */
            }
            
            .cta-title {
                font-size: 1.4rem; /* Increased for better mobile readability */
            }
            
            .final-statement {
                font-size: 1.4rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 900px) {
            .main-title {
                font-size: 4.5rem; /* Increased from 3.5rem */
            }
            
            .subtitle {
                font-size: 1.5rem;
            }
            
            .content-text {
                font-size: 1.4rem; /* Increased for better mobile readability */
            }
            
            .cta-title {
                font-size: 1.45rem; /* Increased for better mobile readability */
            }
            
            .final-statement {
                font-size: 1.45rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 768px) {
            .main-title {
                font-size: 4.2rem; /* Increased from 3rem */
            }
            
            .subtitle {
                font-size: 1.4rem;
                letter-spacing: 1px;
            }
            
            .content-text {
                font-size: 1.35rem; /* Increased for better mobile readability */
            }
            
            .left-side, .right-content {
                padding: 1.5rem;
            }
            
            .cta-title {
                font-size: 1.4rem; /* Increased for better mobile readability */
            }
            
            .final-statement {
                font-size: 1.4rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 640px) {
            .main-title {
                font-size: 3.8rem; /* Increased from 2.8rem */
            }
            
            .subtitle {
                font-size: 1.35rem;
            }
            
            .content-text {
                font-size: 1.3rem; /* Increased for better mobile readability */
            }
            
            .cta-title {
                font-size: 1.35rem; /* Increased for better mobile readability */
            }
            
            .final-statement {
                font-size: 1.35rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 576px) {
            .main-title {
                font-size: 3.5rem; /* Increased from 2.5rem */
            }
            
            .subtitle {
                font-size: 1.3rem;
                letter-spacing: 1px;
            }
            
            .content-text {
                font-size: 1.25rem; /* Increased for better mobile readability */
            }
            
            .left-side, .right-content {
                padding: 1.5rem;
            }
            
            .cta-title {
                font-size: 1.3rem; /* Increased for better mobile readability */
            }
            
            .final-statement {
                font-size: 1.3rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 480px) {
            .main-title {
                font-size: 3.2rem; /* Increased from 2.2rem */
            }
            
            .subtitle {
                font-size: 1.25rem;
            }
            
            .content-text {
                font-size: 1.2rem; /* Increased for better mobile readability */
            }
            
            .cta-title {
                font-size: 1.25rem; /* Increased for better mobile readability */
            }
            
            .final-statement {
                font-size: 1.25rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 360px) {
            .main-title {
                font-size: 2.8rem; /* Increased from 2rem */
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .content-text {
                font-size: 1.15rem; /* Increased for better mobile readability */
            }
            
            .cta-title {
                font-size: 1.2rem; /* Increased for better mobile readability */
            }
            
            .final-statement {
                font-size: 1.2rem; /* Increased for better mobile readability */
            }
        }
        
        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .fade-in:nth-child(1) { animation-delay: 0.2s; }
        .fade-in:nth-child(2) { animation-delay: 0.4s; }
        .fade-in:nth-child(3) { animation-delay: 0.6s; }
        .fade-in:nth-child(4) { animation-delay: 0.8s; }
        .fade-in:nth-child(5) { animation-delay: 1s; }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }





/* Second Section - What AI Building Can Do */
        .features-section {
            min-height: 80vh;
            background: #000;
            position: relative;
			
        }
        
        .features-header {
            text-align: left;
            padding: 4rem 0 0rem 0;
            background: #000;
			
        }
        
        .features-title {
            font-size: 3.5rem;
            font-weight: 700;
/*            letter-spacing: -2px;*/
            margin-bottom: 0.5rem;
            line-height: 1.1;
            color: #fff;
        }
        
        .features-subtitle {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
            letter-spacing: 1px;
        }
        
        .features-description {
            font-size: 1.3rem;
            line-height: 1.6;
            color: #ccc;
            margin-bottom: 2rem;
        }
        
        .features-grid {
            background: linear-gradient(135deg, var(--primary-red) 0%, #d40000 100%);
            padding: 3rem 0;
            position: relative;
        }
        
        .feature-row {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 0 3rem;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            flex: 1;
            margin: 0 1rem;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        .feature-content h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ff9999;
            margin-bottom: 0.3rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .feature-content p {
            font-size: 0.95rem;
            line-height: 1.4;
            color: #fff;
            margin: 0;
        }
        
        .special-feature .feature-content h4 {
            color: #90EE90;
        }
        
        .bottom-text {
            background: #000;
            padding: 1rem 0 6rem;
            text-align: left;
        }
        
        .bottom-text p {
            font-size: 1.3rem;
            line-height: 1.6;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        
        .bottom-text p:last-child {
            margin-bottom: 0;
            font-weight: 500;
        }
        
        /* Enhanced Responsive for features */
        @media (max-width: 1200px) {
            .features-title {
                font-size: 3.2rem;
            }
            
            .features-subtitle {
                font-size: 1.7rem;
            }
            
            .features-description {
                font-size: 1.25rem;
            }
        }
        
        @media (max-width: 1024px) {
            .features-title {
                font-size: 3rem;
            }
            
            .features-subtitle {
                font-size: 1.6rem;
            }
            
            .features-description {
                font-size: 1.3rem; /* Increased for better mobile readability */
            }
            
            .feature-content h4 {
                font-size: 1.4rem; /* Increased for better mobile readability */
            }
            
            .feature-content p {
                font-size: 1.1rem; /* Increased for better mobile readability */
            }
            
            .bottom-text p {
                font-size: 1.4rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 900px) {
            .features-description {
                font-size: 1.35rem; /* Increased for better mobile readability */
            }
            
            .feature-content h4 {
                font-size: 1.45rem; /* Increased for better mobile readability */
            }
            
            .feature-content p {
                font-size: 1.15rem; /* Increased for better mobile readability */
            }
            
            .bottom-text p {
                font-size: 1.45rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 768px) {
			
			.feature-row {
                display: block;
                align-items: center;
                margin-bottom: 2rem;
                padding: 0 3rem;
            }
			
			
            .features-title {
                font-size: 2.5rem;
				font-weight: 800;
            }
            
            .features-subtitle {
                font-size: 1.5rem;
            }
            
            .features-description {
                font-size: 1.3rem; /* Increased for better mobile readability */
            }
            
            .feature-item {
                flex-direction: column;
                text-align: center;
				margin-bottom: 2rem;
            }
            
            .feature-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .features-grid {
                padding: 2rem 1rem;
            }
			.report-card {margin-top: 2rem;}
			.report-card h3 {margin-top: 2rem;}
			
			.feature-content h4 {
                font-size: 1.4rem; /* Increased for better mobile readability */
            }
            
            .feature-content p {
                font-size: 1.1rem; /* Increased for better mobile readability */
            }
            
            .bottom-text p {
                font-size: 1.4rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 640px) {
            .features-title {
                font-size: 2.3rem;
            }
            
            .features-subtitle {
                font-size: 1.4rem;
            }
            
            .features-description {
                font-size: 1.25rem; /* Increased for better mobile readability */
            }
            
            .feature-content h4 {
                font-size: 1.35rem; /* Increased for better mobile readability */
            }
            
            .feature-content p {
                font-size: 1.05rem; /* Increased for better mobile readability */
            }
            
            .bottom-text p {
                font-size: 1.35rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 480px) {
            .features-title {
                font-size: 2.1rem;
            }
            
            .features-subtitle {
                font-size: 1.3rem;
            }
            
            .features-description {
                font-size: 1.2rem; /* Increased for better mobile readability */
            }
            
            .feature-content h4 {
                font-size: 1.3rem; /* Increased for better mobile readability */
            }
            
            .feature-content p {
                font-size: 1rem; /* Increased for better mobile readability */
            }
            
            .bottom-text p {
                font-size: 1.3rem; /* Increased for better mobile readability */
            }
        }




/* Third Section - Reports, Live Data, Alerts */
        .reports-section {
            min-height: 80vh;
            background: #13191D;
            padding: 4rem 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .reports-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .reports-title {
            font-size: 4rem;
            font-weight: 700;
/*            letter-spacing: -2px;*/
            margin-bottom: 1rem;
            line-height: 1.1;
            color: #fff;
        }
        
        .reports-subtitle {
            font-size: 1.5rem;
            line-height: 1.4;
            color: #ccc;
            max-width: 700vw;
            margin: 0 auto;
        }
        
        .reports-grid {
            display: flex;
            justify-content: center;
            gap: 3rem;
            padding: 0 1rem;
        }
        
        .report-card {
            background: linear-gradient(135deg, var(--primary-red) 0%, #d40000 100%);
            border-radius: 25px;
            padding: 6rem 2rem 2.5rem 2rem;
            width: 320px;
            text-align: center;
            position: relative;
            box-shadow: 0 15px 40px rgba(139, 0, 0, 0.4);
            margin-top: 30px;
        }
        
        .report-icon {
            width: 100px;
            height: 100px;
            background: #E8E8E8;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem auto;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }
        
        .report-card h3 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .report-text {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #fff;
            margin-bottom: 1.5rem;
        }
        
        .report-text:last-child {
            margin-bottom: 0;
        }
        
        /* Enhanced Responsive for reports */
        @media (max-width: 1200px) {
            .reports-grid {
                gap: 2rem;
            }
            
            .report-card {
                width: 280px;
                padding: 2.5rem 1.5rem;
            }
            
            .reports-title {
                font-size: 3.5rem;
            }
            
            .reports-subtitle {
                font-size: 1.4rem;
            }
        }
        
        @media (max-width: 1024px) {
            .reports-title {
                font-size: 3.2rem;
            }
            
            .reports-subtitle {
                font-size: 1.45rem; /* Increased for better mobile readability */
            }
            
            .report-text {
                font-size: 1.3rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 900px) {
            .reports-subtitle {
                font-size: 1.5rem; /* Increased for better mobile readability */
            }
            
            .report-text {
                font-size: 1.35rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 768px) {
            .reports-title {
                font-size: 3rem;
            }
            
            .reports-subtitle {
                font-size: 1.4rem; /* Increased for better mobile readability */
            }
            
            .reports-grid {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }
            
            .report-card {
                width: 100%;
                max-width: 500px;
				margin-bottom: 2rem;
            }
            
            .reports-section {
                padding: 3rem 0;
            }
            
            .report-text {
                font-size: 1.3rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 640px) {
            .reports-title {
                font-size: 2.8rem;
            }
            
            .reports-subtitle {
                font-size: 1.35rem; /* Increased for better mobile readability */
            }
            
            .report-text {
                font-size: 1.25rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 480px) {
            .reports-title {
                font-size: 2.5rem;
            }
            
            .reports-subtitle {
                font-size: 1.3rem; /* Increased for better mobile readability */
            }
            
            .report-text {
                font-size: 1.2rem; /* Increased for better mobile readability */
            }
        }









/* Fourth Section - Why It Matters */
        .why-section {
            min-height: 50vh;
            background: linear-gradient(135deg, var(--primary-red) 0%, #d40000 100%);
            position: relative;
        }
        
        .why-header {
            background: transparent;
            padding: 4rem 0 1rem 0;
            text-align: left;
        }
        
        .why-title {
            font-size: 4rem;
            font-weight: 700;
/*            letter-spacing: -3px;*/
            margin-bottom: 1rem;
            line-height: 1;
            color: #fff;
        }
        
        .why-description {
            font-size: 1.3rem;
            line-height: 1.6;
            color: #fff;
            margin-bottom: 0rem;
            font-weight: 400;
        }
        
        .why-description:last-child {
            margin-bottom: 0;
        }
        
        .why-content {
            background: transparent;
            padding: 3rem 0 4rem 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease-out;
            padding: 0.5rem 0;
        }
        
        .benefit-item.animate-in {
            opacity: 1;
            transform: translateX(0);
        }
        
        .benefit-item:nth-child(1) { transition-delay: 0.1s; }
        .benefit-item:nth-child(2) { transition-delay: 0.3s; }
        .benefit-item:nth-child(3) { transition-delay: 0.5s; }
        .benefit-item:nth-child(4) { transition-delay: 0.7s; }
        .benefit-item:nth-child(5) { transition-delay: 0.9s; }
        
        .check-icon {
            width: 35px;
            height: 35px;
            background: #4CAF50;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover .check-icon {
            transform: scale(1.15);
            box-shadow: 0 6px 25px rgba(76, 175, 80, 0.6);
            background: #45a049;
        }
        
        .benefit-content {
            flex: 1;
        }
        
        .benefit-content h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
            line-height: 1.3;
        }
        
        .benefit-item:hover .benefit-content h3 {
            color: #4CAF50;
        }
        
        .benefit-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #bbb;.5
            margin: 0;
            transition: color 0.3s ease;
        }
        
        .benefit-item:hover .benefit-content p {
            color: #fff;
        }
        
        /* Enhanced Responsive for Why Section */
        @media (max-width: 1200px) {
            .why-title {
                font-size: 3.5rem;
            }
            
            .why-description {
                font-size: 1.25rem;
            }
        }
        
        @media (max-width: 1024px) {
            .why-title {
                font-size: 3.2rem;
            }
            
            .why-description {
                font-size: 1.35rem; /* Increased for better mobile readability */
            }
            
            .benefit-content h3 {
                font-size: 1.7rem; /* Increased for better mobile readability */
            }
            
            .benefit-content p {
                font-size: 1.2rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 900px) {
            .why-description {
                font-size: 1.4rem; /* Increased for better mobile readability */
            }
            
            .benefit-content h3 {
                font-size: 1.75rem; /* Increased for better mobile readability */
            }
            
            .benefit-content p {
                font-size: 1.25rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 768px) {
            .why-title {
                font-size: 3rem;
                letter-spacing: -2px;
            }
            
            .why-description {
                font-size: 1.35rem; /* Increased for better mobile readability */
            }
            
            .benefit-content h3 {
                font-size: 1.7rem; /* Increased for better mobile readability */
            }
            
            .benefit-content p {
                font-size: 1.2rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 640px) {
            .why-title {
                font-size: 2.8rem;
            }
            
            .why-description {
                font-size: 1.3rem; /* Increased for better mobile readability */
            }
            
            .benefit-content h3 {
                font-size: 1.65rem; /* Increased for better mobile readability */
            }
            
            .benefit-content p {
                font-size: 1.15rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 480px) {
            .why-title {
                font-size: 2.5rem;
            }
            
            .why-description {
                font-size: 1.25rem; /* Increased for better mobile readability */
            }
            
            .benefit-content h3 {
                font-size: 1.6rem; /* Increased for better mobile readability */
            }
            
            .benefit-content p {
                font-size: 1.1rem; /* Increased for better mobile readability */
            }
        }
        
        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .fade-in:nth-child(1) { animation-delay: 0.2s; }
        .fade-in:nth-child(2) { animation-delay: 0.4s; }
        .fade-in:nth-child(3) { animation-delay: 0.6s; }
        .fade-in:nth-child(4) { animation-delay: 0.8s; }
        .fade-in:nth-child(5) { animation-delay: 1s; }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }








/* Fifth Section - How Data is Extracted & Customise Your Own */
        .final-section {
            min-height: 80vh;
            background: #000;
            position: relative;
            display: flex;
            align-items: center;
            padding: 6rem 0;
            overflow: hidden;
        }
        
        .geometric-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="geometric" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="2" fill="%23ff4444" opacity="0.15"/><path d="M25,25 L75,25 L75,75 L25,75 Z" stroke="%23ff4444" stroke-width="0.5" fill="none" opacity="0.08"/><line x1="50" y1="0" x2="50" y2="100" stroke="%23ff4444" stroke-width="0.3" opacity="0.1"/><line x1="0" y1="50" x2="100" y2="50" stroke="%23ff4444" stroke-width="0.3" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23geometric)"/></svg>') center center/cover;
        }
        
        .final-content {
            position: relative;
            z-index: 10;
            width: 100%;
        }
        
        .extraction-side, .custom-side {
            text-align: center;
            padding: 3rem 2rem;
            position: relative;
        }
        
/*
        .extraction-side::before, .custom-side::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #ff4444, transparent);
            border-radius: 2px;
        }
*/
        
        .extraction-title, .custom-title {
            font-size: 2.8rem;
            font-weight: 700;
/*            letter-spacing: -2px;*/
            margin-bottom: 3rem;
            color: #fff;
            text-transform: uppercase;
            position: relative;
        }
        
/*
        .extraction-title::after, .custom-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: #ff4444;
            border-radius: 1px;
        }
*/
        
        .section-subtitle {
            font-size: 1.3rem;
            color: #ccc;
            margin-bottom: 3rem;
            font-weight: 400;
            letter-spacing: 1px;
            opacity: 0.9;
        }
        
        .extraction-image {
            width: 100%;
            max-width: 600px;
            height: 320px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
            border-radius: 20px;
            margin: 0 auto 3rem auto;
            backdrop-filter: blur(15px);
/*            border: 1px solid rgba(255, 68, 68, 0.2);*/
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
			
        }
        .extraction-image video {

            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
/*
        .extraction-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 
                        0 0 30px rgba(255, 68, 68, 0.1),
                        inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }
*/
        
        .extraction-mockup {
            width: 90%;
            height: 90%;
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            padding: 1.2rem;
            font-family: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
            font-size: 0.75rem;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .extraction-mockup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 30px;
            background: linear-gradient(90deg, #ff4444, #ff6666);
            border-radius: 15px 15px 0 0;
        }
        
        .extraction-mockup::after {
            content: '● ● ●';
            position: absolute;
            top: 8px;
            left: 12px;
            color: #fff;
            font-size: 8px;
            z-index: 2;
        }
        
        .mockup-header {
            background: rgba(139, 0, 0, 0.3);
            color: #fff;
            padding: 0.8rem;
            border-radius: 8px;
            margin: 20px 0 0.8rem 0;
            font-weight: 600;
            text-align: center;
            font-size: 0.8rem;
            border: 1px solid rgba(255, 68, 68, 0.3);
        }
        
        .mockup-content {
            background: rgba(0, 0, 0, 0.4);
            padding: 0.8rem;
            border-radius: 8px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .data-line {
            background: #555;
            height: 14px;
            border-radius: 3px;
            margin-bottom: 3px;
            position: relative;
            overflow: hidden;
        }
        
        .data-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: shimmer 2s infinite;
        }
        
        .data-line.highlight {
            background: linear-gradient(90deg, #ff4444, #ff6666);
            box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
        }
        
        .ai-visual {
            width: 100%;
            max-width: 600px;
            height: 320px;
			background: url('../img/ai_solution.png') center center/cover;
/*            background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.8));*/
            border-radius: 20px;
            margin: 0 auto 3rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
/*            border: 1px solid #ff4444;*/
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 
                        0 0 30px rgba(255, 68, 68, 0.2);
            transition: all 0.4s ease;
        }
        
/*
        .ai-visual:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 
                        0 0 50px rgba(255, 68, 68, 0.3);
            border-color: #ff6666;
        }
        
*/
        .ai-circle {
            width: 140px;
            height: 140px;
            border: 3px solid #ff4444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: aiGlow 2s ease-in-out infinite alternate;
            background: rgba(255, 68, 68, 0.05);
        }
        
        .ai-text {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ff4444;
            text-shadow: 0 0 15px #ff4444;
            font-family: 'Inter', sans-serif;
            letter-spacing: 2px;
        }
        
        .ai-lines {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .ai-line {
            position: absolute;
            width: 3px;
            background: linear-gradient(to bottom, transparent, #ff4444, transparent);
            animation: aiPulse 2s ease-in-out infinite;
            border-radius: 1.5px;
        }
        
        .ai-line:nth-child(1) {
            left: 15%;
            height: 70%;
            top: 15%;
            animation-delay: 0s;
        }
        
        .ai-line:nth-child(2) {
            right: 15%;
            height: 50%;
            top: 25%;
            animation-delay: 0.4s;
        }
        
        .ai-line:nth-child(3) {
            left: 65%;
            height: 60%;
            top: 10%;
            animation-delay: 0.8s;
        }
        
        .cta-button {
            background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
            color: #fff;
            padding: 1.2rem 3.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            border: none;
            box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
            letter-spacing: 1.5px;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(255, 68, 68, 0.4);
            color: #fff;
            text-decoration: none;
            background: linear-gradient(135deg, #ff5555 0%, #dd0000 100%);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            color: #fff;
            padding: 1rem 1.8rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
            z-index: 1000;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 123, 255, 0.4);
            color: #fff;
            text-decoration: none;
        }
        
        /* Animations */
        @keyframes aiGlow {
            from {
                box-shadow: 0 0 25px rgba(255, 68, 68, 0.3);
            }
            to {
                box-shadow: 0 0 40px rgba(255, 68, 68, 0.6), 0 0 60px rgba(255, 68, 68, 0.3);
            }
        }
        
        @keyframes aiPulse {
            0%, 100% {
                opacity: 0.3;
                transform: scaleY(0.4);
            }
            50% {
                opacity: 1;
                transform: scaleY(1);
            }
        }
        
        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }
        
        /* Enhanced Responsive for final section */
        @media (max-width: 1200px) {
            .extraction-title, .custom-title {
                font-size: 2.5rem;
            }
            
            .section-subtitle {
                font-size: 1.25rem;
            }
        }
        
        @media (max-width: 1024px) {
            .extraction-title, .custom-title {
                font-size: 2.3rem;
            }
            
            .section-subtitle {
                font-size: 1.35rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 900px) {
            .section-subtitle {
                font-size: 1.4rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 768px) {
            .extraction-title, .custom-title {
                font-size: 2.2rem;
                letter-spacing: -1px;
            }
            
            .extraction-image, .ai-visual {
                height: 220px;
                max-width: 350px;
            }
            
            .final-section {
                padding: 3rem 0;
            }
            
            .extraction-side, .custom-side {
                padding: 2rem 1rem;
            }
            
            .cta-button {
                padding: 1rem 2.5rem;
                font-size: 1rem;
                letter-spacing: 1px;
            }
            
            .ai-circle {
                width: 120px;
                height: 120px;
            }
            
            .ai-text {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1.35rem; /* Increased for better mobile readability */
                margin-bottom: 2rem;
            }
        }
        
        @media (max-width: 640px) {
            .extraction-title, .custom-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1.3rem; /* Increased for better mobile readability */
            }
        }
        
        @media (max-width: 480px) {
            .extraction-title, .custom-title {
                font-size: 1.8rem;
            }
            
            .extraction-image, .ai-visual {
                height: 200px;
                max-width: 300px;
            }
            
            .cta-button {
                padding: 0.9rem 2rem;
                font-size: 0.95rem;
            }
            
            .ai-circle {
                width: 100px;
                height: 100px;
            }
            
            .ai-text {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1.25rem; /* Increased for better mobile readability */
            }
        }