/* ============================================
   AI SEO / GEO LANDING PAGE
   ============================================ */

/* Hero Section */
.geo-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
}

.geo-hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.geo-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.geo-hero-title .highlight {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.geo-hero-subtitle {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.geo-hero-subtitle strong {
    color: var(--white);
}

.geo-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.geo-hero-ctas .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.geo-hero-ctas .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.geo-hero-platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.geo-hero-platforms > span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-logos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.platform-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* What is GEO Section */
.geo-what {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.geo-what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.geo-what-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--grey-700);
    margin-bottom: 20px;
}

.geo-what-content p strong {
    color: var(--grey-900);
}

.geo-what-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--grey-200);
}

.geo-stat {
    text-align: center;
}

.geo-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.geo-stat-label {
    font-size: 0.875rem;
    color: var(--grey-600);
}

/* Comparison Card */
.comparison-card {
    background: var(--grey-100);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.comparison-item {
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.comparison-item.old {
    background: var(--white);
    border: 2px dashed var(--grey-300);
}

.comparison-item.new {
    background: var(--gradient-primary);
    color: var(--white);
}

.comparison-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.comparison-item.old .comparison-label {
    color: var(--grey-500);
}

.comparison-item.new .comparison-label {
    color: rgba(255, 255, 255, 0.8);
}

.comparison-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.comparison-item.old .comparison-content p {
    color: var(--grey-700);
}

.comparison-item.new .comparison-content p {
    color: var(--white);
}

.comparison-arrow {
    display: flex;
    justify-content: center;
    margin: 8px 0;
    color: var(--primary-blue);
}

/* Why GEO Section */
.geo-why {
    padding: var(--section-padding) 0;
    background: var(--grey-100);
}

.geo-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.geo-why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.geo-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.geo-why-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 144, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
}

.geo-why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--grey-900);
}

.geo-why-card p {
    font-size: 0.9375rem;
    color: var(--grey-600);
    line-height: 1.6;
}

/* Services Section */
.geo-services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.geo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.geo-service-card {
    background: var(--grey-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.geo-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.geo-service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--grey-900);
}

.geo-service-card > p {
    font-size: 0.9375rem;
    color: var(--grey-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--grey-700);
    padding: 8px 0;
    border-top: 1px solid var(--grey-200);
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
}

/* Traditional SEO Section */
.geo-traditional {
    padding: var(--section-padding) 0;
    background: var(--gradient-hero);
}

.geo-traditional .section-header .section-title,
.geo-traditional .section-header .section-subtitle {
    color: var(--white);
}

.geo-traditional .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.traditional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.traditional-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(10px);
}

.traditional-card h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.traditional-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Process Section */
.geo-process {
    padding: var(--section-padding) 0;
    background: var(--white);
}

/* FAQ Section */
.geo-faq {
    padding: var(--section-padding) 0;
    background: var(--grey-100);
}

/* Contact Section */
.geo-contact {
    padding: var(--section-padding) 0;
    background: var(--gradient-hero);
    position: relative;
}

.geo-contact .section-tag,
.geo-contact .section-title {
    color: var(--white);
}

.geo-contact .contact-content > p {
    color: rgba(255, 255, 255, 0.8);
}

.geo-cta-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}

.cta-feature svg {
    color: var(--primary-orange);
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .geo-what-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .geo-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .geo-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .traditional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .geo-hero {
        padding-top: 140px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .geo-hero-title {
        font-size: 2rem;
    }
    
    .geo-hero-subtitle {
        font-size: 1rem;
    }
    
    .geo-hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .geo-hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .platform-logos {
        gap: 8px;
    }
    
    .platform-tag {
        padding: 6px 12px;
        font-size: 0.8125rem;
    }
    
    .geo-what-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .geo-stat-number {
        font-size: 2rem;
    }
    
    .geo-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .geo-why-card {
        padding: 24px;
    }
    
    .geo-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .geo-service-card {
        padding: 24px;
    }
    
    .traditional-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .traditional-card {
        padding: 24px;
    }
    
    .comparison-card {
        padding: 20px;
    }
    
    .comparison-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .geo-hero {
        padding-top: 130px;
    }
    
    .geo-hero-title {
        font-size: 1.75rem;
    }
    
    .geo-why-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-icon-wrap {
        width: 48px;
        height: 48px;
    }
}
