/**
 * Home Page Styles - PickAMeet
 * 
 * Modern, animated, and beautiful homepage design
 * Optimized for both desktop and mobile experiences
 */

/* ============================================
   Global Styles & Variables
   ============================================ */
:root {
    --home-primary-color: #4f46e5;
    --home-primary-dark: #4338ca;
    --home-primary-light: #6366f1;
    --home-secondary-color: #10b981;
    --home-accent-color: #f59e0b;
    --home-danger-color: #ef4444;
    
    --home-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --home-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --home-gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --home-gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --home-gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --home-gradient-6: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    
    --home-shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --home-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --home-shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --home-shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    
    --home-radius-sm: 8px;
    --home-radius-md: 12px;
    --home-radius-lg: 16px;
    --home-radius-xl: 24px;
    
    --home-transition-fast: 0.2s ease;
    --home-transition-normal: 0.3s ease;
    --home-transition-slow: 0.5s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.min-vh-80 {
    min-height: 80vh;
}

/* Section Spacing */
section,
[class*="-section"]:not(.mc-sidebar-section):not(.mc-sidebar-nav):not(.mc-sidebar-header) {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section,
    [class*="-section"]:not(.mc-sidebar-section):not(.mc-sidebar-nav):not(.mc-sidebar-header) {
        padding: 60px 0;
    }
}

/* ============================================
   Section Headers (Reusable)
   ============================================ */
.section-header {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--home-primary-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1f2937;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

/* ============================================
   Hero Section - Marketing
   ============================================ */
.hero-marketing-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-marketing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(79, 70, 229, 0.1);
    border: 2px solid rgba(79, 70, 229, 0.2);
    border-radius: 50px;
    color: var(--home-primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    color: #1f2937;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-subtitle {
    color: #4b5563;
    font-size: 1.25rem;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #374151;
}

.highlight-item i {
    font-size: 1.25rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    animation: fadeInUp 0.6s ease 0.4s backwards;
    justify-content: flex-start;
}

/* Center buttons on medium screens */
@media (max-width: 991px) and (min-width: 768px) {
    .hero-cta-group {
        justify-content: center;
    }
}

.hero-trust-row {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    animation: fadeInUp 0.6s ease 0.5s backwards;
    flex-wrap: wrap;
}

/* Ensure all stats visible on mid-size screens */
@media (max-width: 991px) and (min-width: 768px) {
    .hero-trust-row {
        gap: 30px;
        justify-content: center;
    }
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--home-primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.trust-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s backwards;
}

.feature-cards-stack {
    position: relative;
    height: 500px;
}

.feature-card {
    position: absolute;
    background: white;
    border-radius: var(--home-radius-lg);
    box-shadow: var(--home-shadow-lg);
    padding: 30px;
    display: flex;
    gap: 20px;
    max-width: 350px;
    transition: all var(--home-transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--home-shadow-xl);
}

.feature-card.card-1 {
    top: 0;
    left: 0;
    animation: floatCard 6s ease-in-out infinite;
}

.feature-card.card-2 {
    top: 150px;
    right: 0;
    animation: floatCard 6s ease-in-out infinite 2s;
}

.feature-card.card-3 {
    bottom: 0;
    left: 50px;
    animation: floatCard 6s ease-in-out infinite 4s;
}

/* Static Feature Cards (No Animation) */
.feature-cards-static {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card-static {
    background: white;
    border-radius: var(--home-radius-lg);
    box-shadow: var(--home-shadow-md);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all var(--home-transition-normal);
}

.feature-card-static:hover {
    transform: translateY(-3px);
    box-shadow: var(--home-shadow-lg);
}

.card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--home-gradient-1);
    border-radius: var(--home-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.card-content h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.card-content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--home-shadow-md);
    font-size: 1.5rem;
    color: var(--home-primary-color);
}

.floating-element.element-1 {
    top: 50px;
    right: 50px;
    animation: float 5s ease-in-out infinite;
}

.floating-element.element-2 {
    bottom: 100px;
    right: 100px;
    animation: float 5s ease-in-out infinite 1.5s;
}

.floating-element.element-3 {
    top: 200px;
    left: -30px;
    animation: float 5s ease-in-out infinite 3s;
}

/* Scroll Indicator - Static with Smooth Wiggle */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: fadeInUp 0.6s ease 1s backwards, gentleWiggle 3s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #4b5563;
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #4b5563;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4b5563;
    margin: 0;
}

/* Gentle wiggle animation - works in all browsers */
@keyframes gentleWiggle {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    25% {
        transform: translateX(-50%) translateY(-3px);
    }
    75% {
        transform: translateX(-50%) translateY(3px);
    }
}

@keyframes scrollBounce {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Hide scroll indicator on medium screens where it looks odd */
@media (max-width: 991px) and (min-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-visual {
        margin-top: 50px;
    }
    
    .feature-cards-stack {
        height: 400px;
    }
    
    .feature-card {
        max-width: 300px;
        padding: 20px;
    }
    
    .feature-cards-static {
        gap: 15px;
    }
    
    .feature-card-static {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-trust-row {
        gap: 20px;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
}

/* ============================================
   Hero Section - Logged In
   ============================================ */
.hero-logged-in-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    padding: 60px 0;
}

.welcome-content {
    animation: fadeInUp 0.6s ease;
}

.welcome-greeting h1 {
    color: #1f2937;
}

.quick-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.quick-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--home-transition-fast);
}

.quick-link:hover {
    color: var(--home-primary-color);
    transform: translateX(3px);
}

/* Stats Dashboard */
.stats-dashboard {
    animation: fadeInRight 0.6s ease 0.2s backwards;
}

.dashboard-card {
    background: white;
    border-radius: var(--home-radius-lg);
    box-shadow: var(--home-shadow-lg);
    padding: 30px;
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--home-gradient-1);
    border-radius: var(--home-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-icon i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 2px;
}

.upgrade-cta {
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.btn-gradient {
    background: var(--home-gradient-1);
    color: white !important;
    border: none;
    transition: all var(--home-transition-normal);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--home-shadow-lg);
}

@media (max-width: 991px) {
    .stats-dashboard {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions-row {
        flex-direction: column;
    }
    
    .quick-actions-row .btn {
        width: 100%;
    }
}

/* ============================================
   Problems Section
   ============================================ */
.problems-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 80px 0;
}

.problem-card {
    background: white;
    border-radius: var(--home-radius-lg);
    padding: 30px;
    height: 100%;
    box-shadow: var(--home-shadow-sm);
    transition: all var(--home-transition-normal);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f59e0b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--home-transition-normal);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--home-shadow-lg);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--home-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.icon-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.icon-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.icon-purple { background: linear-gradient(135deg, #a855f7, #9333ea); }
.icon-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.icon-green { background: linear-gradient(135deg, #10b981, #059669); }
.icon-yellow { background: linear-gradient(135deg, #fbbf24, #f59e0b); }

.problem-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.problem-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.problem-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Solution Callout */
.solution-callout {
    margin-top: 60px;
}

.callout-content {
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: var(--home-radius-xl);
    padding: 50px 30px;
    color: white;
    box-shadow: var(--home-shadow-lg);
}

.callout-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.callout-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
}

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

.feature-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: var(--home-radius-lg);
    padding: 30px;
    height: 100%;
    transition: all var(--home-transition-normal);
    position: relative;
}

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

.feature-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--home-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.icon-gradient-1 { background: var(--home-gradient-1); }
.icon-gradient-2 { background: var(--home-gradient-2); }
.icon-gradient-3 { background: var(--home-gradient-3); }
.icon-gradient-4 { background: var(--home-gradient-4); }
.icon-gradient-5 { background: var(--home-gradient-5); }
.icon-gradient-6 { background: var(--home-gradient-6); }

.feature-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-stats {
    margin-top: auto;
}

.stat-highlight {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Comparison Highlight */
.comparison-highlight {
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    border-radius: var(--home-radius-xl);
    padding: 50px;
    margin-top: 60px;
    box-shadow: var(--home-shadow-md);
}

.comparison-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
}

.comparison-text {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.7;
}

.comparison-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
}

.point-item i {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 1.125rem;
}

.comparison-visual {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.vs-card {
    flex: 1;
    background: white;
    border-radius: var(--home-radius-lg);
    overflow: hidden;
    box-shadow: var(--home-shadow-md);
}

.vs-card .card-header {
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.125rem;
}

.our-card .card-header {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.competitors-card .card-header {
    background: #f3f4f6;
    color: #6b7280;
}

.vs-card .card-body {
    padding: 20px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-item,
.cross-item {
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.check-item:last-child,
.cross-item:last-child {
    border-bottom: none;
}

.check-item {
    color: #10b981;
    font-weight: 600;
}

.cross-item {
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.6;
}

/* Merged Comparison Table */
.comparison-table-merged {
    background: white;
    border-radius: var(--home-radius-lg);
    overflow: hidden;
    box-shadow: var(--home-shadow-md);
}

.comparison-table-merged table {
    margin: 0;
    width: 100%;
}

.comparison-table-merged thead {
    background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
}

.comparison-table-merged th {
    padding: 15px 20px;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid #e5e7eb;
}

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

.our-column-header {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
}

.comparison-table-merged td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
}

.comparison-table-merged td:first-child {
    text-align: left;
    font-weight: 600;
    color: #374151;
}

.our-cell {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-weight: 600;
}

.comparison-table-merged tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 991px) {
    .comparison-highlight {
        padding: 30px;
    }
    
    .comparison-visual {
        flex-direction: column;
        margin-top: 30px;
    }
    
    .vs-card {
        width: 100%;
    }
    
    .comparison-table-merged {
        overflow-x: auto;
    }
    
    .comparison-table-merged table {
        min-width: 500px;
    }
}

/* ============================================
   Button Styles
   ============================================ */
.btn-hover-lift {
    transition: all var(--home-transition-normal);
    position: relative;
}

.btn-hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: var(--home-shadow-lg);
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(79, 70, 229, 0);
    }
}

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

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

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

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

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease;
}

.card-animate {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.animation-delay-1 { animation-delay: 0.1s; }
.animation-delay-2 { animation-delay: 0.2s; }
.animation-delay-3 { animation-delay: 0.3s; }
.animation-delay-4 { animation-delay: 0.4s; }
.animation-delay-5 { animation-delay: 0.5s; }

/* ============================================
   Responsive Utilities
   ============================================ */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-marketing-section {
        padding: 80px 0 60px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    section,
    [class*="-section"] {
        padding: 60px 0;
    }
    
    .comparison-highlight {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
}

/* ============================================
   Dark Mode Support
   ============================================ */
.dark-mode .section-title,
[data-theme="dark"] .section-title {
    color: var(--theme-text-primary, #ffffff);
}

.dark-mode .section-description,
[data-theme="dark"] .section-description {
    color: var(--theme-text-secondary, #adb5bd);
}

.dark-mode .hero-marketing-section,
[data-theme="dark"] .hero-marketing-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
}

.dark-mode .hero-title,
[data-theme="dark"] .hero-title {
    color: var(--theme-text-primary, #ffffff);
}

.dark-mode .hero-subtitle,
[data-theme="dark"] .hero-subtitle {
    color: var(--theme-text-secondary, #adb5bd);
}

.dark-mode .highlight-item,
[data-theme="dark"] .highlight-item {
    color: var(--theme-text-primary, #ffffff);
}

.dark-mode .trust-label,
[data-theme="dark"] .trust-label {
    color: var(--theme-text-secondary, #adb5bd);
}

.dark-mode .feature-card,
.dark-mode .feature-card-static,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .feature-card-static {
    background: var(--theme-bg-secondary, #343a40);
    border-color: var(--theme-border-color, #495057);
}

.dark-mode .card-content h5,
[data-theme="dark"] .card-content h5 {
    color: var(--theme-text-primary, #ffffff);
}

.dark-mode .card-content p,
[data-theme="dark"] .card-content p {
    color: var(--theme-text-secondary, #adb5bd);
}

.dark-mode .floating-element,
[data-theme="dark"] .floating-element {
    background: var(--theme-bg-secondary, #343a40);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dark-mode .scroll-mouse,
[data-theme="dark"] .scroll-mouse {
    border-color: var(--theme-text-secondary, #adb5bd);
}

.dark-mode .scroll-wheel,
[data-theme="dark"] .scroll-wheel {
    background: var(--theme-text-secondary, #adb5bd);
}

.dark-mode .scroll-indicator p,
[data-theme="dark"] .scroll-indicator p {
    color: var(--theme-text-secondary, #adb5bd);
}

.dark-mode .hero-logged-in-section,
[data-theme="dark"] .hero-logged-in-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.dark-mode .welcome-greeting h1,
[data-theme="dark"] .welcome-greeting h1 {
    color: var(--theme-text-primary, #ffffff);
}

.dark-mode .quick-link,
[data-theme="dark"] .quick-link {
    color: var(--theme-text-secondary, #adb5bd);
}

.dark-mode .dashboard-card,
[data-theme="dark"] .dashboard-card {
    background: var(--theme-bg-secondary, #343a40);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dark-mode .dashboard-title,
.dark-mode .stat-value,
[data-theme="dark"] .dashboard-title,
[data-theme="dark"] .stat-value {
    color: var(--theme-text-primary, #ffffff);
}

.dark-mode .stat-label,
[data-theme="dark"] .stat-label {
    color: var(--theme-text-secondary, #adb5bd);
}

.dark-mode .upgrade-cta,
[data-theme="dark"] .upgrade-cta {
    border-top-color: var(--theme-border-color, #495057);
}

.dark-mode .problems-section,
[data-theme="dark"] .problems-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.dark-mode .problem-card,
[data-theme="dark"] .problem-card {
    background: var(--theme-bg-secondary, #343a40);
    border-color: var(--theme-border-color, #495057);
}

.dark-mode .problem-title,
[data-theme="dark"] .problem-title {
    color: var(--theme-text-primary, #ffffff);
}

.dark-mode .problem-description,
[data-theme="dark"] .problem-description {
    color: var(--theme-text-secondary, #adb5bd);
}

.dark-mode .features-section,
[data-theme="dark"] .features-section {
    background: var(--theme-bg-primary, #212529);
}

.dark-mode .feature-card,
[data-theme="dark"] .feature-card {
    background: var(--theme-bg-secondary, #343a40);
    border-color: var(--theme-border-color, #495057);
}

.dark-mode .feature-title,
[data-theme="dark"] .feature-title {
    color: var(--theme-text-primary, #ffffff);
}

.dark-mode .feature-description,
[data-theme="dark"] .feature-description {
    color: var(--theme-text-secondary, #adb5bd);
}

.dark-mode .comparison-highlight,
[data-theme="dark"] .comparison-highlight {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.dark-mode .comparison-title,
[data-theme="dark"] .comparison-title {
    color: var(--theme-text-primary, #ffffff);
}

.dark-mode .comparison-text,
[data-theme="dark"] .comparison-text {
    color: var(--theme-text-secondary, #adb5bd);
}

.dark-mode .point-item,
[data-theme="dark"] .point-item {
    color: var(--theme-text-primary, #ffffff);
}

.dark-mode .vs-card,
[data-theme="dark"] .vs-card {
    background: var(--theme-bg-secondary, #343a40);
}

.dark-mode .competitors-card .card-header,
[data-theme="dark"] .competitors-card .card-header {
    background: var(--theme-bg-tertiary, #495057);
    color: var(--theme-text-secondary, #adb5bd);
}

.dark-mode .comparison-table-merged,
[data-theme="dark"] .comparison-table-merged {
    background: var(--theme-bg-secondary, #343a40);
}

.dark-mode .comparison-table-merged thead,
[data-theme="dark"] .comparison-table-merged thead {
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
}

.dark-mode .comparison-table-merged th,
.dark-mode .comparison-table-merged td,
[data-theme="dark"] .comparison-table-merged th,
[data-theme="dark"] .comparison-table-merged td {
    border-bottom-color: var(--theme-border-color, #495057);
    color: var(--theme-text-primary, #ffffff);
}

.dark-mode .comparison-table-merged td:first-child,
[data-theme="dark"] .comparison-table-merged td:first-child {
    color: var(--theme-text-primary, #ffffff);
}

.dark-mode .check-item,
.dark-mode .cross-item,
[data-theme="dark"] .check-item,
[data-theme="dark"] .cross-item {
    border-bottom-color: var(--theme-border-color, #495057);
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .hero-marketing-section,
    .hero-logged-in-section {
        background: white !important;
    }
    
    .btn,
    .scroll-indicator,
    .floating-element {
        display: none !important;
    }
}
