/* General Icon Styles */
i.fas, i.fa {
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    font-family: "Font Awesome 6 Free" !important;
}

/* ================================================
LANDING PAGE STYLES - Unified Glassmorphism Design
================================================ */

/* Override body margins for true full width */
body, html {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden;
}

/* Override page-content constraints for landing page */
.page-content {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 72px !important;
    width: 100% !important;
}

Override navbar for landing page
.navbar {
    background: var(--bg) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Unified Glassmorphism Container */
.unified-glass-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    margin: 2rem;
    padding: 3rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 150px);
}

.unified-glass-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.08) 0%, 
        rgba(255, 255, 255, 0.05) 30%,
        rgba(74, 144, 226, 0.03) 70%,
        rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
    z-index: 0;
}

.unified-glass-container > * {
    position: relative;
    z-index: 1;
}

/* Hero Section - Clean Content */
.hero-section {
    background: transparent;
    padding: 0;
    margin-bottom: 4rem;
}

.hero-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    padding: 0;
}

.hero-text {
    max-width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.feature-item i {
    color: var(--accent) !important;
    font-size: 1.2rem;
    display: inline-block !important;
    margin-right: 0.5rem;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--hover));
    color: white;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-preview {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.preview-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.preview-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--warning), var(--accent));
    opacity: 0.6;
}

.preview-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.preview-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block !important;
    text-align: center;
    width: 100%;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.preview-card h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.preview-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Clean Content Sections */
.features-section,
.categories-section,
.future-section {
    padding: 0;
    background: transparent;
    margin-bottom: 4rem;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* Content Cards - Simple Containers */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.future-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.future-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.preview-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.preview-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    text-align: center;
}

.feature-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
}

.feature-card h3 {
    color: var(--text);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: none;
    padding: 0 1rem;
}

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

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: none;
    padding: 0 1rem;
}

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

.category-card i {
    font-size: 2.5rem;
    color: var(--accent) !important;
    margin-bottom: 1rem;
    display: block !important;
    text-align: center;
    width: 100%;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.category-card h3 {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.question-count {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--hover));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.category-card:hover .question-count {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Future Features */
.future-section {
    background: linear-gradient(135deg, var(--card), var(--glass));
}

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

.future-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Card Content Styling */
.category-card i,
.future-card i,
.feature-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.category-card h3,
.future-card h3,
.feature-card h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.future-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.status {
    display: inline-block;
    background: linear-gradient(135deg, var(--warning), #ffb74d);
    color: var(--text);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.future-card:hover .status {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* CTA Section */
.cta-section {
    background: transparent;
    padding: 0;
    text-align: center;
    margin-top: 4rem;
}

.cta-content {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .unified-glass-container {
        margin: 1.5rem;
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .unified-glass-container {
        margin: 1rem;
        padding: 1.5rem;
        border-radius: 25px;
        min-height: calc(100vh - 100px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-container {
        margin: 0;
        padding: 2rem 0.5rem;
    }
    
    .container {
        margin: 0;
        padding: 1.5rem 0.5rem;
    }
    
    .features-grid,
    .categories-grid,
    .future-grid {
        padding: 0 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .future-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .stats-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .preview-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .unified-glass-container {
        margin: 0.5rem;
        padding: 1rem;
        border-radius: 20px;
        min-height: calc(100vh - 80px);
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-container {
        margin: 0;
        padding: 1.5rem 0.25rem;
    }
    
    .container {
        margin: 0;
        padding: 1rem 0.25rem;
    }
    
    .features-grid,
    .categories-grid,
    .future-grid {
        padding: 0 0.25rem;
        gap: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .hero-features {
        gap: 0.8rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .preview-card {
        padding: 1rem;
    }
    
    .category-card {
        padding: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }

