/* ========================================
   Virali - Premium Social Media Platform
   ======================================== */

:root {
    /* Premium Purple/Pink Brand Colors */
    --primary: #7C3AED;
    --primary-dark: #6D28D9;
    --primary-light: #A78BFA;
    --secondary: #A855F7;
    --accent: #EC4899;
    --accent-light: #F472B6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f0a1a;
    --gray-900: #1a1625;
    --gray-800: #2d2640;
    --gray-700: #475569;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gray-100: #faf8ff;
    --white: #ffffff;
    /* Signature Gradient */
    --gradient: linear-gradient(135deg, #7C3AED 0%, #A855F7 50%, #EC4899 100%);
    --gradient-soft: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(236,72,153,0.1) 100%);
    --gradient-dark: linear-gradient(135deg, #6D28D9 0%, #9333EA 50%, #DB2777 100%);
    /* Premium Shadows */
    --shadow-sm: 0 1px 2px rgba(124,58,237,0.05);
    --shadow: 0 4px 6px -1px rgba(124,58,237,0.1);
    --shadow-md: 0 10px 15px -3px rgba(124,58,237,0.1);
    --shadow-lg: 0 25px 50px -12px rgba(124,58,237,0.25);
    --shadow-xl: 0 35px 60px -15px rgba(124,58,237,0.3);
    --shadow-glow: 0 0 40px rgba(168,85,247,0.3);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}

.nav-logo i {
    color: var(--primary);
    font-size: 1.75rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: rgba(99,102,241,0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(99,102,241,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99,102,241,0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

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

.btn-ghost-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-ghost-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(99,102,241,0.15) 0%, transparent 70%);
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
}

.shape-1 { width: 400px; height: 400px; top: 10%; right: 10%; }
.shape-2 { width: 200px; height: 200px; top: 60%; left: 5%; }
.shape-3 { width: 150px; height: 150px; bottom: 10%; right: 30%; }

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

/* Dashboard Preview */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dots span:nth-child(1) { background: #ef4444; }
.preview-dots span:nth-child(2) { background: #f59e0b; }
.preview-dots span:nth-child(3) { background: #10b981; }

.preview-title {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.preview-content {
    display: flex;
    height: 300px;
}

.preview-sidebar {
    width: 60px;
    background: var(--gray-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 16px;
}

.preview-menu-item {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all 0.2s ease;
}

.preview-menu-item.active {
    background: var(--primary);
    color: var(--white);
}

.preview-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.preview-card {
    flex: 1;
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 20px;
}

.mini-chart {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.2;
    border-radius: var(--radius-sm);
}

.preview-platforms {
    display: flex;
    gap: 12px;
}

.preview-platforms .platform-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.platform-icon.facebook { background: #1877f2; }
.platform-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform-icon.youtube { background: #ff0000; }
.platform-icon.tiktok { background: #000000; }

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.25rem;
}

.card-1 { top: 20%; right: -30px; color: var(--success); animation-delay: 0s; }
.card-2 { top: 50%; left: -40px; color: #ef4444; animation-delay: 0.5s; }
.card-3 { bottom: 20%; right: -20px; color: var(--primary); animation-delay: 1s; }

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

/* ========================================
   Platforms Section
   ======================================== */
.platforms-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.platforms-label {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 32px;
    font-weight: 500;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
}

.platform-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    transition: color 0.2s ease;
}

.platform-logo:hover {
    color: var(--primary);
}

.platform-logo i {
    font-size: 2.5rem;
}

.platform-logo span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ========================================
   Section Styles
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99,102,241,0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

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

/* ========================================
   How It Works
   ======================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--gray-100);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    position: relative;
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--gradient);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0 12px;
}

.step-content p {
    color: var(--gray-600);
}

.step-icon {
    margin-top: 20px;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--gray-300);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-section {
    padding: 100px 0;
}

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

.testimonial-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.testimonial-card.featured {
    background: var(--gradient);
    border: none;
    color: var(--white);
    transform: scale(1.05);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #fbbf24;
}

.testimonial-card.featured .testimonial-stars i {
    color: var(--white);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gray-600);
}

.testimonial-card.featured .author-avatar {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

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

.author-name {
    font-weight: 600;
}

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

.testimonial-card.featured .author-role {
    color: rgba(255,255,255,0.8);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient);
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

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

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--dark);
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--primary-light);
}

.footer-brand p {
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    color: var(--gray-400);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-800);
}

.footer-badges {
    display: flex;
    gap: 24px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.footer-badges i {
    color: var(--success);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card.featured { transform: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; flex-direction: column; box-shadow: var(--shadow-lg); }
    .nav-menu.active { display: flex; }
    .nav-actions { display: none; }
    .nav-toggle { display: block; }
    .hero-title { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* ========================================
   Auth Pages (Login/Signup)
   ======================================== */
.auth-page {
    min-height: 100vh;
    background: var(--gray-100);
}

.navbar-auth {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.navbar-auth .nav-text {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 73px);
}

.auth-visual {
    position: relative;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    overflow: hidden;
}

.auth-visual-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 480px;
}

.auth-visual-content .auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.auth-visual-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.auth-visual-content > p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.auth-feature i {
    color: rgba(255,255,255,0.8);
}

.auth-stats {
    display: flex;
    gap: 48px;
}

.auth-stat {
    display: flex;
    flex-direction: column;
}

.auth-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
}

.auth-stat .stat-text {
    font-size: 0.875rem;
    opacity: 0.8;
}

.auth-testimonial {
    background: rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-top: 32px;
}

.auth-testimonial p {
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.auth-testimonial .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-testimonial .author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.auth-testimonial .author-info .name {
    font-weight: 600;
    display: block;
}

.auth-testimonial .author-info .role {
    font-size: 0.875rem;
    opacity: 0.8;
}

.auth-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.auth-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.auth-shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.auth-shape-2 { width: 300px; height: 300px; bottom: -50px; left: -50px; }
.auth-shape-3 { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Modern Auth Visual Styles */
.auth-hero-logo {
    margin-bottom: 30px;
}

.v-logo-animated {
    width: 140px;
    height: 140px;
}

.pulse-ring {
    animation: pulse 2s ease-in-out infinite;
}

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

.auth-headline {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.auth-headline .gradient-text {
    background: linear-gradient(135deg, #C084FC 0%, #F472B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-subtext {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.platform-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.platform-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.platform-icon:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.auth-stats-modern {
    display: flex;
    gap: 20px;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-card .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: var(--white);
}

.auth-form-wrapper {
    width: 100%;
    max-width: 440px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--gray-600);
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.social-btn.facebook {
    background: #1877f2;
    border-color: #1877f2;
    color: var(--white);
}

.social-btn.facebook:hover {
    background: #166fe5;
}

.social-btn i {
    font-size: 1.25rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.auth-divider span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    color: var(--gray-400);
}

.input-wrapper input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    color: var(--gray-800);
    transition: all 0.2s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.input-wrapper input::placeholder {
    color: var(--gray-400);
}

.toggle-password {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
}

.toggle-password:hover {
    color: var(--gray-600);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.checkbox-label input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.strength-bar span {
    display: block;
    height: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.strength-bar span.weak { background: var(--danger); }
.strength-bar span.fair { background: var(--warning); }
.strength-bar span.good { background: #84cc16; }
.strength-bar span.strong { background: var(--success); }

.strength-text {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.btn-full {
    width: 100%;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
}

.auth-footer p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.trust-item i {
    color: var(--success);
}

@media (max-width: 1024px) {
    .auth-container { grid-template-columns: 1fr; }
    .auth-visual { display: none; }
}

@media (max-width: 768px) {
    .auth-form-container { padding: 40px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .auth-trust { flex-wrap: wrap; }
    .navbar-auth .nav-text { display: none; }
}

/* ========================================
   Pricing Page
   ======================================== */
.pricing-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.toggle-label {
    font-weight: 500;
    color: var(--gray-500);
    transition: color 0.2s ease;
}

.toggle-label.active {
    color: var(--dark);
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 30px;
}

.toggle-switch input {
    display: none;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-300);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(26px);
}

.save-badge {
    background: var(--success);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-section {
    padding: 60px 0 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.pricing-card {
    position: relative;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 24px;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
    margin-bottom: 8px;
}

.plan-description {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.pricing-price .period {
    color: var(--gray-500);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    font-size: 1rem;
}

.pricing-features li i.fa-check {
    color: var(--success);
}

.pricing-features li i.fa-times {
    color: var(--gray-300);
}

.pricing-features li.disabled {
    color: var(--gray-400);
}

/* Comparison Table */
.comparison-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table thead th {
    background: var(--gray-900);
    color: var(--white);
    font-weight: 600;
}

.comparison-table thead th.featured {
    background: var(--primary);
}

.comparison-table td.featured {
    background: rgba(99,102,241,0.05);
}

.comparison-table .category-row td {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--gray-700);
}

.text-success { color: var(--success); }
.text-muted { color: var(--gray-300); }

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--gray-400);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-600);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
}

/* ========================================
   Features Page
   ======================================== */
.features-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.platforms-showcase {
    padding: 100px 0;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin: 16px 0 20px;
    line-height: 1.2;
}

.showcase-text > p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.platform-icons-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.platform-icon-lg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.platform-icon-lg:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.platform-icon-lg i {
    font-size: 2rem;
    color: var(--primary);
}

.platform-icon-lg span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.showcase-visual {
    display: flex;
    justify-content: center;
}

.feature-mockup {
    width: 100%;
    max-width: 400px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-content {
    padding: 20px;
}

.account-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.account-item:last-child {
    margin-bottom: 0;
}

.account-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 40px;
    text-align: center;
}

.account-item span:first-of-type {
    flex: 1;
    font-weight: 500;
}

.account-item .status {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 500;
}

.account-item .status.connected {
    background: rgba(16,185,129,0.1);
    color: var(--success);
}

/* Content Types */
.content-types-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.content-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.content-type-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.content-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.content-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.content-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.content-type-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.content-type-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.supported-platforms {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.supported-platforms i {
    font-size: 1.25rem;
    color: var(--gray-400);
}

/* Feature Detail Sections */
.feature-detail {
    padding: 100px 0;
}

.feature-detail.alt-bg {
    background: var(--gray-100);
}

.feature-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-detail-content.reverse {
    direction: rtl;
}

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

.feature-detail-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 16px 0 20px;
    line-height: 1.3;
}

.feature-detail-text > p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--gray-700);
}

.feature-list li i {
    color: var(--success);
}

/* Calendar Mockup */
.calendar-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 24px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
}

.calendar-nav {
    display: flex;
    gap: 8px;
}

.calendar-nav button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--gray-600);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.day-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    padding: 8px 0;
}

.day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    position: relative;
}

.day.today {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.day.has-post {
    background: var(--gray-100);
}

.post-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    bottom: 4px;
}

.post-dot + .post-dot {
    left: calc(50% + 4px);
}

/* Analytics Mockup */
.analytics-mockup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.analytics-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-xl);
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.analytics-header span {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.trend {
    font-size: 0.875rem;
    font-weight: 600;
}

.trend.positive {
    color: var(--success);
}

.analytics-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.analytics-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 80px;
}

.analytics-chart .bar {
    flex: 1;
    background: var(--gray-200);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.analytics-chart .bar.active {
    background: var(--gradient);
}

.analytics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.analytics-mini {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.analytics-mini i {
    font-size: 1.5rem;
    color: var(--primary);
}

.mini-data {
    display: flex;
    flex-direction: column;
}

.mini-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.mini-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* AI Mockup */
.ai-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-xl);
}

.ai-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-100);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.ai-input i {
    color: var(--primary);
    font-size: 1.25rem;
}

.ai-input span {
    color: var(--gray-500);
}

.ai-suggestions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-suggestion {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.ai-suggestion p {
    flex: 1;
    color: var(--gray-700);
    font-size: 0.875rem;
    line-height: 1.6;
}

.use-btn {
    width: 32px;
    height: 32px;
    background: var(--success);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
}

.ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-tags span {
    padding: 6px 12px;
    background: rgba(99,102,241,0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Team Mockup */
.team-mockup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.team-member .avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-info .name {
    font-weight: 600;
    color: var(--dark);
}

.member-info .role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.status-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 500;
}

.status-badge.online {
    background: rgba(16,185,129,0.1);
    color: var(--success);
}

.status-badge.offline {
    background: var(--gray-100);
    color: var(--gray-500);
}

.approval-card {
    padding: 20px;
    background: var(--white);
    border: 2px solid var(--warning);
    border-radius: var(--radius);
    margin-top: 8px;
}

.approval-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--warning);
    margin-bottom: 8px;
}

.approval-card p {
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 12px;
}

.approval-actions {
    display: flex;
    gap: 8px;
}

.approval-actions button {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.approval-actions .approve {
    background: var(--success);
    color: var(--white);
}

.approval-actions .reject {
    background: var(--gray-200);
    color: var(--gray-600);
}

/* All Features Grid */
.all-features-section {
    padding: 100px 0;
}

.all-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mini-feature {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.2s ease;
}

.mini-feature:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.mini-feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.mini-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.mini-feature p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

@media (max-width: 1024px) {
    .showcase-content { grid-template-columns: 1fr; }
    .feature-detail-content { grid-template-columns: 1fr; }
    .feature-detail-content.reverse { direction: ltr; }
    .content-types-grid { grid-template-columns: repeat(2, 1fr); }
    .all-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .platform-icons-large { grid-template-columns: repeat(2, 1fr); }
    .content-types-grid { grid-template-columns: 1fr; }
    .all-features-grid { grid-template-columns: 1fr; }
}
