/* ===== Articles & Insights Styles ===== */

/* ===== Articles Hero ===== */
.articles-hero,
.article-hero {
    position: relative;
    padding: 140px 0 60px;
    overflow: hidden;
}

.articles-hero-bg,
.article-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.articles-hero-content,
.article-hero-content {
    position: relative;
    z-index: 1;
}

.articles-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 50%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.articles-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 700px;
    line-height: 1.7;
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.85rem;
}

.breadcrumbs a {
    color: var(--gray-400);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--blue-light);
}

.breadcrumb-sep {
    color: var(--gray-500);
}

.breadcrumb-current {
    color: var(--blue-light);
    font-weight: 500;
}

/* ===== Filter Bar ===== */
.articles-filter-section {
    padding: 32px 0;
    background: var(--navy-light);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.articles-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.articles-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(17, 22, 64, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius);
    max-width: 400px;
    transition: var(--transition);
}

.articles-search:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.articles-search svg {
    color: var(--gray-400);
    flex-shrink: 0;
}

.articles-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-primary);
}

.articles-search input::placeholder {
    color: var(--gray-500);
}

.articles-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-btn {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--gray-300);
    white-space: nowrap;
}

.category-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    color: var(--white);
    border-color: var(--blue);
}

.category-btn.active {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* ===== Featured Article Card ===== */
.featured-article-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 32px;
    background: rgba(17, 22, 64, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
}

.featured-article-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.featured-article-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.featured-article-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--blue), #2563eb);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-article-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featured-article-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
}

.featured-article-excerpt {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ===== Article Meta ===== */
.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.article-category-tag {
    padding: 4px 12px;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fbbf24;
}

.article-date,
.article-read-time {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.article-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}

.author-role {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* ===== Articles Grid ===== */
.articles-grid,
.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.article-card {
    background: rgba(17, 22, 64, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

a.article-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.article-card-coming {
    opacity: 0.7;
    cursor: default;
}

.article-card-image {
    height: 200px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

a.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.05);
}

.placeholder-icon {
    color: var(--gray-500);
    opacity: 0.4;
}

.article-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.article-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white);
}

.article-card-excerpt {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    flex: 1;
}

.article-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(59, 130, 246, 0.08);
}

.article-arrow {
    font-size: 1.2rem;
    color: var(--blue-light);
    transition: var(--transition);
}

a.article-card:hover .article-arrow {
    transform: translateX(4px);
}

/* ===== Articles CTA ===== */
.articles-cta-card {
    text-align: center;
    padding: 64px 48px;
    background: rgba(17, 22, 64, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
}

.articles-cta-card h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.articles-cta-card p {
    font-size: 1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.articles-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Article Page Styles ===== */

/* Article Hero */
.article-hero {
    padding: 140px 0 48px;
}

.article-hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
}

.article-author-hero {
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-author-hero .author-avatar {
    width: 48px;
    height: 48px;
}

/* Featured Image */
.article-featured-image {
    padding: 0 0 48px;
}

.article-banner-img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: block;
}

/* Article Layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

/* Article Body */
.article-body {
    max-width: 720px;
}

.article-body .article-lead {
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 400;
}

.article-body p {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.9;
    margin-bottom: 22px;
}

.article-body h2 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 48px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.article-body h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 32px;
    margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-body li {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.9;
    margin-bottom: 10px;
    position: relative;
}

.article-body ul li::marker {
    color: var(--blue-light);
}

.article-body ol li::marker {
    color: var(--blue-light);
    font-weight: 600;
}

.article-body strong {
    color: var(--white);
    font-weight: 600;
}

.article-body blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    border-left: 4px solid var(--blue);
    background: rgba(59, 130, 246, 0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-body blockquote p {
    color: var(--gray-200);
    font-style: italic;
    margin-bottom: 0;
}

/* Social Sharing */
.article-share {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.share-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-400);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
}

.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-linkedin { background: #0a66c2; }
.share-line { background: #00c300; }

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Article Tags */
.article-tags {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.tags-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-400);
    margin-right: 8px;
}

.article-tag {
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--blue-light);
    transition: var(--transition);
}

.article-tag:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--blue);
    color: var(--white);
}

/* ===== Sidebar ===== */
.article-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: rgba(17, 22, 64, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: var(--radius);
    padding: 24px;
}

.sidebar-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

/* Table of Contents */
.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toc-link {
    font-size: 0.85rem;
    color: var(--gray-400);
    transition: var(--transition);
    padding-left: 12px;
    border-left: 2px solid transparent;
    line-height: 1.4;
}

.toc-link:hover {
    color: var(--blue-light);
    border-left-color: var(--blue);
}

/* Author Sidebar */
.sidebar-author-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(59, 130, 246, 0.3);
    margin-bottom: 12px;
}

.sidebar-author-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.sidebar-author-role {
    font-size: 0.82rem;
    color: var(--blue-light);
    margin-bottom: 12px;
}

.sidebar-author-bio {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* CTA Sidebar */
.cta-card {
    background: rgba(234, 179, 8, 0.05);
    border-color: rgba(234, 179, 8, 0.2);
}

.cta-card .sidebar-card-title {
    color: #fbbf24;
    border-bottom-color: rgba(234, 179, 8, 0.2);
}

.cta-card p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== Article CTA Section ===== */
.article-cta-section {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(22, 27, 74, 0.9));
}

.article-cta-card {
    text-align: center;
    padding: 64px 48px;
    background: rgba(17, 22, 64, 0.6);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

.article-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(249, 115, 22, 0.1));
    border-radius: 50%;
    color: #fbbf24;
}

.article-cta-card h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.article-cta-card p {
    font-size: 1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.article-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.article-cta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.article-cta-info a {
    color: var(--blue-light);
    transition: var(--transition);
}

.article-cta-info a:hover {
    color: var(--white);
}

/* ===== No Results ===== */
.articles-no-results {
    text-align: center;
    padding: 80px 24px;
    display: none;
}

.articles-no-results.visible {
    display: block;
}

.articles-no-results svg {
    color: var(--gray-500);
    margin-bottom: 16px;
}

.articles-no-results h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gray-300);
    margin-bottom: 8px;
}

.articles-no-results p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* ===== Responsive: Articles ===== */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card {
        flex: 1;
        min-width: 250px;
    }

    .article-body {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .articles-hero,
    .article-hero {
        padding: 120px 0 40px;
    }

    .featured-article-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .featured-article-image img {
        height: 200px;
    }

    .articles-grid,
    .related-articles-grid {
        grid-template-columns: 1fr;
    }

    .articles-categories {
        gap: 6px;
    }

    .category-btn {
        padding: 6px 14px;
        font-size: 0.78rem;
    }

    .article-hero-title {
        font-size: 1.6rem;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .article-sidebar {
        flex-direction: column;
    }

    .sidebar-card {
        min-width: auto;
    }

    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-cta-card {
        padding: 40px 24px;
    }

    .articles-cta-card {
        padding: 40px 24px;
    }

    .article-body h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .articles-hero-title {
        font-size: 1.8rem;
    }

    .featured-article-title {
        font-size: 1.2rem;
    }

    .article-hero-title {
        font-size: 1.4rem;
    }

    .article-card-image {
        height: 160px;
    }

    .articles-search {
        max-width: none;
    }
}


/* ===== Bilingual Article Divider ===== */
.article-lang-divider {
    margin: 56px 0 40px;
    text-align: center;
    position: relative;
}

.article-lang-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.article-lang-divider span {
    position: relative;
    display: inline-block;
    padding: 8px 24px;
    background: var(--navy);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
}

.article-lang-section {
    scroll-margin-top: 100px;
}


/* ===== AEO Service Hero ===== */
.aeo-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #0f1a3a 50%, #0a0e27 100%);
}

.aeo-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.aeo-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.aeo-hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aeo-badge {
    display: inline-block;
    width: fit-content;
    padding: 8px 20px;
    background: rgba(24, 181, 255, 0.1);
    border: 1px solid rgba(24, 181, 255, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #18b5ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.aeo-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 8px 0 0;
}

.aeo-title-cyan {
    background: linear-gradient(135deg, #18b5ff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aeo-title-white {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    margin-right: 8px;
}

.aeo-title-purple {
    background: linear-gradient(135deg, #c084fc, #ff3ea5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aeo-title-white {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.aeo-hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gray-300);
    margin: 0;
}

.aeo-trust-msg {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-top: 12px;
    font-style: italic;
}

.aeo-platform-glass {
    background: rgba(24, 181, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(24, 181, 255, 0.2);
    transition: var(--transition);
}

.aeo-platform-glass:hover {
    background: rgba(24, 181, 255, 0.15);
    border-color: rgba(24, 181, 255, 0.5);
    box-shadow: 0 0 12px rgba(24, 181, 255, 0.3);
}

.aeo-hero-subtitle {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-400);
    margin: 0;
}

.aeo-hero-desc {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.7;
    max-width: 500px;
    margin: 8px 0 0;
}

.aeo-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.aeo-platform-tag {
    padding: 6px 14px;
    background: rgba(24, 181, 255, 0.08);
    border: 1px solid rgba(24, 181, 255, 0.2);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #18b5ff;
}

.aeo-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.aeo-btn-glow {
    box-shadow: 0 4px 20px rgba(24, 181, 255, 0.4);
    animation: aeo-glow 3s ease-in-out infinite;
}

@keyframes aeo-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(24, 181, 255, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(24, 181, 255, 0.7), 0 0 40px rgba(192, 132, 252, 0.3); }
}

.aeo-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aeo-hero-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(24, 181, 255, 0.15);
    margin: 0 auto;
    animation: aeo-float 6s ease-in-out infinite;
    border: 1px solid rgba(24, 181, 255, 0.15);
}

.aeo-hero-image img:hover {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(24, 181, 255, 0.25);
    transform: translateY(-4px);
}

@keyframes aeo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Why AI SEO Matters Block */
.aeo-why-section,
.aeo-why-block {
    padding: 48px 0;
    border-top: 1px solid rgba(24, 181, 255, 0.1);
}

.aeo-why-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 28px;
}

.aeo-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.aeo-why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(24, 181, 255, 0.04);
    border: 1px solid rgba(24, 181, 255, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.aeo-why-item:hover {
    background: rgba(24, 181, 255, 0.08);
    border-color: rgba(24, 181, 255, 0.25);
    transform: translateX(4px);
}

.aeo-why-item svg {
    flex-shrink: 0;
}

.aeo-why-item span {
    font-size: 0.92rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .aeo-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .aeo-hero-text {
        align-items: center;
    }

    .aeo-badge {
        margin: 0 auto;
    }

    .aeo-hero-desc {
        max-width: none;
    }

    .aeo-platforms {
        justify-content: center;
    }

    .aeo-hero-buttons {
        justify-content: center;
    }

    .aeo-hero-image {
        order: -1;
    }

    .aeo-hero-image img {
        max-width: 400px;
    }
}

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

    .aeo-hero-title {
        font-size: 1.8rem;
    }

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

    .aeo-hero-image img {
        max-width: 100%;
    }
}
