/* Learn More Page Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #fff; }

/* Hero */
.learn-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #0a1120 0%, #1e3a8a 100%);
    color: #fff;
    text-align: center;
}

.learn-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.learn-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.learn-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.learn-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-section {
    padding: 100px 0;
}

.content-section.alt-bg {
    background: #f8fafc;
}

.content-section.dark-bg {
    background: #0a1120;
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.15rem;
    color: #64748b;
}

.section-header.light h2 {
    color: #fff;
}

.section-header.light p {
    color: #94a3b8;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-text {
    max-width: 100%;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.content-text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 100%;
}

.content-visual {
    position: sticky;
    top: 120px;
}

.visual-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
}

.visual-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.visual-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.visual-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.visual-feature span {
    color: #10b981;
    font-weight: bold;
}

/* Types Grid */
.types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.type-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.type-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.type-icon.google {
    background: linear-gradient(135deg, #ea4335 0%, #fbbc05 50%, #34a853 100%);
}

.type-icon.custom {
    background: linear-gradient(135deg, #f16145 0%, #8b5cf6 100%);
}

.type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.type-card > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.type-card ul {
    list-style: none;
}

.type-card li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.type-card li:last-child {
    border-bottom: none;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f16145 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    color: #fff;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-step p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: 20px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-8px);
}

.benefit-stat {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f16145 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.industry-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 0.9rem;
    color: #64748b;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #1e3a8a;
}

.faq-question span {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer {
    padding: 0 24px 24px;
    color: #64748b;
    line-height: 1.7;
}

/* CTA */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
    color: #fff;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-container p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #fff;
    color: #1e3a8a;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.cta-btn.secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .learn-hero {
        padding: 140px 0 80px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2,
    .content-text h2 {
        font-size: 2rem;
    }
}
