/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    color: #0f172a;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Global container - matching index.html */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, #7c3aed, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn i {
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
}

.btn-primary {
    background: #7c3aed;
    color: white;
}

.btn-primary:hover {
    background: #6d28d9;
}

.btn-dark {
    background: #0f172a;
    color: white;
}

.btn-dark:hover {
    background: #1e293b;
}

.btn-purple {
    background: #7c3aed;
    color: white;
}

.btn-purple:hover {
    background: #6d28d9;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid;
}

.badge i {
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 0.25rem;
}

.badge-purple {
    background: #f3e8ff;
    color: #7c3aed;
    border-color: #d8b4fe;
}

.badge-blue {
    background: #dbeafe;
    color: #2563eb;
    border-color: #93c5fd;
}

/* Header - Updated to match index.html */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #334155;
    transition: transform 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: #7c3aed;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text {
    color: white;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: #cbd5e1;
    transition: color 0.2s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: white;
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: block;
    }
}

.mobile-menu-btn {
    display: block;
    color: #cbd5e1;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: color 0.2s ease;
}

.mobile-menu-btn:hover {
    color: white;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #334155;
}

.nav-mobile.active {
    display: flex;
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #334155;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f3e8ff 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: #a855f7;
    border-radius: 50%;
    filter: blur(3rem);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: #3b82f6;
    border-radius: 50%;
    filter: blur(3rem);
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    min-height: 80vh;
    padding-top: 1rem;
    padding-bottom: 3rem;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    space-y: 2rem;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #64748b;
}

.breadcrumb .active {
    color: #7c3aed;
    font-weight: 500;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0f172a;
    line-height: 1.2;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.75;
    max-width: 32rem;
    margin: 2rem 0;
}

.hero-cta {
    margin: 2rem 0;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.user-avatars {
    display: flex;
    margin-left: -0.5rem;
}

.user-avatars img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-left: -0.5rem;
}

.social-proof-text {
    font-size: 0.875rem;
}

.stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 0.25rem;
}

.star-filled {
    width: 1rem;
    height: 1rem;
    color: #f59e0b;
    fill: currentColor;
}

.social-proof-text p {
    color: #64748b;
    font-weight: 500;
}

/* Hero Images */
.hero-images {
    position: relative;
}

.image-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    transform: rotate(1deg);
    transition: transform 0.5s ease;
}

.image-grid:hover {
    transform: rotate(0deg);
}

.featured-image {
    grid-column: span 2;
    position: relative;
}

.small-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.image-wrapper:hover {
    transform: scale(1.05);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #a855f7, #3b82f6);
    opacity: 0.75;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover::before {
    opacity: 1;
}

.featured-image .image-wrapper {
    height: 16rem;
}

.small-image .image-wrapper {
    height: 8rem;
}

.image-wrapper img,
.image-wrapper svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .featured-image .image-wrapper {
        height: 16rem;
    }
    
    .small-image .image-wrapper {
        height: 8rem;
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    margin-bottom: 4rem;
}

.feature-card {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .feature-card {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-reverse {
        direction: rtl;
    }
    
    .feature-reverse > * {
        direction: ltr;
    }
}

.feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 16rem;
}

@media (min-width: 1024px) {
    .feature-image {
        height: 100%;
    }
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(59, 130, 246, 0.2));
    z-index: 1;
}

.feature-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-card:nth-child(odd) .feature-icon {
    background: #f3e8ff;
    color: #7c3aed;
}

.feature-card:nth-child(even) .feature-icon {
    background: #dbeafe;
    color: #2563eb;
}

.feature-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

/* Styles Showcase */
.styles-showcase {
    background: linear-gradient(to right, #f8fafc, #f3e8ff);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-header h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 1rem;
}

.showcase-header p {
    color: #64748b;
    line-height: 1.75;
    max-width: 64rem;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .styles-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.style-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.style-item:hover {
    transform: scale(1.05);
}

.style-item svg {
    display: block;
}

.style-overlay {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    z-index: 2;
}

.style-overlay p {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.showcase-cta {
    text-align: center;
}

/* Responsive Utilities */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.slide-up.active {
    transform: translateY(0);
    opacity: 1;
}

/* Scroll Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    animation: bounce 2s infinite;
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #f1f5f9 0%, #dbeafe 50%, #f3e8ff 100%);
    padding: 5rem 0;
    text-align: center;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.blog-hero-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.search-container {
    max-width: 400px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    width: 1.25rem;
    height: 1.25rem;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    font-size: 1.125rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    background: white;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    padding: 3rem 0;
}

.blog-main {
    min-width: 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.article-count {
    color: #64748b;
    font-weight: 400;
    font-size: 1rem;
}

.featured-posts {
    margin-bottom: 3rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.featured-post {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.post-image-wrapper {
    position: relative;
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .post-image {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #8b5cf6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.meta-icon {
    width: 1rem;
    height: 1rem;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.post-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #8b5cf6;
}

.post-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    font-size: 0.875rem;
}

.author-name {
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.author-role {
    color: #64748b;
    margin: 0;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #7c3aed;
}

.read-more-icon {
    width: 1rem;
    height: 1rem;
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.post-card {
    display: flex;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.post-image-container {
    flex-shrink: 0;
    width: 250px;
}

.post-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card-image {
    transform: scale(1.05);
}

.post-card-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.category-badge {
    display: inline-block;
    background: #ede9fe;
    color: #6d28d9;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 1rem;
}

.post-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1rem 0;
    flex-grow: 1;
}

.post-card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card-title a:hover {
    color: #8b5cf6;
}

.post-card-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    border: 1px solid #e2e8f0;
}

.blog-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem;
    text-align: left;
    background: none;
    border: none;
    border-radius: 0.5rem;
    color: #64748b;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.category-item:hover {
    background: #f8fafc;
    color: #0f172a;
}

.category-item.active {
    background: #ede9fe;
    color: #6d28d9;
}

.category-count {
    font-size: 0.875rem;
    color: #9ca3af;
}

.newsletter-widget {
    background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
}

.newsletter-description {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.newsletter-btn {
    background: #8b5cf6;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background: #7c3aed;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-hero-description {
        font-size: 1rem;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .post-card {
        flex-direction: column;
    }
    
    .post-image-container {
        width: 100%;
    }
    
    .post-card-image {
        height: 200px;
    }
}

/* Blog Article Styles */
.article-content {
    padding-top: 80px;
}

.article-hero {
    background: linear-gradient(135deg, #f1f5f9 0%, #dbeafe 50%, #f3e8ff 100%);
    padding: 3rem 0;
}

.article-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.breadcrumb-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #8b5cf6;
}

.breadcrumb-separator {
    width: 1rem;
    height: 1rem;
}

.breadcrumb-current {
    color: #9ca3af;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #7c3aed;
}

.back-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.back-button:hover .back-icon {
    transform: translateX(-2px);
}

.article-meta {
    margin-bottom: 1.5rem;
}

.article-category {
    display: inline-block;
    background: #8b5cf6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-excerpt {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.author-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-large {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-name-large {
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.author-role-large {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

.article-meta-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.article-featured-image {
    margin: -2rem 0 3rem;
    text-align: center;
}

.featured-image {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    padding: 3rem 0;
}

.article-body {
    min-width: 0;
}

.article-prose {
    max-width: none;
    color: #374151;
    line-height: 1.7;
}

.article-prose h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 2rem 0 1rem;
}

.article-prose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin: 1.5rem 0 0.75rem;
}

.article-prose p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.custom-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.custom-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.custom-list li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: #8b5cf6;
    border-radius: 50%;
    margin: 0.75rem 1rem 0 0;
    flex-shrink: 0;
}

.custom-numbered-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    counter-reset: item;
}

.custom-numbered-list li {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    counter-increment: item;
    position: relative;
}

.custom-numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: -1.5rem;
    top: 0;
    background: #8b5cf6;
    color: white;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.article-tags-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.tags-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-share-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.share-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.share-button.twitter {
    background: #1da1f2;
    color: white;
}

.share-button.linkedin {
    background: #0077b5;
    color: white;
}

.share-button.facebook {
    background: #1877f2;
    color: white;
}

.share-icon {
    width: 1rem;
    height: 1rem;
}

.article-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.author-bio {
    text-align: center;
}

.author-bio-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.author-bio-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.author-bio-role {
    color: #8b5cf6;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.author-bio-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.related-post:hover {
    transform: translateY(-1px);
}

.related-post-image {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.related-post-content {
    flex: 1;
}

.related-post-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.related-post:hover .related-post-title {
    color: #8b5cf6;
}

.related-post-meta {
    color: #64748b;
    font-size: 0.75rem;
    margin: 0;
}

.cta-widget {
    background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
    text-align: center;
}

.cta-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.cta-description {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: #8b5cf6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

/* Original Homepage Styles */

/* Hero Section - Eliminate empty space */
.hero-section {
    position: relative;
    min-height: 75vh;
    background: linear-gradient(135deg, #f1f5f9 0%, #dbeafe 50%, #f3e8ff 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0 1rem 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid;
}

.badge-purple {
    background: #f3e8ff;
    color: #6d28d9;
    border-color: #ddd6fe;
}

.badge-blue {
    background: #dbeafe;
    color: #1d4ed8;
    border-color: #bfdbfe;
}

.badge-icon {
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 0.25rem;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #64748b;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
}

.breadcrumb-current {
    color: #8b5cf6;
    font-weight: 500;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(90deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 36rem;
}

.hero-cta {
    display: flex;
    justify-content: flex-start;
}

.btn-hero {
    background: #0f172a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-hero:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.user-avatars {
    display: flex;
    margin-left: -0.5rem;
}

.user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.rating-info {
    font-size: 0.875rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: #f59e0b;
    margin-bottom: 0.25rem;
}

.star {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.rating-text {
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.hero-showcase {
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    transform: rotate(1deg);
    transition: transform 0.5s ease;
}

.showcase-grid:hover {
    transform: rotate(0deg);
}

.showcase-main {
    grid-column: span 2;
    position: relative;
    height: 16rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.showcase-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #a855f7 0%, #3b82f6 100%);
    border-radius: 1rem;
    filter: blur(4px);
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.showcase-main:hover .showcase-bg {
    opacity: 1;
}

.showcase-image-main {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.showcase-main:hover .showcase-image-main {
    transform: scale(1.05);
}

.showcase-small {
    position: relative;
    height: 8rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.showcase-bg-small {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #a855f7 0%, #3b82f6 100%);
    border-radius: 1rem;
    filter: blur(4px);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.showcase-small:hover .showcase-bg-small {
    opacity: 0.75;
}

.showcase-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.showcase-small:hover .showcase-image {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: white;
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 400px;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-reverse {
    direction: rtl;
}

.feature-reverse > * {
    direction: ltr;
}

.feature-image {
    position: relative;
    overflow: hidden;
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    z-index: 1;
}

.feature-img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.1);
}

.feature-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: #f3e8ff;
    color: #8b5cf6;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon .icon {
    width: 2rem;
    height: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-btn {
    background: #0f172a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    transition: background-color 0.2s ease;
}

.feature-btn:hover {
    background: #1e293b;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-btn:hover .btn-icon {
    transform: translateX(0.25rem);
}

/* Styles Showcase */
.styles-showcase {
    background: linear-gradient(90deg, #f8fafc 0%, #f3e8ff 100%);
    border-radius: 1.5rem;
    padding: 2rem;
}

.styles-header {
    text-align: center;
    margin-bottom: 3rem;
}

.styles-header h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.styles-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.6;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.style-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.style-item:hover {
    transform: scale(1.05);
}

.style-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    z-index: 1;
}

.style-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.style-item:hover .style-image {
    transform: scale(1.05);
}

.style-label {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    z-index: 2;
}

.style-label p {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.styles-cta {
    text-align: center;
}

.btn-purple {
    background: #8b5cf6;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-purple:hover {
    background: #7c3aed;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.25);
}

/* AI Character Section */
.ai-character-section {
    padding: 1rem 0;
    background: white;
}

.ai-character-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ai-character-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-badge {
    background: #f3e8ff;
    color: #6d28d9;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.ai-character-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.highlight {
    color: #8b5cf6;
}

.ai-character-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-character-text p {
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

.ai-character-visual {
    position: relative;
}

.visual-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #a855f7 0%, #3b82f6 100%);
    border-radius: 1rem;
    filter: blur(4px);
    opacity: 0.2;
}

.visual-content {
    position: relative;
    width: 100%;
    height: 20rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: white;
}

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

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

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: #f3e8ff;
    color: #8b5cf6;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon .icon {
    width: 2rem;
    height: 2rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: #64748b;
    line-height: 1.6;
}

/* Mobile responsive for benefits */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits with Anime Creator Lite Section */
.anime-creator-benefits {
    padding: 5rem 0;
    background: #f8fafc;
}

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

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

.benefit-item:hover {
    transform: translateY(-2px);
}

.benefit-item h3 {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Explore Creation Section */
.explore-creation {
    padding: 5rem 0;
    background: white;
}

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

.explore-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.explore-text p {
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.explore-visual {
    position: relative;
}

/* Personalize Section */
.personalize-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f3e8ff 100%);
}

.personalize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.personalize-card:hover {
    transform: translateY(-4px);
}

.personalize-icon {
    width: 4rem;
    height: 4rem;
    background: #f3e8ff;
    color: #8b5cf6;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.personalize-icon .icon {
    width: 2rem;
    height: 2rem;
}

.personalize-card h3 {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.personalize-card p {
    color: #64748b;
    line-height: 1.6;
}

.personalize-note {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.personalize-note p {
    color: #6d28d9;
    font-size: 1.125rem;
    font-style: italic;
    margin: 0;
}

/* Realistic Results Section */
.realistic-results {
    padding: 5rem 0;
    background: white;
}

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

.results-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.results-text p {
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.results-visual {
    position: relative;
}

/* Perfect Character Section */
.perfect-character {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.character-step {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.character-step:hover {
    transform: translateY(-4px);
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: #dbeafe;
    color: #3b82f6;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon .icon {
    width: 2rem;
    height: 2rem;
}

.character-step h3 {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.character-step p {
    color: #64748b;
    line-height: 1.6;
}

/* Consistent Cast Section */
.consistent-cast {
    padding: 5rem 0;
    background: white;
}

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

.cast-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.cast-text p {
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cast-visual {
    position: relative;
}

/* Why Popular Section */
.why-popular {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f3e8ff 0%, #dbeafe 100%);
}

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

.popular-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.popular-item:hover {
    transform: translateY(-2px);
}

.popular-icon {
    width: 4rem;
    height: 4rem;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popular-icon .icon {
    width: 2rem;
    height: 2rem;
}

.popular-item h3 {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.popular-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for new sections */
@media (max-width: 1024px) {
    .explore-content,
    .results-content,
    .cast-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .character-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .popular-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .character-steps,
    .personalize-grid {
        grid-template-columns: 1fr;
    }
    
    .explore-text h2,
    .results-text h2,
    .cast-text h2 {
        font-size: 2rem;
    }
    
    .popular-item {
        flex-direction: column;
        text-align: center;
    }
}
.creation-process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f3e8ff 100%);
}

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

.process-step {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: #f3e8ff;
    color: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-blue {
    background: #dbeafe;
    color: #3b82f6;
}

.step-green {
    background: #dcfce7;
    color: #16a34a;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: white;
}

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

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

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.25rem;
}

.author-role {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background: #f8fafc;
}

.faq-list {
    max-width: 3xl;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f3e8ff 0%, #dbeafe 100%);
}

.cta-content {
    text-align: center;
    max-width: 4xl;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-icon {
    width: 5rem;
    height: 5rem;
    background: #8b5cf6;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.cta-icon-svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
}

.cta-description {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 2xl;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-cta {
    background: #8b5cf6;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-cta:hover {
    background: #7c3aed;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.25);
}

.cta-note {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .hero-grid,
    .ai-character-grid,
    .feature-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-reverse {
        direction: ltr;
    }
    
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-grid {
        text-align: center;
    }
    
    .social-proof {
        justify-content: center;
    }
    
    .ai-character-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #8b5cf6;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #64748b;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-excerpt {
        font-size: 1rem;
    }
    
    .article-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .article-prose h2 {
        font-size: 1.5rem;
    }
    
    .article-prose h3 {
        font-size: 1.25rem;
    }
    
    .article-prose p,
    .custom-list li {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-button {
        justify-content: center;
    }
}

/* === Additions: responsive image handling & mobile centering === */

/* Desktop: keep overfill effect only where intended */
@media (min-width: 769px) {
  .image-wrapper img,
  .content-image img {
    width: 117%;
    height: auto;
    object-fit: cover;
    display: block;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .image-wrapper { height: 18rem; overflow: hidden; }
  .image-wrapper img { width: 100% !important; height: 100% !important; object-fit: cover; }

  .content-image { height: 12rem; overflow: hidden; }
  .content-image img { width: 100% !important; height: 100% !important; object-fit: cover; }

  .hero-content,
  .character-info,
  .benefits-header,
  .voice-header,
  .final-cta { text-align: center; }

  .character-badges,
  .character-cta,
  .character-tags,
  .rating,
  .cta-buttons { justify-content: center !important; }

  .content-with-image { grid-template-columns: 1fr !important; }
  .content-with-image.reverse { direction: ltr; }

  html, body { overflow-x: hidden; }
}
