.elementor-2827 .elementor-element.elementor-element-9839e94:not(.elementor-motion-effects-element-type-background), .elementor-2827 .elementor-element.elementor-element-9839e94 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-2827 .elementor-element.elementor-element-9839e94{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-2827 .elementor-element.elementor-element-9839e94 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}/* Start custom CSS for html, class: .elementor-element-878da6a *//* 25_article_geo.css */
.geo-landing-page-wrapper {
    /* Dark Theme Variables for GEO AI */
    --geo-primary: #06b6d4; /* Cyan 500 */
    --geo-primary-hover: #0891b2; /* Cyan 600 */
    --geo-primary-glow: rgba(6, 182, 212, 0.4);
    --geo-secondary: #a855f7; /* Purple 500 */
    --geo-bg-main: #020617; /* Slate 950 */
    --geo-bg-card: #0f172a; /* Slate 900 */
    --geo-text-main: #f8fafc; /* Slate 50 */
    --geo-text-muted: #94a3b8; /* Slate 400 */
    --geo-border: #1e293b; /* Slate 800 */

    font-family: 'Inter', 'Kanit', sans-serif;
    color: var(--geo-text-main);
    background-color: var(--geo-bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    
    /* Strict Reset to isolate from 00_Global_Styles.css */
    h1, h2, h3, h4, h5, h6, p, ul, li {
        margin: 0;
        padding: 0;
        font-family: inherit;
        color: inherit;
        line-height: normal;
    }

    ul {
        list-style: none;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    * {
        box-sizing: border-box;
    }

    /* Layout */
    .geo-landing-section {
        padding: 100px 0;
        position: relative;
        border-bottom: 1px solid var(--geo-border);
    }

    .geo-landing-section.no-border {
        border-bottom: none;
    }

    .geo-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        z-index: 10;
    }

    /* Glowing Blobs for AI feel */
    .geo-glow-blob {
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        filter: blur(100px);
        z-index: 1;
        opacity: 0.15;
        pointer-events: none;
    }

    .geo-glow-cyan {
        background-color: var(--geo-primary);
        top: -100px;
        left: -100px;
    }

    .geo-glow-purple {
        background-color: var(--geo-secondary);
        bottom: -100px;
        right: -100px;
    }

    /* Animations Setup */
    @keyframes geoFadeInUp {
        0% { opacity: 0; transform: translateY(30px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes geoFloat {
        0% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0); }
    }

    .animate-up { animation: geoFadeInUp 0.8s ease-out forwards; }
    .animate-float { animation: geoFloat 4s ease-in-out infinite; }
    
    .delay-100 { animation-delay: 0.1s; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-300 { animation-delay: 0.3s; }

    /* Buttons */
    .geo-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 32px;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
        cursor: pointer;
        font-size: 1.125rem;
    }

    .geo-btn-primary {
        background: linear-gradient(135deg, var(--geo-primary), var(--geo-secondary));
        color: #ffffff;
        box-shadow: 0 10px 25px -5px var(--geo-primary-glow);
        border: 1px solid rgba(255,255,255,0.1);
    }

    .geo-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px -5px rgba(168, 85, 247, 0.5);
    }

    .geo-btn-outline {
        background-color: transparent;
        color: var(--geo-text-main);
        border: 2px solid var(--geo-border);
    }

    .geo-btn-outline:hover {
        border-color: var(--geo-primary);
        color: var(--geo-primary);
        background-color: rgba(6, 182, 212, 0.05);
    }

    /* Hero Section */
    .geo-hero {
        display: flex;
        align-items: center;
        gap: 60px;
        padding: 120px 0 60px;
    }

    .geo-hero-content {
        flex: 1;
    }

    .geo-badge {
        display: inline-block;
        padding: 8px 16px;
        background-color: rgba(6, 182, 212, 0.15);
        color: var(--geo-primary);
        border: 1px solid rgba(6, 182, 212, 0.3);
        font-weight: 500;
        font-size: 0.875rem;
        border-radius: 100px;
        margin-bottom: 24px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .geo-hero-title {
        font-size: 4.5rem;
        font-weight: 800;
        color: var(--geo-text-main);
        line-height: 1.15;
        margin-bottom: 24px;
        letter-spacing: -1px;
    }

    .geo-hero-title span {
        background: linear-gradient(135deg, var(--geo-primary), var(--geo-secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .geo-hero-desc {
        font-size: 1.25rem;
        color: var(--geo-text-muted);
        margin-bottom: 40px;
        max-width: 600px;
    }

    .geo-hero-actions {
        display: flex;
        gap: 16px;
    }

    .geo-hero-image {
        flex: 1.1;
        position: relative;
    }

    .geo-hero-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        border: 1px solid var(--geo-border);
    }

    /* Section Headers */
    .geo-section-header {
        text-align: center;
        margin-bottom: 64px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 2;
    }

    .geo-section-title {
        font-size: 3rem;
        font-weight: 800;
        color: var(--geo-text-main);
        margin-bottom: 20px;
    }

    .geo-section-desc {
        font-size: 1.125rem;
        color: var(--geo-text-muted);
    }

    /* Feature Grid */
    .geo-features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        position: relative;
        z-index: 2;
    }

    .geo-feature-card {
        background-color: var(--geo-bg-card);
        border-radius: 16px;
        padding: 40px;
        border: 1px solid var(--geo-border);
        transition: all 0.3s ease;
    }

    .geo-feature-card:hover {
        transform: translateY(-10px);
        border-color: var(--geo-primary);
        box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1);
    }

    .geo-feature-icon {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(168,85,247,0.1));
        color: var(--geo-primary);
        border: 1px solid rgba(6,182,212,0.2);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin-bottom: 24px;
    }

    .geo-feature-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--geo-text-main);
        margin-bottom: 16px;
    }

    .geo-feature-text {
        color: var(--geo-text-muted);
        line-height: 1.7;
    }

    /* Blocks */
    .geo-block {
        display: flex;
        align-items: center;
        gap: 64px;
        position: relative;
        z-index: 2;
    }

    .geo-block.reverse {
        flex-direction: row-reverse;
    }

    .geo-block-image {
        flex: 1;
        position: relative;
    }

    .geo-block-image img {
        width: 100%;
        border-radius: 24px;
        border: 1px solid var(--geo-border);
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .geo-block-content {
        flex: 1;
    }

    .geo-list {
        margin-top: 32px;
    }

    .geo-list-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
        background-color: var(--geo-bg-card);
        padding: 24px;
        border-radius: 12px;
        border: 1px solid var(--geo-border);
    }

    .geo-list-icon {
        color: var(--geo-secondary);
        font-size: 24px;
        flex-shrink: 0;
        margin-top: 4px;
    }

    .geo-list-text h4 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--geo-text-main);
        margin-bottom: 8px;
    }

    .geo-list-text p {
        color: var(--geo-text-muted);
        line-height: 1.6;
    }

    /* Accordion / FAQ */
    .geo-accordion {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
        position: relative;
        z-index: 2;
    }

    .geo-accordion-item {
        background-color: var(--geo-bg-card);
        border-radius: 12px;
        border: 1px solid var(--geo-border);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .geo-accordion-item:hover {
        border-color: var(--geo-secondary);
    }

    .geo-accordion-header {
        padding: 24px;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        cursor: pointer;
    }

    .geo-accordion-icon {
        color: var(--geo-primary);
        font-size: 24px;
        font-weight: bold;
    }

    .geo-accordion-title {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--geo-text-main);
    }

    .geo-accordion-body {
        padding: 0 24px 24px 64px;
        color: var(--geo-text-muted);
        line-height: 1.7;
    }

    /* Final CTA */
    .geo-cta {
        background: linear-gradient(135deg, var(--geo-bg-card) 0%, rgba(10, 10, 10, 0.9) 100%);
        border: 1px solid var(--geo-border);
        border-radius: 24px;
        padding: 80px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .geo-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
        z-index: 1;
        pointer-events: none;
    }

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

    .geo-cta-title {
        font-size: 3rem;
        font-weight: 800;
        color: var(--geo-text-main);
        margin-bottom: 24px;
    }

    .geo-cta-desc {
        font-size: 1.25rem;
        color: var(--geo-text-muted);
        margin-bottom: 40px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .geo-hero, .geo-block {
            flex-direction: column;
            text-align: center;
        }

        .geo-block.reverse {
            flex-direction: column;
        }

        .geo-hero-title {
            font-size: 3.5rem;
        }

        .geo-hero-actions {
            justify-content: center;
        }

        .geo-list-item {
            text-align: left;
        }
    }

    @media (max-width: 768px) {
        .geo-features-grid {
            grid-template-columns: 1fr;
        }

        .geo-landing-section {
            padding: 60px 0;
        }

        .geo-section-title {
            font-size: 2.25rem;
        }
        
        .geo-btn {
            width: 100%;
        }
        
        .geo-hero-actions {
            flex-direction: column;
        }

        .geo-hero-title {
            font-size: 2.75rem;
        }
    }
}/* End custom CSS */