/* ============================================
   ABOUT PAGE - MODERN UI STYLES
   ============================================ */

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes rotateGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Enhanced Hero Section */
.hero-animated-about {
    background: linear-gradient(-45deg, #667eea, #764ba2, #667eea, #764ba2);
    background-size: 400% 400%;
    animation: rotateGradient 15s ease infinite;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-animated-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s infinite;
}

.hero-animated-about::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1%, transparent 2%);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

.hero-content-about {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-content-about h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-content-about p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Mission Section Enhanced */
.mission-section-modern {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.mission-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    animation: slideInRight 0.8s ease-out;
}

.mission-text-modern {
    font-size: 1.3rem;
    color: #3E4C59;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Enhanced Stats Grid */
/* .stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
} */

/* Stats Grid with Glassmorphism */
.stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: -80px auto 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.stat-card-enhanced {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.6s ease-out backwards;
    position: relative;
    overflow: hidden;
}

/* .stat-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #00B4D8 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.stat-card-enhanced:hover::before {
    transform: scaleX(1);
} */

.stat-card-enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 48px rgba(102, 126, 234, 0.2);
}

/* Stagger animation */
.stat-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
.stat-card-enhanced:nth-child(2) { animation-delay: 0.2s; }
.stat-card-enhanced:nth-child(3) { animation-delay: 0.3s; }
.stat-card-enhanced:nth-child(4) { animation-delay: 0.4s; }

.stat-number-enhanced {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    display: block;
}

.stat-label-enhanced {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
}

/* Step Circle Enhanced */
.step-circle-enhanced {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.step-circle-enhanced::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    filter: blur(12px);
    transition: all 0.4s ease;
}

.step-circle-enhanced:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.step-circle-enhanced:hover::before {
    opacity: 0.5;
    filter: blur(16px);
}

.step-circle-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.step-circle-2 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.step-circle-3 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* How It Works Section Enhanced */
.how-it-works-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    padding: 5rem 2rem;
    border-radius: 24px;
    margin: 5rem 0;
    animation: fadeInUp 0.8s ease-out;
}

.steps-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card-modern {
    text-align: center;
    animation: fadeInUp 0.8s ease-out backwards;
}

.step-card-modern:nth-child(1) { animation-delay: 0.2s; }
.step-card-modern:nth-child(2) { animation-delay: 0.4s; }
.step-card-modern:nth-child(3) { animation-delay: 0.6s; }

.step-title-modern {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0D1B2A;
    font-weight: 700;
}

.step-text-modern {
    color: #3E4C59;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Revenue Model Card Enhanced */
.revenue-card-enhanced {
    background: white;
    padding: 4rem 3rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
    animation: scaleIn 0.8s ease-out;
}

.revenue-title-enhanced {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #667eea;
    text-align: center;
    font-weight: 800;
}

.revenue-breakdown-modern {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.revenue-item-modern {
    display: flex;
    align-items: center;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    animation: slideInRight 0.6s ease-out backwards;
}

.revenue-item-modern:nth-child(1) {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 6px solid #10b981;
    animation-delay: 0.2s;
}

.revenue-item-modern:nth-child(2) {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 6px solid #3b82f6;
    animation-delay: 0.4s;
}

.revenue-item-modern:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.revenue-percentage {
    font-size: 3rem;
    font-weight: 800;
    margin-right: 2rem;
    min-width: 100px;
}

.revenue-item-modern:nth-child(1) .revenue-percentage {
    color: #10b981;
}

.revenue-item-modern:nth-child(2) .revenue-percentage {
    color: #3b82f6;
}

.revenue-details h4 {
    font-weight: 700;
    color: #0D1B2A;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.revenue-details p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* Engagement Formula Card */
.formula-card-modern {
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
    border-left: 6px solid #f59e0b;
    animation: scaleIn 0.8s ease-out 0.6s backwards;
}

.formula-card-modern h4 {
    margin: 0 0 1rem 0;
    color: #92400e;
    font-size: 1.3rem;
    font-weight: 700;
}

.formula-card-modern p {
    margin: 0;
    color: #78350f;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Features Grid Enhanced */
.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 0 2rem;
}

.feature-card-enhanced {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out backwards;
}

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

.feature-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
}

.feature-icon-enhanced {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.feature-card-enhanced:nth-child(2n) .feature-icon-enhanced {
    animation-delay: 0.5s;
}

.feature-title-enhanced {
    color: #0D1B2A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-text-enhanced {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Technology Stack Enhanced */
.tech-stack-modern {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 2rem;
}

.tech-stack-intro {
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.tech-badges-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

.tech-badge-modern {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    animation: scaleIn 0.5s ease-out backwards;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tech-badge-modern:nth-child(1) {
    background: linear-gradient(135deg, #3776ab 0%, #ffd343 100%);
    color: white;
    animation-delay: 0.1s;
}

.tech-badge-modern:nth-child(2) {
    background: #000;
    color: white;
    animation-delay: 0.2s;
}

.tech-badge-modern:nth-child(3) {
    background: #336791;
    color: white;
    animation-delay: 0.3s;
}

.tech-badge-modern:nth-child(4) {
    background: #635bff;
    color: white;
    animation-delay: 0.4s;
}

.tech-badge-modern:nth-child(5), .tech-badge-modern:nth-child(6) {
    background: #f1f3f5;
    color: #0D1B2A;
    border: 2px solid #dee2e6;
}

.tech-badge-modern:nth-child(5) { animation-delay: 0.5s; }
.tech-badge-modern:nth-child(6) { animation-delay: 0.6s; }

.tech-badge-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Final CTA Enhanced */
.cta-final-enhanced {
    background: linear-gradient(-45deg, #0D1B2A, #1e3a5f, #2c5282, #1e3a5f);
    background-size: 400% 400%;
    animation: rotateGradient 15s ease infinite;
    padding: 6rem 2rem;
    text-align: center;
    border-radius: 24px;
    margin: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-final-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1%, transparent 2%);
    background-size: 50px 50px;
    animation: float 30s linear infinite;
}

.cta-final-content {
    position: relative;
    z-index: 1;
}

.cta-final-enhanced h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-final-enhanced p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-btn-enhanced {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: #0D1B2A;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    margin: 0.5rem;
}

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

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 3px solid white;
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Section Title Global */
.section-title-enhanced {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content-about h1 {
        font-size: 2.5rem;
    }

    .stats-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: -60px;
    }

    .hero-content-about p {
        font-size: 1.1rem;
    }

    .mission-title-modern {
        font-size: 2rem;
    }

    .mission-text-modern {
        font-size: 1.1rem;
    }

    .stat-card-enhanced {
        padding: 2rem 1.5rem;
    }

    .stat-number-enhanced {
        font-size: 2.5rem;
    }

    .step-circle-enhanced {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .revenue-card-enhanced {
        padding: 2.5rem 1.5rem;
    }

    .revenue-item-modern {
        flex-direction: column;
        text-align: center;
    }

    .revenue-percentage {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .cta-final-enhanced h2 {
        font-size: 2rem;
    }

    .cta-final-enhanced p {
        font-size: 1.1rem;
    }

    .tech-badges-modern {
        gap: 0.75rem;
    }

    .tech-badge-modern {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   ABOUT PAGE PRICING SECTION (NO INLINE STYLES)
   ============================================ */

.about-pricing-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    border-radius: 24px;
}

.about-pricing-title {
    margin-bottom: 1rem;
}

.about-pricing-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.about-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.about-pricing-card-reader {
    box-shadow: 0 8px 16px rgba(59,130,246,0.15);
    border: 2px solid #3b82f6;
}

.about-pricing-card-reader:hover {
    box-shadow: 0 16px 32px rgba(59,130,246,0.2);
}

.about-pricing-card-blogger {
    box-shadow: 0 8px 16px rgba(16,185,129,0.15);
    border: 2px solid #10b981;
}

.about-pricing-card-blogger:hover {
    box-shadow: 0 16px 32px rgba(16,185,129,0.2);
}

.about-pricing-badge {
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.75em;
    display: inline-block;
    margin-bottom: 16px;
    align-self: flex-start;
}

.about-pricing-badge-gray {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
}

.about-pricing-badge-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.about-pricing-badge-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.about-pricing-plan-name {
    margin-bottom: 12px;
    font-size: 1.75em;
}

.about-pricing-plan-free {
    color: #334155;
}

.about-pricing-plan-reader {
    color: #3b82f6;
}

.about-pricing-plan-blogger {
    color: #10b981;
}

.about-pricing-price-wrapper {
    margin-bottom: 16px;
}

.about-pricing-price {
    font-size: 3em;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.about-pricing-price-free {
    color: #334155;
}

.about-pricing-price-reader {
    color: #3b82f6;
}

.about-pricing-price-blogger {
    color: #10b981;
}

.about-pricing-period {
    color: #64748b;
    font-size: 0.85em;
    margin: 5px 0 0;
}

.about-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    line-height: 2.2;
    flex-grow: 1;
}

.about-pricing-feature-enabled {
    color: #334155;
    font-size: 0.9em;
}

.about-pricing-feature-disabled {
    color: #94a3b8;
    font-size: 0.9em;
}

.about-pricing-cta {
    display: block;
    text-align: center;
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s, transform 0.2s;
    margin-top: auto;
}

.about-pricing-cta:hover {
    opacity: 0.9;
}

.about-pricing-cta-free {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.about-pricing-cta-reader {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}

.about-pricing-cta-reader:hover {
    transform: scale(1.02);
}

.about-pricing-cta-blogger {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

.about-pricing-cta-blogger:hover {
    transform: scale(1.02);
}

.about-trust-badges {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.about-trust-title {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-trust-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.about-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.about-trust-item-green {
    color: #10b981;
}

.about-trust-item-blue {
    color: #3b82f6;
}

.about-trust-item-purple {
    color: #8b5cf6;
}

/* Dark Mode Overrides for About Pricing Section */
[data-theme="dark"] .about-pricing-section {
    background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
}

[data-theme="dark"] .about-pricing-card {
    background: var(--color-bg-secondary);
    border-color: var(--color-border-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .about-pricing-card:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .about-pricing-subtitle {
    color: var(--color-text-secondary);
}

[data-theme="dark"] .about-pricing-plan-free,
[data-theme="dark"] .about-pricing-price-free,
[data-theme="dark"] .about-pricing-feature-enabled {
    color: var(--color-text-primary);
}

[data-theme="dark"] .about-pricing-period {
    color: var(--color-text-secondary);
}

[data-theme="dark"] .about-pricing-feature-disabled {
    color: var(--color-text-tertiary);
}

[data-theme="dark"] .about-trust-badges {
    border-top-color: var(--color-border-primary);
}

[data-theme="dark"] .about-trust-title {
    color: var(--color-text-secondary);
}

@media (max-width: 768px) {
    .about-pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* ============================================
   DARK MODE - HOW IT WORKS SECTION
   ============================================ */

[data-theme="dark"] .how-it-works-modern {
    background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
}

[data-theme="dark"] .step-title-modern {
    color: var(--color-text-primary);
}

[data-theme="dark"] .step-text-modern {
    color: var(--color-text-secondary);
}

[data-theme="dark"] .step-circle-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: var(--color-border-primary);
}

/* ============================================
   PLATFORM FEATURES SECTION
   ============================================ */

.about-features-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    padding: 5rem 2rem;
    border-radius: 24px;
    margin: 5rem 0;
}

[data-theme="dark"] .about-features-section {
    background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
}
