
/* Learn More Page Specific Styles */

/* Section Layouts */
.what-is-agentic {
    padding: 80px 0;
    background: white;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.section-text .lead {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* AI Comparison Chart */
.ai-comparison-chart {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.chart-item {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.chart-item:hover {
    transform: translateY(-5px);
}

.chart-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.traditional-ai .chart-icon {
    background: linear-gradient(135deg, #EF4444, #F87171);
}

.agentic-ai .chart-icon {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
}

.chart-icon svg {
    width: 24px;
    height: 24px;
}

.evolution-arrow {
    font-size: 2rem;
    color: var(--primary-purple);
    font-weight: bold;
}

/* Common Slider Styles */
.benefits-with-navigation,
.industries-with-navigation,
.services-with-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefits-slider,
.industries-slider,
.services-slider {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.benefits-slider-track,
.industries-slider-track,
.services-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.benefits-slider-track {
    width: 300%; /* 3 slides */
}

.industries-slider-track {
    width: 200%; /* 2 slides */
}

.services-slider-track {
    width: 400%; /* 4 slides */
}

.benefits-slide,
.industries-slide,
.services-slide {
    flex-shrink: 0;
    background: white;
    padding: 2rem;
    border-radius: 16px;
}

.benefits-slide {
    width: 33.333%; /* 100% / 3 slides */
}

.industries-slide {
    width: 50%; /* 100% / 2 slides */
}

.services-slide {
    width: 25%; /* 100% / 4 slides */
}

/* Section Specific Styles */
.why-revolutionary {
    padding: 80px 0;
    background: var(--gray-100);
}

.why-revolutionary h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.industry-applications {
    padding: 80px 0;
    background: white;
}

.industry-applications h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.our-services {
    padding: 80px 0;
    background: var(--gray-100);
}

.our-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.technology-stack {
    padding: 80px 0;
    background: white;
}

.technology-stack h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-400);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-purple);
    transform: scale(1.2);
}

/* Key Differences Styling */
.key-differences {
    margin-top: 2rem;
}

.difference-item {
    background: var(--gray-100);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.difference-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.difference-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
}

.vs {
    background: var(--primary-purple);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.difference-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.traditional, .agentic {
    padding: 1rem;
    border-radius: 12px;
}

.traditional {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #EF4444;
}

.agentic {
    background: rgba(107, 70, 193, 0.1);
    border-left: 4px solid var(--primary-purple);
}

.traditional p, .agentic p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.benefit-icon.cost {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.benefit-icon.availability {
    background: linear-gradient(135deg, var(--accent-cyan), #22D3EE);
}

.benefit-icon.automation {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.industry-applications-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.industry-applications-list span {
    background: var(--gray-100);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.industry-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.service-icon.chat {
    background: linear-gradient(135deg, var(--accent-pink), #F472B6);
}

.service-icon.voice {
    background: linear-gradient(135deg, var(--accent-orange), #FBBF24);
}

.service-icon.custom {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
}

.service-icon.crm {
    background: linear-gradient(135deg, var(--accent-cyan), #22D3EE);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Technology Categories */
.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-category {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
}

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-items span {
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-with-navigation {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-arrow {
        display: none;
    }
    
    .content-slide {
        padding: 2rem 1.5rem;
        min-height: 500px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .difference-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .difference-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefits-grid,
    .industries-grid,
    .services-grid,
    .tech-categories {
        grid-template-columns: 1fr;
    }
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-purple);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
    z-index: 10;
}

.nav-arrow:hover {
    background: var(--secondary-purple);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
}

.nav-arrow:disabled {
    background: var(--gray-400);
    cursor: not-allowed;
    transform: scale(1);
    box-shadow: none;
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
}

.content-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.content-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.content-dot.active {
    background: var(--primary-purple);
    transform: scale(1.2);
}

.content-dot:hover {
    background: var(--secondary-purple);
    transform: scale(1.1);
}

.learn-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.learn-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.learn-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* What is Agentic AI */
.what-is-agentic {
    padding: 80px 0;
    background: white;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-text h2 {
    color: var(--gray-900);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
}

.key-differences {
    margin-top: 2rem;
}

.difference-item {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 2rem;
}

.difference-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.difference-header h4 {
    color: var(--gray-900);
    font-weight: 600;
    font-size: 1.1rem;
}

.vs {
    background: var(--primary-purple);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.difference-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.traditional, .agentic {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.traditional p {
    color: var(--gray-600);
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #EF4444;
    border-radius: 4px;
    margin: 0;
    font-size: 0.9rem;
}

.agentic p {
    color: var(--gray-600);
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10B981;
    border-radius: 4px;
    margin: 0;
    font-size: 0.9rem;
}

.section-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-comparison-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: 16px;
}

.chart-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.chart-item.traditional-ai .chart-icon {
    background: linear-gradient(135deg, #EF4444, #F87171);
}

.chart-item.agentic-ai .chart-icon {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
}

.chart-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
}

.chart-icon svg {
    width: 24px;
    height: 24px;
}

.chart-item h4 {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.chart-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.evolution-arrow {
    font-size: 2rem;
    color: var(--primary-purple);
    font-weight: bold;
}

/* Why Revolutionary */
.why-revolutionary {
    padding: 80px 0;
    background: var(--gray-100);
}

.why-revolutionary h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.benefit-icon.cost {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.benefit-icon.availability {
    background: linear-gradient(135deg, var(--accent-cyan), #22D3EE);
}

.benefit-icon.automation {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
}

.benefit-icon.learning {
    background: linear-gradient(135deg, var(--accent-orange), #FBBF24);
}

.benefit-icon.personalization {
    background: linear-gradient(135deg, var(--accent-pink), #F472B6);
}

.benefit-icon.intelligence {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card h3 {
    color: var(--gray-900);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Industry Applications */
.industry-applications {
    padding: 80px 0;
    background: white;
}

.industry-applications h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-purple);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.industry-card h3 {
    color: var(--gray-900);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.industry-applications-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.industry-applications-list span {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.industry-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Our Services */
.our-services {
    padding: 80px 0;
    background: var(--gray-100);
}

.our-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.service-icon.chat {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
}

.service-icon.voice {
    background: linear-gradient(135deg, var(--accent-cyan), #22D3EE);
}

.service-icon.custom {
    background: linear-gradient(135deg, var(--accent-pink), #F472B6);
}

.service-icon.crm {
    background: linear-gradient(135deg, var(--accent-orange), #FBBF24);
}

.service-icon.reporting {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.service-icon.sales {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.service-icon.forms {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
}

.service-icon.multilingual {
    background: linear-gradient(135deg, #EF4444, #F87171);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    color: var(--gray-900);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Technology Stack */
.technology-stack {
    padding: 80px 0;
    background: white;
}

.technology-stack h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.tech-category h3 {
    color: var(--gray-900);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tech-items span {
    background: white;
    color: var(--gray-700);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.learn-cta {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.learn-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.learn-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-purple);
}

.cta-buttons .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Footer Enhancements */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-container {
    align-items: center;
}

.footer-logo h3 {
    color: white;
    margin: 0;
}

.company-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-800);
}

.company-info p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-contact p {
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-with-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
    }

    .nav-arrow svg {
        width: 20px;
        height: 20px;
    }

    .content-slide {
        padding: 2rem;
        min-height: 500px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .learn-hero h1 {
        font-size: 2.5rem;
    }

    .learn-hero p {
        font-size: 1rem;
    }

    .section-content {
        flex-direction: column;
        gap: 2rem;
    }

    .section-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .ai-comparison-chart {
        flex-direction: column;
        gap: 1rem;
    }

    .evolution-arrow {
        transform: rotate(90deg);
    }

    .difference-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefits-grid,
    .industries-grid,
    .services-grid,
    .tech-categories {
        grid-template-columns: 1fr;
    }

    .why-revolutionary h2,
    .industry-applications h2,
    .our-services h2,
    .technology-stack h2,
    .learn-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .chart-item {
        min-width: auto;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .learn-hero {
        padding: 100px 0 60px;
    }

    .what-is-agentic,
    .why-revolutionary,
    .industry-applications,
    .our-services,
    .technology-stack,
    .learn-cta {
        padding: 60px 0;
    }

    .difference-item,
    .benefit-card,
    .industry-card,
    .service-card,
    .tech-category {
        padding: 1.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .benefit-card h3,
    .industry-card h3,
    .service-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.industry-card,
.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }

.industry-card:nth-child(1) { animation-delay: 0.1s; }
.industry-card:nth-child(2) { animation-delay: 0.2s; }
.industry-card:nth-child(3) { animation-delay: 0.3s; }
.industry-card:nth-child(4) { animation-delay: 0.4s; }

/* Video Section */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.video-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.conference-video {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--gray-900);
}

.conference-video:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.video-caption {
    margin-top: 2rem;
    text-align: center;
    max-width: 600px;
}

.video-caption p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-style: italic;
}

/* Responsive Video Styles */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-section h2 {
        font-size: 2rem;
    }
    
    .video-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .conference-video {
        max-width: 300px;
    }
    
    .video-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 50px 0;
    }
    
    .video-section h2 {
        font-size: 1.8rem;
    }
    
    .conference-video {
        max-width: 250px;
    }
    
    .video-caption {
        margin-top: 1.5rem;
    }
    
    .video-caption p {
        font-size: 0.95rem;
    }
}
