/* Home Page Styles - Modern Redesign */
:root {
    /* Use global brand colors from theme.css */
    --home-primary-color: var(--brand-primary, #2563eb);
    --home-primary-dark: var(--brand-primary-dark, #1e40af);
    --home-primary-light: var(--brand-primary-light, #3b82f6);
    --home-secondary-color: var(--brand-success, #059669);
    --home-accent-color: var(--brand-accent, #ea580c);
    --home-danger-color: var(--brand-danger, #dc2626);
    
    --home-gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --home-gradient-success: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --home-gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --home-gradient-hero-animated: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 60%, #667eea 100%);
    --home-gradient-subtle: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 50%, rgba(240, 147, 251, 0.15) 100%);
    --home-gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --home-shadow-sm: 0 2px 8px rgba(102, 126, 234, 0.15);
    --home-shadow-md: 0 8px 24px rgba(102, 126, 234, 0.2);
    --home-shadow-lg: 0 16px 48px rgba(102, 126, 234, 0.25);
    --home-shadow-xl: 0 24px 64px rgba(102, 126, 234, 0.3);
    --home-shadow-glow: 0 0 40px rgba(102, 126, 234, 0.4);
    
    /* Use global radius */
    --home-radius-sm: var(--radius-sm);
    --home-radius-md: var(--radius-md);
    --home-radius-lg: var(--radius-lg);
    --home-radius-xl: var(--radius-xl);
    
    /* Transitions */
    --home-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --home-transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --home-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --home-transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Animation durations */
    --home-anim-duration-fast: 0.3s;
    --home-anim-duration-normal: 0.6s;
    --home-anim-duration-slow: 1s;
}

/* Global Animation Keyframes */
@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 float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

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

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

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Scroll animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

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

/* Container Classes - Bootstrap container equivalent */
.hero-section-container,
.hero-logged-in-container,
.dashboard-summary-container,
.problems-section-container,
.features-section-container,
.cta-marketing-container {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x, 0.75rem) * 0.5);
    padding-left: calc(var(--bs-gutter-x, 0.75rem) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .hero-section-container,
    .hero-logged-in-container,
    .dashboard-summary-container,
    .problems-section-container,
    .features-section-container,
    .cta-marketing-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .hero-section-container,
    .hero-logged-in-container,
    .dashboard-summary-container,
    .problems-section-container,
    .features-section-container,
    .cta-marketing-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .hero-section-container,
    .hero-logged-in-container,
    .dashboard-summary-container,
    .problems-section-container,
    .features-section-container,
    .cta-marketing-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .hero-section-container,
    .hero-logged-in-container,
    .dashboard-summary-container,
    .problems-section-container,
    .features-section-container,
    .cta-marketing-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .hero-section-container,
    .hero-logged-in-container,
    .dashboard-summary-container,
    .problems-section-container,
    .features-section-container,
    .cta-marketing-container {
        max-width: 1320px;
    }
}

/* Container Fluid Wrapper Classes - Bootstrap container-fluid equivalent */
.dashboard-summary-section-wrapper,
.use-cases-section-wrapper,
.how-it-works-section-wrapper,
.comparison-section-wrapper,
.faq-section-wrapper,
.packages-section-wrapper {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x, 0.75rem) * 0.5);
    padding-left: calc(var(--bs-gutter-x, 0.75rem) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

/* Container Fluid Inner Container Classes */
.use-cases-section-container,
.how-it-works-section-container,
.comparison-section-container,
.faq-section-container {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x, 0.75rem) * 0.5);
    padding-left: calc(var(--bs-gutter-x, 0.75rem) * 0.5);
    margin-right: auto;
    margin-left: auto;
}


/* ============================================
   Hero Section - MODERN REDESIGN 🚀
   ============================================ */
.hero-marketing-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
    padding: 140px 0 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    animation: gradientShift 15s ease infinite;
    will-change: background-position;
}

.hero-marketing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

/* Geometric pattern overlay */
.hero-marketing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px);
    pointer-events: none;
    opacity: 0.5;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all var(--home-transition-normal);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.6s ease 0.1s backwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    max-width: 700px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.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: 12px;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    padding: 8px 0;
}

.highlight-item i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.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;
}

.trust-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--home-transition-normal);
    will-change: transform;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* 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-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Hero Visual - Floating Cards */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s backwards;
    padding-left: 40px;
    z-index: 2;
}

.hero-visual-placeholder {
    position: relative;
}

/* Static Feature Cards for Hero Visual - Floating Animation */
.feature-cards-static {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.feature-card-static {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5);
    padding: 32px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: left;
    height: 100%;
    transition: all var(--home-transition-normal);
    will-change: transform, box-shadow;
    position: relative;
    overflow: hidden;
}

.feature-card-static::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.feature-card-static:hover::before {
    left: 100%;
}

.feature-card-static:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.6);
    transform: translateY(-8px) scale(1.02);
}

/* Floating animations for cards */
.feature-card-static:nth-child(1) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0s;
}

.feature-card-static:nth-child(2) {
    animation: floatReverse 6s ease-in-out infinite;
    animation-delay: 1s;
}

.feature-card-static:nth-child(3) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.feature-card-static .card-icon {
    width: 64px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    background: var(--home-gradient-primary);
    background-size: 200% 200%;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    margin-bottom: 20px;
    transition: all var(--home-transition-normal);
    animation: gradientShift 3s ease infinite;
    will-change: transform, box-shadow;
}

.feature-card-static:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

.feature-card-static:nth-child(1) .card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-card-static:nth-child(2) .card-icon {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.feature-card-static:nth-child(3) .card-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-card-static .card-content {
    display: block;
    width: 100%;
}

.feature-card-static .card-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-card-static .card-content p {
    font-size: 0.9375rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.7;
}

.card-content h5 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
    color: var(--brand-neutral-900);
    margin-bottom: 4px;
}

.card-content p {
    font-size: var(--text-sm);
    color: var(--brand-neutral-600);
    margin: 0;
}



/* ============================================
   Mobile Optimizations
   ============================================ */
@media (max-width: 991px) {
    .hero-marketing-section {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero-visual {
        margin-top: 60px;
        padding-left: 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-trust-row {
        justify-content: center;
        gap: 20px;
    }
    
    .trust-item {
        padding: 16px 20px;
        flex: 1;
        min-width: 120px;
    }
    
    .feature-cards-static {
        gap: 20px;
    }
    
    .feature-card-static {
        padding: 24px;
    }
    
    .callout-content {
        padding: 60px 40px;
    }
    
    .callout-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    /* Features section mobile */
    .features-section {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 32px 24px;
        margin-bottom: 24px;
    }
    
    /* Problems section mobile */
    .problems-section {
        padding: 60px 0;
    }
    
    .problem-card {
        padding: 32px 24px;
        margin-bottom: 24px;
    }
    
    /* How It Works mobile */
    .how-it-works-section-wrapper {
        padding: 60px 0;
    }
    
    .how-it-works-card {
        padding: 32px 24px;
        margin-bottom: 40px;
    }
    
    .how-it-works-card::before {
        top: -30px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        line-height: 50px;
    }
    
    /* Use cases mobile */
    .use-cases-section-wrapper {
        padding: 60px 0;
    }
    
    .use-case-card {
        padding: 32px 24px;
        margin-bottom: 24px;
    }
    
    /* Comparison section mobile */
    .comparison-section-wrapper {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .hero-trust-row {
        gap: 12px;
        flex-direction: column;
    }
    
    .trust-item {
        width: 100%;
        padding: 16px;
    }
    
    .trust-number {
        font-size: 1.75rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
    
    /* Hero section small mobile */
    .hero-marketing-section {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 24px;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin-bottom: 32px;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    /* Feature cards small mobile */
    .feature-card-static {
        padding: 20px;
    }
    
    .feature-card-static .card-icon {
        width: 56px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    /* Cards small mobile */
    .feature-card,
    .problem-card,
    .how-it-works-card,
    .use-case-card {
        padding: 24px 20px;
    }
    
    .feature-icon,
    .problem-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }
    
    /* CTA small mobile */
    .callout-content {
        padding: 48px 24px;
    }
    
    .callout-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 16px;
    }
    
    .callout-text {
        font-size: clamp(1rem, 3vw, 1.25rem);
        margin-bottom: 32px;
    }
    
    /* Sections small mobile */
    .features-section,
    .problems-section,
    .how-it-works-section-wrapper,
    .use-cases-section-wrapper,
    .comparison-section-wrapper,
    .cta-marketing-section {
        padding: 50px 0;
    }
}

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

.welcome-content {
    animation: fadeInUp 0.6s ease;
    max-width: 900px;
}

.welcome-greeting h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-logged-in-section .hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: #4a5568;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 32px;
}

.quick-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-logged-in-section .btn-primary-modern,
.hero-logged-in-section .btn-outline-primary-modern {
    color: white;
    background: var(--home-gradient-primary);
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
}

.hero-logged-in-section .btn-outline-primary-modern {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.hero-logged-in-section .btn-outline-primary-modern:hover {
    background: #667eea;
    color: white;
}


/* ============================================
   Tip Card with Image Support
   ============================================ */
.hero-tip-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    display: none;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all var(--home-transition-normal);
    position: relative;
}

.hero-tip-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Tip Image */
.tip-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 2px solid var(--brand-primary-light);
    display: none;
}

/* Tip Icon (fallback) */
.tip-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--home-gradient-primary);
    border-radius: var(--radius-md);
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.tip-content {
    flex: 1;
    padding-right: 60px; /* Space for badge */
}

.tip-content strong {
    display: block;
    color: #667eea;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.tip-content p {
    font-size: 0.9375rem;
    color: #1a202c;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Different styling for data-driven vs generic */
.hero-tip-card[data-tip-type="data_driven"] {
    border-color: var(--brand-accent);
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.1) 0%, var(--brand-primary-50) 100%);
}

.hero-tip-card[data-tip-type="generic"] {
    border-color: var(--brand-primary-light);
}

/* ============================================
   Dashboard Summary Section
   ============================================ */
.dashboard-summary-section-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
    position: relative;
}

.dashboard-card {
    background: white;
    border-radius: var(--home-radius-lg);
    box-shadow: var(--home-shadow-lg);
    padding: 30px;
    transition: all var(--home-transition-normal);
    will-change: transform, box-shadow;
    height: 100%;
    border: 2px solid transparent;
}

.dashboard-card:hover {
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateY(-4px);
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-title i {
    color: var(--home-primary-color);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section-wrapper {
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.faq-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

#faqAccordion .accordion-item {
    background: white;
    border: 2px solid transparent;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all var(--home-transition-normal);
}

#faqAccordion .accordion-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.2);
}

#faqAccordion .accordion-button {
    background: white;
    border: none;
    padding: 24px;
    font-weight: 600;
    color: var(--brand-neutral-900);
    font-size: var(--text-lg);
    transition: all var(--home-transition-fast);
}

#faqAccordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    color: var(--home-primary-color);
    box-shadow: none;
}

#faqAccordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

#faqAccordion .accordion-body {
    padding: 24px;
    color: var(--brand-neutral-700);
    line-height: var(--leading-relaxed);
}

/* ============================================
   Problems Section - Enhanced Visual Flow
   ============================================ */
.problems-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 12s ease-in-out infinite;
}

.problem-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all var(--home-transition-normal);
    will-change: transform, box-shadow;
    transform: translateZ(0); /* GPU acceleration */
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--home-gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--home-transition-normal);
    border-radius: 24px 24px 0 0;
}

.problem-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.problem-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-8px);
}

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

.problem-card:hover::after {
    width: 300px;
    height: 300px;
}

.problem-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    transition: all var(--home-transition-bounce);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.problem-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: left 0.6s;
    left: -100%;
}

.problem-card:hover .problem-icon {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    transform: scale(1.15) rotate(-5deg);
}

.problem-card:hover .problem-icon::before {
    left: 100%;
}

.icon-red { background: linear-gradient(135deg, var(--brand-danger), #b91c1c); }
.icon-orange { background: linear-gradient(135deg, var(--brand-accent), #c2410c); }
.icon-purple { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.icon-blue { background: var(--home-gradient-primary); }
.icon-green { background: var(--home-gradient-success); }
.icon-yellow { background: linear-gradient(135deg, #fbbf24, var(--brand-accent)); }

.problem-title {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    color: var(--brand-neutral-900);
    margin-bottom: 16px;
    line-height: var(--leading-tight);
}

.problem-description {
    font-size: var(--text-base);
    color: var(--brand-neutral-700);
    line-height: var(--leading-relaxed);
    margin-bottom: 20px;
}

/* ============================================
   How It Works Section - Timeline Visualization
   ============================================ */
.how-it-works-section-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

#how-it-works-list {
    position: relative;
    padding: 40px 0;
}

/* Timeline connecting line */
#how-it-works-list::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--home-gradient-primary) 0%, 
        var(--home-gradient-success) 50%, 
        var(--home-gradient-accent) 100%);
    transform: translateY(-50%);
    border-radius: 2px;
    z-index: 0;
    opacity: 0.3;
}

@media (max-width: 991px) {
    #how-it-works-list::before {
        display: none;
    }
}

.how-it-works-card {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all var(--home-transition-normal);
    will-change: transform, box-shadow;
    height: 100%;
    transform: translateZ(0); /* GPU acceleration */
}

.how-it-works-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--home-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    z-index: 2;
    transition: all var(--home-transition-bounce);
}

/* Fix: Use parent col-md-4 nth-child selector since cards are inside col-md-4 divs */
#how-it-works-list > .col-md-4:nth-child(1) .how-it-works-card::before {
    content: '1';
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 60px;
    text-align: center;
}

#how-it-works-list > .col-md-4:nth-child(2) .how-it-works-card::before {
    content: '2';
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 60px;
    text-align: center;
    background: var(--home-gradient-success);
    box-shadow: 0 8px 24px rgba(17, 153, 142, 0.3);
}

#how-it-works-list > .col-md-4:nth-child(3) .how-it-works-card::before {
    content: '3';
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 60px;
    text-align: center;
    background: var(--home-gradient-accent);
    box-shadow: 0 8px 24px rgba(240, 147, 251, 0.3);
}

.how-it-works-card:hover {
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-8px);
}

.how-it-works-card:hover::before {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

.how-it-works-card .card-body {
    padding: 0;
}

.how-it-works-card .card-title {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    color: var(--brand-neutral-900);
    margin-bottom: 16px;
    margin-top: 20px;
}

.how-it-works-card .card-text {
    font-size: var(--text-base);
    color: var(--brand-neutral-700);
    line-height: var(--leading-relaxed);
}

/* Use Cases Section */
.use-cases-section-wrapper {
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.use-case-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all var(--home-transition-normal);
    height: 100%;
    will-change: transform, box-shadow;
}

.use-case-card:hover {
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateY(-6px);
}

/* ============================================
   CTA Section - Enhanced with Animations
   ============================================ */
.cta-marketing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.cta-marketing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(17, 153, 142, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 10s ease-in-out infinite;
}

.cta-marketing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(17, 153, 142, 0.03) 40px, rgba(17, 153, 142, 0.03) 80px);
    pointer-events: none;
}

.callout-content {
    background: var(--home-gradient-success);
    background-size: 200% 200%;
    border-radius: 32px;
    padding: 100px 80px;
    color: white;
    box-shadow: 0 32px 100px rgba(17, 153, 142, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: gradientShift 8s ease infinite;
    will-change: background-position;
}

.callout-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
}

.callout-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.callout-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--font-weight-extrabold);
    color: white;
    margin-bottom: 24px;
    line-height: var(--leading-tight);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.callout-text {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255,255,255,0.95);
    line-height: var(--leading-relaxed);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

#cta-button {
    position: relative;
    z-index: 1;
    transition: all var(--home-transition-bounce);
    will-change: transform, box-shadow;
}

#cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Features Section - Modern with 3D Effects
   ============================================ */
.features-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 10s ease-in-out infinite;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: block;
    transition: all var(--home-transition-normal);
    will-change: transform, box-shadow;
    transform-style: preserve-3d;
    perspective: 1000px;
    transform: translateZ(0); /* GPU acceleration */
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--home-gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--home-transition-normal);
    border-radius: 24px 24px 0 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--home-transition-normal);
    pointer-events: none;
}

.feature-card:hover {
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-12px) rotateX(2deg);
}

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

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    transition: all var(--home-transition-bounce);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: left 0.5s;
    left: -100%;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon::before {
    left: 100%;
}

.icon-gradient-1 { 
    background: var(--home-gradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}
.icon-gradient-2 { 
    background: var(--home-gradient-success);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite 0.5s;
}
.icon-gradient-3 { 
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-light));
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite 1s;
}

.feature-title {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    color: var(--brand-neutral-900);
    margin-bottom: 16px;
    line-height: var(--leading-tight);
}

.feature-description {
    font-size: var(--text-base);
    color: var(--brand-neutral-700);
    line-height: var(--leading-relaxed);
    margin-bottom: 20px;
}


.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 Section - Modern Card-Based
   ============================================ */
.comparison-section-wrapper {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 100px 0;
    position: relative;
}

.comparison-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Modern Comparison Table */
.comparison-table-merged {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.comparison-table-merged table {
    margin: 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

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

.comparison-table-merged th {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-align: center;
    border-bottom: 2px solid #e5e7eb;
    color: #374151;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    transition: all var(--home-transition-normal);
}

.comparison-table-merged th:first-child {
    text-align: left;
    font-weight: 800;
    color: #1a202c;
}

.our-column-header {
    background: var(--home-gradient-primary) !important;
    color: white !important;
    position: relative;
    overflow: hidden;
}

.our-column-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.our-column-header:hover::before {
    left: 100%;
}

.comparison-table-merged td {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9375rem;
    color: #4a5568;
    transition: all var(--home-transition-fast);
}

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

.comparison-table-merged tbody tr {
    transition: all var(--home-transition-fast);
}

.comparison-table-merged tbody tr:hover {
    background: rgba(102, 126, 234, 0.03);
    transform: scale(1.01);
}

.our-cell {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(102, 126, 234, 0.05) 100%);
    color: #667eea;
    font-weight: 700;
    position: relative;
}

.our-cell::before {
    content: '✓';
    position: absolute;
    left: 8px;
    font-size: 1.2rem;
    opacity: 0.6;
}

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

/* Mobile Accordion Version */
@media (max-width: 991px) {
    .comparison-table-merged {
        display: none;
    }
    
    .comparison-accordion {
        display: block;
    }
}

.comparison-accordion {
    display: none;
}

@media (max-width: 991px) {
    .comparison-accordion {
        display: block;
    }
    
    .comparison-accordion-item {
        background: white;
        border-radius: 16px;
        margin-bottom: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: all var(--home-transition-normal);
    }
    
    .comparison-accordion-item:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }
    
    .comparison-accordion-header {
        padding: 20px;
        background: var(--home-gradient-primary);
        color: white;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .comparison-accordion-content {
        padding: 20px;
        display: none;
    }
    
    .comparison-accordion-item.active .comparison-accordion-content {
        display: block;
    }
}

/* ============================================
   Button Styles
   ============================================ */
/* Modern Primary Button */
.btn-primary-modern,
.hero-cta-group .btn-primary {
    background: white;
    color: #667eea;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    transition: all var(--home-transition-bounce);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary-modern::before,
.hero-cta-group .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary-modern:hover::before,
.hero-cta-group .btn-primary:hover::before {
    left: 100%;
}

.btn-primary-modern:hover,
.hero-cta-group .btn-primary:hover {
    background: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: #667eea;
}

/* Modern Outline Button - GLASSMORPHISM! */
.btn-outline-primary-modern,
.hero-cta-group .btn-outline-primary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all var(--home-transition-bounce);
    letter-spacing: 0.02em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary-modern:hover,
.hero-cta-group .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   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,
    [class*="-section"] {
        padding: 60px 0;
    }
    
    /* Disable complex animations on mobile for performance */
    .feature-card-static {
        animation: none;
    }
    
    .feature-card-static:hover {
        transform: translateY(-4px);
    }
    
    /* Simplify hover effects on mobile */
    .feature-card:hover,
    .problem-card:hover,
    .how-it-works-card:hover {
        transform: translateY(-4px);
    }
    
    /* Reduce shadow complexity on mobile */
    .feature-card,
    .problem-card,
    .how-it-works-card,
    .use-case-card {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 576px) {
    
    .btn-primary-modern,
    .btn-outline-primary-modern,
    .hero-cta-group .btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .problem-card,
    .feature-card {
        padding: 32px 24px;
    }
    
    .callout-content {
        padding: 48px 24px;
    }
}

/* Dark Mode Support */

.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 .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 .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 .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-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);
}

