/* =================================================================
   BODY STYLES - Scoped to #ai_body
   ================================================================= */

/* Hero Section */
#ai_body .hero-section {
    position: relative;
    min-height: 100vh;
    /* Use small viewport height on supporting browsers to prevent resize flicker when mobile URL bar shows/hides */
    min-height: 100svh;
    display: flex;
    align-items: center;
    background-color: #2a3a5a;
    background-image: linear-gradient(135deg, rgba(71, 94, 145, 0.5), rgba(42, 58, 90, 0.6)), url('https://cdn.fstr.site/sails-up/sha256/132bbd3854060f08a9a7fb431ca69048ef4c61a09691e911c8750c8574616713.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: 80px;
}

@media (max-width: 768px) {
    #ai_body .hero-section {
        padding-top: 60px;
    }
}

#ai_body .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.2'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Ccircle cx='10' cy='10' r='1'/%3E%3Ccircle cx='50' cy='10' r='1'/%3E%3Ccircle cx='10' cy='50' r='1'/%3E%3Ccircle cx='50' cy='50' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#ai_body .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

#ai_body .hero-badge {
    display: inline-block;
    background: rgba(255, 210, 31, 0.2);
    border: 1px solid var(--brand-accent);
    color: var(--brand-accent);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    opacity: 0;
    will-change: opacity, transform;
    animation: fadeInUp 0.8s ease-out both;
}

#ai_body .hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-bold);
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    will-change: opacity, transform;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    cursor: default;
}

#ai_body .hero-title:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 210, 31, 0.4), 0 0 60px rgba(255, 210, 31, 0.2);
}

@media (min-width: 768px) {
    #ai_body .hero-title {
        font-size: var(--text-7xl);
    }
}

#ai_body .hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0;
    will-change: opacity, transform;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

#ai_body .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    will-change: opacity, transform;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

#ai_body .hero-btn {
    padding: 1rem 2rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#ai_body .hero-btn-primary {
    background: var(--brand-accent);
    color: var(--brand-dark);
}

#ai_body .hero-btn-primary:hover {
    background: var(--brand-accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 210, 31, 0.3);
}

#ai_body .hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

#ai_body .hero-btn-secondary:hover {
    background: white;
    color: var(--brand-primary);
}

/* Stats Section */
#ai_body .hero-stats {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    opacity: 0;
    will-change: opacity, transform;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

#ai_body .stat-item {
    text-align: center;
}

#ai_body .stat-number {
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--brand-accent);
    display: block;
}

#ai_body .stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Counter Section */
#ai_body .counter-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%);
    position: relative;
    overflow: hidden;
}

#ai_body .counter-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd21f' fill-opacity='0.4'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Ccircle cx='10' cy='10' r='1'/%3E%3Ccircle cx='50' cy='10' r='1'/%3E%3Ccircle cx='10' cy='50' r='1'/%3E%3Ccircle cx='50' cy='50' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

#ai_body .counter-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    #ai_body .counter-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

#ai_body .counter-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
}

#ai_body .counter-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
}

#ai_body .counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    display: none;
}

@media (min-width: 768px) {
    #ai_body .counter-item:not(:last-child)::after {
        display: block;
    }
    #ai_body .counter-container > .counter-item:nth-child(2n)::after {
        display: block;
    }
}

#ai_body .counter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 210, 31, 0.15);
    border: 2px solid var(--brand-accent);
    color: var(--brand-accent);
    border-radius: 50%;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

#ai_body .counter-item:hover .counter-icon {
    background: var(--brand-accent);
    color: var(--brand-dark);
    transform: scale(1.08);
}

#ai_body .counter-value {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-bold);
    color: var(--brand-accent);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: -0.02em;
}

#ai_body .counter-value.counter-text {
    font-size: var(--text-5xl);
}

#ai_body .counter-suffix {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--brand-accent);
    margin-left: 0.1rem;
}

#ai_body .counter-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--font-weight-semibold);
    line-height: 1.4;
}

@media (max-width: 767px) {
    #ai_body .counter-section {
        padding: 3rem 1rem;
    }
    #ai_body .counter-value {
        font-size: var(--text-4xl);
    }
    #ai_body .counter-value.counter-text {
        font-size: var(--text-4xl);
    }
    #ai_body .counter-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
}

/* Tagline Section */
#ai_body .tagline-section {
    padding: 4rem 1.5rem;
    background: var(--brand-light);
    position: relative;
    overflow: hidden;
}

#ai_body .tagline-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

#ai_body .tagline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--brand-accent);
    color: var(--brand-dark);
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(71, 94, 145, 0.15);
}

#ai_body .tagline-text {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-medium);
    color: var(--brand-dark);
    line-height: 1.5;
    margin: 0;
}

#ai_body .tagline-highlight {
    color: var(--brand-primary);
    font-weight: var(--font-weight-semibold);
}

@media (min-width: 768px) {
    #ai_body .tagline-text {
        font-size: var(--text-3xl);
    }
}

@media (max-width: 767px) {
    #ai_body .tagline-section {
        padding: 3rem 1.5rem;
    }
    #ai_body .tagline-text {
        font-size: var(--text-lg);
    }
}

/* Services Section — shared header styles */
#ai_body .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

#ai_body .section-badge {
    display: inline-block;
    background: var(--brand-accent);
    color: var(--brand-dark);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

#ai_body .section-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

#ai_body .section-subtitle {
    font-size: var(--text-lg);
    color: var(--brand-neutral);
    line-height: 1.7;
}

/* Services Section */
#ai_body .services-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--brand-light) 100%);
}

#ai_body .services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    justify-items: center;
    align-items: stretch;
}

#ai_body .service-card {
    background: white;
    border-radius: 1.5rem;
    text-align: left;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

@media (max-width: 768px) {
    #ai_body .service-card {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
}

#ai_body .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(44, 10, 113, 0.2);
    border-color: var(--brand-accent);
}

#ai_body .service-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    background: var(--brand-light);
}

@media (max-width: 768px) {
    #ai_body .service-image-wrapper {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }
}

#ai_body .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: absolute;
    inset: 0;
}

@media (max-width: 768px) {
    #ai_body .service-image {
        position: static;
    }
}

#ai_body .service-card:hover .service-image {
    transform: scale(1.05);
}

#ai_body .service-body {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

@media (max-width: 768px) {
    #ai_body .service-body {
        padding: 2rem 2rem 2.5rem;
    }
}

#ai_body .service-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-light);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 2rem;
    margin: 0 0 1.5rem;
    border: 2px solid var(--brand-primary);
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(44, 10, 113, 0.15);
}

@media (max-width: 768px) {
    #ai_body .service-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
        margin: -3.5rem 0 1.25rem;
        border-radius: 1rem;
    }
}

#ai_body .service-card:hover .service-icon {
    background: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
}

#ai_body .service-title {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--brand-dark);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    #ai_body .service-title {
        font-size: var(--text-xl);
        margin-bottom: 1rem;
    }
}

#ai_body .service-description {
    color: var(--brand-neutral);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: var(--text-lg);
}

@media (max-width: 768px) {
    #ai_body .service-description {
        font-size: var(--text-base);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
}

#ai_body .service-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
    font-size: var(--text-lg);
}

#ai_body .service-link:hover {
    gap: 0.75rem;
}

@media (max-width: 768px) {
    #ai_body .service-link {
        font-size: var(--text-base);
    }
}



/* Process Section */
#ai_body .process-section {
    padding: 5rem 0;
    background: white;
}

#ai_body .process-timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

#ai_body .process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    z-index: 1;
}

@media (max-width: 768px) {
    #ai_body .process-line {
        left: 2rem;
    }
}

#ai_body .process-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

#ai_body .process-item:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    #ai_body .process-item,
    #ai_body .process-item:nth-child(even) {
        flex-direction: row;
    }
}

#ai_body .process-number {
    width: 60px;
    height: 60px;
    background: var(--brand-accent);
    color: var(--brand-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: var(--text-xl);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

#ai_body .process-content {
    flex: 1;
    padding: 0 2rem;
    background: white;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    #ai_body .process-content {
        padding-left: 2rem;
        padding-right: 0;
    }
}

#ai_body .process-title {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

#ai_body .process-description {
    color: var(--brand-neutral);
    line-height: 1.6;
}

/* Testimonials Section */
#ai_body .testimonials-section {
    padding: 5rem 0;
    background: var(--brand-light);
}

#ai_body .testimonials-swiper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#ai_body .testimonial-slide {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
}

#ai_body .testimonial-stars {
    color: var(--brand-accent);
    font-size: var(--text-xl);
    margin-bottom: 1.5rem;
}

#ai_body .testimonial-text {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--brand-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

#ai_body .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#ai_body .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

#ai_body .testimonial-info {
    text-align: left;
}

#ai_body .testimonial-name {
    font-weight: var(--font-weight-semibold);
    color: var(--brand-dark);
    margin-bottom: 0.25rem;
}

#ai_body .testimonial-role {
    font-size: var(--text-sm);
    color: var(--brand-neutral);
}

/* Why Choose Section */
#ai_body .why-choose-section {
    padding: 5rem 0;
    background: var(--brand-light);
}

#ai_body .why-choose-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    #ai_body .why-choose-content {
        grid-template-columns: 1fr 1fr;
    }
}

#ai_body .why-choose-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(44, 10, 113, 0.1);
    transition: transform 0.3s ease;
}

#ai_body .why-choose-image:hover {
    transform: scale(1.02);
}

#ai_body .why-choose-text h2 {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    #ai_body .why-choose-text h2 {
        font-size: var(--text-4xl);
    }
}

#ai_body .why-choose-text p {
    color: var(--brand-neutral);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: var(--text-lg);
}

#ai_body .why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#ai_body .why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

#ai_body .why-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--brand-primary);
    transition: all 0.3s;
}

#ai_body .why-choose-list li:hover .why-icon {
    background: var(--brand-primary);
    color: white;
}

#ai_body .why-text {
    flex: 1;
}

#ai_body .why-text h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--brand-dark);
    margin-bottom: 0.25rem;
}

#ai_body .why-text p {
    font-size: var(--text-sm);
    color: var(--brand-neutral);
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
#ai_body .cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#ai_body .cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.3'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

#ai_body .cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#ai_body .cta-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-bold);
    color: white;
    margin-bottom: 1rem;
}

#ai_body .cta-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

#ai_body .cta-button {
    padding: 1rem 2.5rem;
    background: var(--brand-accent);
    color: var(--brand-dark);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: 0.5rem;
    display: inline-block;
    transition: all 0.3s;
}

#ai_body .cta-button:hover {
    background: var(--brand-accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 210, 31, 0.3);
}

/* Blog/Posts Section - REQUIRED FOR GHOST CMS */
#ai_body .blog-section {
    padding: 5rem 0;
    background: white;
}

#ai_body .site-posts {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#ai_body .site-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

#ai_body .post-item {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid var(--light-grey);
}

#ai_body .post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(44, 10, 113, 0.15);
}

#ai_body .post-feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

#ai_body .post-content-wrapper {
    padding: 1.5rem;
}

#ai_body .post-tag {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

#ai_body .post-title {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

#ai_body .post-content {
    color: var(--brand-neutral);
    line-height: 1.6;
    margin-bottom: 1rem;
}

#ai_body .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--brand-neutral);
}

#ai_body .post-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#ai_body .post-link:hover {
    gap: 0.75rem;
}

#ai_body .post-min-read {
    font-weight: var(--font-weight-semibold);
}

#ai_body .post-load-more {
    display: block;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    background: var(--brand-primary);
    color: white;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

#ai_body .post-load-more:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    #ai_body .hero-title {
        font-size: var(--text-4xl);
    }

    #ai_body .process-item {
        margin-bottom: 2rem;
    }
}
