.elementor-7283 .elementor-element.elementor-element-9132c35{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-a45ac86 *//* ========================================
   BREEZEE LANDING PAGE - ELEMENTOR CSS
   ======================================== */

/* ========================================
   ELEMENTOR COMPATIBILITY
   ======================================== */

.elementor-widget-html * {
    box-sizing: border-box;
}

.elementor-widget-html .elementor-widget-container {
    padding: 0;
    margin: 0;
}

.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100%;
}

.elementor-top-section {
    margin-bottom: 0 !important;
}


/* ========================================
   SMART FULL-WIDTH FIX
   Removes Elementor padding while keeping content intact
   ======================================== */

/* Remove Elementor section constraints */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
}

/* Remove default Elementor top section spacing */
.elementor-top-section {
    margin-bottom: 0 !important;
}

/* Remove padding from HTML widget container only */
.elementor-widget-html .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure HTML widget content can go full width */
.elementor-widget-html {
    width: 100% !important;
}

/* Let body handle overflow */
body {
    overflow-x: hidden !important;
}

/* DO NOT touch section, split-content, comparison-table, or other content elements */
/* They have their own max-width and padding for proper layout */

/* ========================================
   BLACK BLOB FIX - CRITICAL
   ======================================== */

/* Remove particles causing black blob */
.particles,
.particle {
    display: none !important;
    visibility: hidden !important;
}

/* Fix hero section overlay that creates blob */
.hero::before {
    display: none !important;
}

/* Ensure orbs render correctly (keep them, fix blend mode) */
.orb {
    mix-blend-mode: screen !important;
    pointer-events: none !important;
}


/* ========================================
   TEXT CONTRAST FIXES
   ======================================== */

/* Split section text - make it dark and readable */
.problem-side,
.solution-side {
    color: #1a1a1a !important;
}

.split-side h3 {
    color: #0a0e1a !important;
}

.split-side li {
    color: #2d3748 !important;
}

.split-side strong {
    color: #0a0e1a !important;
}

/* Comparison table text */
.comparison-table td {
    color: #2d3748 !important;
}

.comparison-table td strong {
    color: #0a0e1a !important;
}


/* ========================================
   REMOVE SIDE WHITE SPACE - Edge to Edge
   ======================================== */

/* Remove ALL horizontal padding from sections */
section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* But keep internal content centered with max-width */
.hero-content,
.trust-items,
.video-container,
.split-content,
.features-visual-grid,
.timeline-container,
.stats-grid,
.case-study-grid,
.comparison-table,
.faq-grid,
.cta-content,
.footer-grid,
.footer-bottom {
    padding-left: 60px !important;
    padding-right: 60px !important;
}

/* Section headers need padding too */
.section-header {
    padding-left: 60px !important;
    padding-right: 60px !important;
}

/* Video header */
.video-header {
    padding-left: 60px !important;
    padding-right: 60px !important;
}

/* Stats grid section - full width background, padded content */
.stats-grid {
    padding-left: 60px !important;
    padding-right: 60px !important;
}

/* Mobile responsive padding */
@media (max-width: 768px) {
    .hero-content,
    .trust-items,
    .video-container,
    .split-content,
    .features-visual-grid,
    .timeline-container,
    .stats-grid,
    .case-study-grid,
    .comparison-table,
    .faq-grid,
    .cta-content,
    .footer-grid,
    .footer-bottom,
    .section-header,
    .video-header {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}


/* ========================================
   BASE STYLES
   ======================================== */

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

:root {
    --cyan: #00E5FF;
    --cyan-dark: #00BCD4;
    --purple: #9333EA;
    --dark: #0A0E1A;
    --slate: #1E293B;
    --gray: #64748B;
    --white: #FFFFFF;
    --light-bg: #F8FAFC;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

.hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 30px 80px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #FFFFFF 0%, #F0FDFF 100%);
        }
        
        .hero::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(50px, 50px) rotate(180deg); }
        }
        
        .hero-content {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 10;
        }
        
        .hero-text h1 {
            font-size: 72px;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }
        
        .highlight {
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-text .subhead {
            font-size: 20px;
            color: var(--gray);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .hero-cta {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
        }
        
        .btn-primary {
            padding: 18px 40px;
            background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
            color: white;
            border: none;
            border-radius: 100px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 16px 40px rgba(0, 229, 255, 0.5);
        }
        
        .btn-primary:active {
            transform: translateY(-4px) scale(1.02);
        }
        
        .btn-secondary {
            padding: 18px 40px;
            background: transparent;
            color: var(--cyan-dark);
            border: 2px solid var(--cyan-dark);
            border-radius: 100px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .btn-secondary:hover {
            background: var(--cyan-dark);
            color: white;
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 12px 32px rgba(0, 188, 212, 0.4);
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .stat-item {
            text-align: center;
            animation: float-gentle 6s ease-in-out infinite;
        }
        
        .stat-item:nth-child(1) { animation-delay: 0s; }
        .stat-item:nth-child(2) { animation-delay: 2s; }
        .stat-item:nth-child(3) { animation-delay: 4s; }
        
        @keyframes float-gentle {
            0%, 100% { 
                transform: translateY(0) scale(1); 
            }
            50% { 
                transform: translateY(-15px) scale(1.05); 
            }
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 900;
            color: var(--cyan-dark);
            display: block;
            text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
        }
        
        .stat-label {
            font-size: 13px;
            color: var(--gray);
            font-weight: 600;
        }
        
        .hero-mockup {
            position: relative;
            animation: float-mockup 8s ease-in-out infinite;
        }
        
        @keyframes float-mockup {
            0%, 100% { 
                transform: translateY(0); 
            }
            50% { 
                transform: translateY(-30px); 
            }
        }
        
        .hero-mockup img {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 32px 64px rgba(0, 229, 255, 0.5);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.4s ease;
            animation: pulse-glow-mockup 4s ease-in-out infinite;
        }
        
        @keyframes pulse-glow-mockup {
            0%, 100% {
                box-shadow: 0 32px 64px rgba(0, 229, 255, 0.5);
            }
            50% {
                box-shadow: 0 40px 80px rgba(0, 229, 255, 0.9), 0 0 60px rgba(0, 229, 255, 0.5);
            }
        }
        
        .hero-mockup:hover img {
            transform: perspective(1000px) rotateY(0deg) scale(1.05);
        }
        
        /* Floating Orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.8;
            animation: float-orb-3d 20s ease-in-out infinite;
            pointer-events: none;
            z-index: 1;
            mix-blend-mode: screen;
        }
        
        .orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 229, 255, 0.8), rgba(0, 188, 212, 0.4));
            top: -100px;
            right: -100px;
            animation-duration: 25s;
        }
        
        .orb-2 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(22, 64, 75, 0.7), rgba(29, 85, 99, 0.4));
            bottom: -100px;
            left: -100px;
            animation-duration: 30s;
            animation-delay: -5s;
        }
        
        .orb-3 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.6), rgba(251, 146, 60, 0.3));
            top: 40%;
            left: 50%;
            animation-duration: 35s;
            animation-delay: -10s;
        }
        
        @keyframes float-orb-3d {
            0%, 100% { 
                transform: translate(0, 0) scale(1) rotate(0deg);
            }
            25% { 
                transform: translate(150px, -150px) scale(1.3) rotate(90deg);
            }
            50% { 
                transform: translate(-80px, -200px) scale(0.8) rotate(180deg);
            }
            75% { 
                transform: translate(-180px, -100px) scale(1.2) rotate(270deg);
            }
        }
        
        /* Particle System */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }
        
        .particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--cyan);
            border-radius: 50%;
            opacity: 0.7;
            box-shadow: 0 0 10px var(--cyan);
            animation: particle-float 15s ease-in-out infinite;
        }
        
        @keyframes particle-float {
            0% {
                transform: translateY(0) translateX(0) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
                transform: scale(1);
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px) scale(0.5);
                opacity: 0;
            }
        }
        
        /* Trust Bar */
        .trust-bar {
            background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(147, 51, 234, 0.05));
            padding: 24px 30px;
            text-align: center;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .trust-items {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--slate);
        }
        
        .trust-item svg {
            width: 20px;
            height: 20px;
            color: var(--cyan);
        }
        
        /* Video Demo Section */
        .video-demo {
            padding: 120px 30px;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }
        
        .video-demo::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .video-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
        }
        
        .video-container video {
            width: 100%;
            display: block;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.3);
            opacity: 1;
            transition: opacity 0.3s ease;
        }
        
        .video-overlay.playing {
            opacity: 0;
            pointer-events: none;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .play-button:hover {
            transform: scale(1.1);
        }
        
        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid var(--dark);
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }
        
        .video-header {
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }
        
        .video-header h2 {
            font-size: 56px;
            margin-bottom: 20px;
        }
        
        .video-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Problem/Solution Split */
        .split-section {
            padding: 120px 30px;
            background: var(--white);
        }
        
        .split-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }
        
        .split-side {
            padding: 30px;
            border-radius: 24px;
            position: relative;
        }
        
        .problem-side {
    color: #1a1a1a;
            background: #fcf0e7;
            border: 2px solid #e5d4c1;
        }
        
        .solution-side {
    color: #1a1a1a;
            background: linear-gradient(135deg, #F0FDFF 0%, #E0F2FE 100%);
            border: 2px solid var(--cyan);
        }
        
        .split-side h3 {
            font-size: 32px;
            margin-bottom: 24px;
        }
        
        .split-side ul {
            list-style: none;
            margin-bottom: 32px;
        }
        
        .split-side li {
    color: #2d3748;
            padding-left: 32px;
            margin-bottom: 16px;
            position: relative;
            font-size: 16px;
            line-height: 1.6;
        }
        
        .problem-side li::before {
            content: '❌';
            position: absolute;
            left: 0;
            font-size: 20px;
        }
        
        .solution-side li::before {
            content: '✅';
            position: absolute;
            left: 0;
            font-size: 20px;
        }
        
        .screenshot-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 32px;
        }
        
        .screenshot-grid img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }
        
        /* Features Showcase */
        .features-showcase {
            padding: 120px 30px;
            background: linear-gradient(135deg, var(--light-bg) 0%, #FFFFFF 100%);
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }
        
        .section-eyebrow {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--cyan);
            margin-bottom: 12px;
        }
        
        .section-header h2 {
            font-size: 56px;
            margin-bottom: 20px;
            line-height: 1.1;
        }
        
        .section-header p {
            font-size: 18px;
            color: var(--gray);
            line-height: 1.7;
        }
        
        .features-visual-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        
        .feature-visual-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .feature-visual-card:hover {
            transform: translateY(-20px) scale(1.05) rotate(-2deg);
            box-shadow: 0 30px 60px rgba(0, 229, 255, 0.3);
        }
        
        .feature-image {
            width: 100%;
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .feature-icon-overlay {
            position: absolute;
            bottom: -30px;
            left: 32px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }
        
        .feature-content {
            padding: 48px 32px 32px;
        }
        
        .feature-content h3 {
            font-size: 24px;
            margin-bottom: 12px;
        }
        
        .feature-content p {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .feature-benefit {
            display: inline-block;
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(147, 51, 234, 0.1));
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--cyan-dark);
        }
        
        /* Implementation Timeline */
        .timeline-section {
            padding: 120px 30px;
            background: var(--dark);
            color: white;
        }
        
        .timeline-container {
            max-width: 1200px;
            margin: 80px auto 0;
            position: relative;
        }
        
        .timeline-line {
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--cyan), var(--purple));
            border-radius: 4px;
        }
        
        .timeline-steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            position: relative;
        }
        
        .timeline-step {
            text-align: center;
            position: relative;
        }
        
        .timeline-dot {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            border-radius: 50%;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 8px 24px rgba(0, 229, 255, 0.4);
            position: relative;
            z-index: 10;
        }
        
        .timeline-step h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .timeline-step p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Stats Grid */
        .stats-grid-section {
            padding: 100px 30px;
            background: linear-gradient(135deg, #00E5FF 0%, #16404B 40%, #1D5563 70%, #FFFFFF 100%);
            text-align: center;
        }
        
        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
        }
        
        .stat-box {
            color: white;
        }
        
        .big-number {
            font-size: 64px;
            font-weight: 900;
            margin-bottom: 12px;
            display: block;
        }
        
        .stat-description {
            font-size: 15px;
            opacity: 0.9;
            font-weight: 500;
        }
        
        /* Case Studies */
        .case-studies {
            padding: 120px 30px;
            background: var(--white);
        }
        
        .case-study-grid {
            max-width: 1400px;
            margin: 80px auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        
        .case-study-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }
        
        .case-study-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
        }
        
        .case-study-image {
            width: 100%;
            height: 220px;
            background-size: cover;
            background-position: center;
        }
        
        .case-study-content {
            padding: 32px;
        }
        
        .case-study-label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--cyan);
            margin-bottom: 12px;
            letter-spacing: 1px;
        }
        
        .case-study-content h3 {
            font-size: 24px;
            margin-bottom: 16px;
        }
        
        .case-study-quote {
            color: var(--gray);
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 24px;
            border-left: 3px solid var(--cyan);
            padding-left: 16px;
        }
        
        .case-metrics {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        
        .metric-box {
            background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(147, 51, 234, 0.1));
            padding: 16px;
            border-radius: 12px;
            text-align: center;
        }
        
        .metric-number {
            font-size: 28px;
            font-weight: 900;
            color: var(--cyan-dark);
            display: block;
        }
        
        .metric-label {
            font-size: 12px;
            color: var(--gray);
            font-weight: 600;
        }
        
        /* Interactive Comparison */
        .comparison-section {
            padding: 120px 30px;
            background: var(--light-bg);
        }
        
        .comparison-table {
            max-width: 1200px;
            margin: 80px auto 0;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
        }
        
        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table th {
            background: var(--dark);
            color: white;
            padding: 24px;
            text-align: left;
            font-size: 18px;
            font-weight: 700;
        }
        
        .comparison-table td {
            padding: 20px 24px;
            border-bottom: 1px solid #E2E8F0;
        }
        
        .comparison-table tr:hover {
            background: rgba(0, 229, 255, 0.03);
        }
        
        .check-icon {
            color: var(--cyan);
            font-size: 24px;
        }
        
        .cross-icon {
            color: #EF4444;
            font-size: 24px;
        }
        
        /* FAQ */
        .faq-section {
            padding: 120px 30px;
            background: var(--white);
        }
        
        .faq-grid {
            max-width: 900px;
            margin: 80px auto 0;
        }
        
        .faq-item {
            background: white;
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
        }
        
        .faq-toggle {
            font-size: 24px;
            color: var(--cyan);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: var(--gray);
            line-height: 1.7;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-top: 20px;
        }
        
        /* Final CTA */
        .final-cta {
            padding: 120px 30px;
            background: linear-gradient(135deg, var(--dark) 0%, var(--slate) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .final-cta::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }
        
        .cta-content h2 {
            font-size: 56px;
            color: white;
            margin-bottom: 24px;
            line-height: 1.2;
        }
        
        .cta-content p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
        }
        
        .btn-white {
            padding: 18px 40px;
            background: white;
            color: var(--dark);
            border: none;
            border-radius: 100px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
        }
        
        /* Footer */
        footer {
            background: #0F1729;
            color: white;
            padding: 80px 30px 40px;
        }
        
        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }
        
        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 24px;
        }
        
        .footer-column h4 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 12px;
        }
        
        .footer-column a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: var(--cyan);
        }
        
        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .hero-content,
            .split-content {
                grid-template-columns: 1fr;
            }
            
            .features-visual-grid,
            .case-study-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .timeline-steps {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 42px;
            }
            
            .features-visual-grid,
            .case-study-grid,
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            nav {
                top: 12px;
                padding: 12px 20px;
                gap: 20px;
            }
        }

/* ========================================
   WHITE SPACE FIX PATCH  
   Added to fix excessive side margins
   ======================================== */

/* ---- ELEMENTOR NUCLEAR OVERRIDE ---- */
.elementor-section.elementor-section-boxed > .elementor-container,
.elementor-section > .elementor-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.elementor-column-wrap,
.elementor-widget-wrap {
    padding: 0 !important;
}

.elementor-widget-html {
    width: 100% !important;
    max-width: 100% !important;
}

.elementor-widget-html .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* ---- WIDEN ALL CONTENT CONTAINERS from 1400px → 1600px ---- */
.hero-content {
    max-width: 1600px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    gap: 60px !important;
}

.split-content {
    max-width: 1600px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    gap: 48px !important;
}

.features-visual-grid {
    max-width: 1600px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.case-study-grid {
    max-width: 1600px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.stats-grid {
    max-width: 1600px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.comparison-table {
    max-width: 1400px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.timeline-container {
    max-width: 1400px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.faq-grid {
    max-width: 1000px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.section-header {
    max-width: 900px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.video-header {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.trust-items {
    max-width: 1400px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

#breezee-inquiry-reduction {
    max-width: 1400px !important;
}

.cta-content,
.footer-grid,
.footer-bottom {
    max-width: 1600px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

/* ---- SECTIONS FULL BLEED ---- */
.split-section,
.features-showcase,
.case-studies,
.comparison-section,
.faq-section,
.timeline-section,
.stats-grid-section,
.hero,
.video-demo {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
    .hero-content,
    .split-content,
    .features-visual-grid,
    .case-study-grid,
    .stats-grid,
    .comparison-table,
    .timeline-container,
    .faq-grid,
    .section-header,
    .video-header,
    .trust-items,
    .cta-content,
    .footer-grid,
    .footer-bottom {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

@media (max-width: 768px) {
    .hero-content,
    .split-content,
    .features-visual-grid,
    .case-study-grid,
    .stats-grid,
    .comparison-table,
    .timeline-container,
    .faq-grid,
    .section-header,
    .video-header,
    .trust-items,
    .cta-content,
    .footer-grid,
    .footer-bottom {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}/* End custom CSS */