/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --secondary-color: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #ffffff;
    padding-top: 120px; /* Add space for fixed header */
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

/* Pricing Hero Section */
.pricing-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pricing-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 4rem 0 2rem;
    }
    
    .pricing-hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-hero-subtitle {
        font-size: 1.125rem;
    }
}

/* ===== NEW LANDING PAGE STYLES ===== */

/* Header */
.header-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-new.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    min-height: 80px;
}

.logo-new a {
    text-decoration: none;
}

.logo-new h1 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3730a3 0%, #7c3aed 50%, #a855f7 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(120, 58, 237, 0.3);
    animation: logoGradientShift 3s ease-in-out infinite;
}

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

/* Logo Image Styling */
.logo-img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.nav-new {
    display: flex;
    align-items: center;
}

.nav-list-new {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link-new {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-new:hover {
    color: var(--primary-color);
}

.nav-link-new.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link-new.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link-new.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-primary-new {
    background: linear-gradient(135deg, var(--primary-color), #6d5dfc);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-new::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.5s ease;
}

.btn-primary-new:hover {
    background: linear-gradient(135deg, var(--primary-dark), #5b4bfc);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.btn-primary-new:hover::before {
    left: 100%;
}

.mobile-menu-toggle-new {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle-new span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-new {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, transparent 0%, rgba(79, 70, 229, 0.03) 50%, transparent 100%);
    pointer-events: none;
    animation: floatingGradients 25s ease-in-out infinite;
}

.hero-new::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: floatingOrb 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatingGradients {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(-30px, -20px) scale(1.1) rotate(90deg); }
    50% { transform: translate(20px, -10px) scale(0.9) rotate(180deg); }
    75% { transform: translate(30px, 20px) scale(1.05) rotate(270deg); }
}

@keyframes floatingOrb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-50px, -80px) scale(1.3); opacity: 0.9; }
}

.hero-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #0f172a 0%, #4f46e5 30%, #7c3aed 60%, #ec4899 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    animation: titleShimmer 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(79, 70, 229, 0.3);
}

.hero-title-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(79, 70, 229, 0.1) 50%, transparent 100%);
    border-radius: 20px;
    filter: blur(20px);
    opacity: 0.6;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleShimmer {
    0% { background-position: -300% center; }
    50% { background-position: 300% center; }
    100% { background-position: -300% center; }
}

@keyframes titleGlow {
    0% { transform: scale(0.9); opacity: 0.4; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

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

.hero-cta-new {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary-large-new {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6d5dfc 50%, #7c3aed 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 25px rgba(79, 70, 229, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary-large-new::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 ease;
}

.btn-primary-large-new:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #5b4bfc 50%, #6d28d9 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(79, 70, 229, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 50px rgba(124, 58, 237, 0.3);
}

.btn-primary-large-new:hover::before {
    left: 100%;
}

.btn-primary-large-new:active {
    transform: translateY(-1px);
}

.btn-icon-new {
    font-size: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

.btn-secondary-new {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-secondary-new:hover {
    background: rgba(79, 70, 229, 0.1);
}

/* Hero Illustration */
.hero-illustration-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}









.email-card-new::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Flashy Savings Chart */
.savings-chart-new {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 
        0 0 30px rgba(79, 70, 229, 0.2),
        0 0 60px rgba(124, 58, 237, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.savings-chart-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.1), transparent);
    animation: flashSweep 3s infinite;
}

@keyframes flashSweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.savings-chart-new:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 0 40px rgba(79, 70, 229, 0.4),
        0 0 80px rgba(124, 58, 237, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.chart-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
    z-index: 1;
    position: relative;
}

.chart-title-new {
    font-size: 1.125rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #4f46e5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.025em;
    text-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
}

.chart-savings-new {
    font-size: 1rem;
    font-weight: 800;
    color: #4f46e5;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(124, 58, 237, 0.3) 100%);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(79, 70, 229, 0.5);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { 
        box-shadow: 0 0 20px rgba(79, 70, 229, 0.2);
        border-color: rgba(79, 70, 229, 0.5);
    }
    to { 
        box-shadow: 0 0 30px rgba(79, 70, 229, 0.4);
        border-color: rgba(79, 70, 229, 0.8);
    }
}

.chart-container-new {
    position: relative;
    height: 160px;
    margin-bottom: 1rem;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.03) 50%, transparent 50%, transparent 75%, rgba(255, 255, 255, 0.03) 75%, transparent 75%),
        linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.02) 50%, transparent 50%, transparent 75%, rgba(255, 255, 255, 0.02) 75%, transparent 75%);
}

.chart-y-axis-new {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 0.5rem;
}

.y-label-new {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(79, 70, 229, 0.8);
    background: rgba(79, 70, 229, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    border: 1px solid rgba(79, 70, 229, 0.4);
}

.chart-area-new {
    position: absolute;
    left: 50px;
    right: 0;
    top: 0;
    bottom: 15px;
    overflow: hidden;
}

.cost-line-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.6) 0%, 
        rgba(245, 158, 11, 0.5) 50%, 
        rgba(79, 70, 229, 0.6) 100%);
    clip-path: polygon(
        0% 15%, 
        33% 25%, 
        66% 45%, 
        100% 75%, 
        100% 100%, 
        0% 100%
    );
    animation: flashChart 3s ease-out 0.5s forwards;
    transform: scaleX(0);
    transform-origin: left;
    filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.4));
}

.savings-area-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(79, 70, 229, 0.8) 0%, 
        rgba(124, 58, 237, 0.9) 100%);
    clip-path: polygon(
        0% 85%, 
        33% 75%, 
        66% 55%, 
        100% 25%, 
        100% 100%, 
        0% 100%
    );
    animation: flashSavings 3s ease-out 1s forwards;
    transform: scaleX(0);
    transform-origin: left;
    filter: drop-shadow(0 0 25px rgba(79, 70, 229, 0.6));
}

@keyframes flashChart {
    from { 
        transform: scaleX(0);
        filter: drop-shadow(0 0 0 rgba(239, 68, 68, 0));
    }
    to { 
        transform: scaleX(1);
        filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.4));
    }
}

@keyframes flashSavings {
    from { 
        transform: scaleX(0);
        filter: drop-shadow(0 0 0 rgba(79, 70, 229, 0));
    }
    to { 
        transform: scaleX(1);
        filter: drop-shadow(0 0 25px rgba(79, 70, 229, 0.6));
    }
}

@keyframes drawChart {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes drawSavings {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.chart-points-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.chart-point-new {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #4f46e5 0%, #7c3aed 100%);
    border: 2px solid #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: flashPoint 0.8s ease-out forwards;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 15px rgba(79, 70, 229, 0.6),
        0 0 30px rgba(79, 70, 229, 0.3);
}

.chart-point-new:hover {
    transform: translate(-50%, -50%) scale(1.5);
    box-shadow: 
        0 0 25px rgba(79, 70, 229, 0.8),
        0 0 50px rgba(79, 70, 229, 0.5);
}

@keyframes flashPoint {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
        box-shadow: 0 0 0 rgba(79, 70, 229, 0);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.8);
        box-shadow: 
            0 0 30px rgba(79, 70, 229, 0.8),
            0 0 60px rgba(79, 70, 229, 0.4);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 15px rgba(79, 70, 229, 0.6),
            0 0 30px rgba(79, 70, 229, 0.3);
    }
}

.chart-point-new:nth-child(1) { 
    left: 8%; 
    top: 15%; 
    animation-delay: 1.5s; 
}
.chart-point-new:nth-child(2) { 
    left: 33%; 
    top: 25%; 
    animation-delay: 2s; 
}
.chart-point-new:nth-child(3) { 
    left: 66%; 
    top: 45%; 
    animation-delay: 2.5s; 
}
.chart-point-new:nth-child(4) { 
    left: 92%; 
    top: 75%; 
    animation-delay: 3s; 
}

@keyframes fadeInPoint {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.chart-x-axis-new {
    position: absolute;
    left: 50px;
    right: 0;
    bottom: 0;
    height: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.x-label-new {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 700;
    flex: 1;
    text-align: center;
    text-shadow: 0 0 10px rgba(79, 70, 229, 0.8);
    background: rgba(79, 70, 229, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    border: 1px solid rgba(79, 70, 229, 0.4);
}

.chart-legend-new {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.legend-item-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color-new {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.cost-color-new {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}

.savings-color-new {
    background: #4f46e5;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.6);
}

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

.legend-item-new span {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}




































.dashboard-card-new::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.chart-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0 0 8px 8px;
}

.savings-new {
    text-align: center;
    font-weight: 600;
    color: var(--success-color);
}

/* Features Section */
.features-new {
    padding: 5rem 0 2rem;
    background: linear-gradient(135deg, #f3f4ff 0%, #e9ecff 20%, #ddd6fe 40%, #c7d2fe 60%, #a5b4fc 80%, #8b5cf6 90%, #7c3aed 100%);
}

.features-header-new {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card-new {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card-new:hover {
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.feature-icon-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.feature-icon-new i {
    width: 24px;
    height: 24px;
}

.feature-title-new {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-text-new {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f6ff 0%, #f1edff 30%, #ede9ff 70%, #e4d4ff 100%);
    border-top: 1px solid rgba(79, 70, 229, 0.15);
    border-bottom: 1px solid rgba(79, 70, 229, 0.15);
    position: relative;
    overflow: hidden;
}

.how-it-works-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(79, 70, 229, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: sectionFloat 20s ease-in-out infinite;
}

@keyframes sectionFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.7; }
    50% { transform: translate(-20px, -30px); opacity: 1; }
}

.how-it-works-header-new {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.ai-mascot-new {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: wiggle 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.steps-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-new {
    text-align: center;
    max-width: 200px;
}

.step-number-new {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #6d5dfc);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 12px 30px rgba(79, 70, 229, 0.5);
        transform: scale(1.05);
    }
}

.step-number-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.step-new:hover .step-number-new {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

.step-new:hover .step-number-new::before {
    transform: translateX(100%) rotate(45deg);
}

.step-title-new {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-text-new {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.step-arrow-new {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Additional Features Section */
.additional-features-new {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.audit-storage-card-new {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    flex: 1;
    min-width: 350px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audit-storage-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.05), transparent);
    transition: left 0.8s ease;
}

.audit-storage-card-new:hover::before {
    left: 100%;
}

.audit-storage-card-new:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.audit-storage-icon-new {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(79, 70, 229, 0.2));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    75% { transform: translateY(-2px) rotate(-1deg); }
}

.audit-storage-content-new {
    flex: 1;
}

.audit-storage-title-new {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.audit-storage-text-new {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.audit-storage-link-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.audit-storage-link-new:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.audit-storage-arrow-new {
    transition: transform 0.2s ease;
}

.audit-storage-link-new:hover .audit-storage-arrow-new {
    transform: translateX(3px);
}

/* Try Free Audit Box */
.try-audit-box-new {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
}

.try-audit-content-new {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.2);
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
}

.try-audit-content-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.3);
}

.try-audit-icon-new {
    font-size: 2rem;
    min-width: 40px;
    text-align: center;
}

.try-audit-text-new {
    flex: 1;
}

.try-audit-title-new {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.try-audit-description-new {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.try-audit-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.try-audit-btn-new:hover {
    background: rgba(255, 255, 255, 0.25);
    gap: 0.75rem;
    transform: translateX(2px);
}

.try-audit-arrow-new {
    transition: transform 0.2s ease;
}

.try-audit-btn-new:hover .try-audit-arrow-new {
    transform: translateX(3px);
}

/* Trust Section */
.trust-new {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f3f4ff 0%, #e9ecff 25%, #ddd6fe 50%, #e0e7ff 75%, #f1f5f9 100%);
    position: relative;
}

.trust-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trust-content-new {
    text-align: center;
    position: relative;
    z-index: 2;
}

.trust-title-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -0.025em;
}

.trust-title-new::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #1e3a8a;
    border-radius: 2px;
}

.trust-text-new {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 500;
    position: relative;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 70, 229, 0.1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.trust-badges-new {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
}

.trust-badges-new::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(79, 70, 229, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: badgesGlow 4s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes badgesGlow {
    0% { 
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}

.trust-badge-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 50%, #f1f5f9 100%);
    border-radius: 20px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(79, 70, 229, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(20px);
}

.trust-badge-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.trust-badge-new:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(79, 70, 229, 0.25),
        0 0 0 2px rgba(79, 70, 229, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 60px rgba(124, 58, 237, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.trust-badge-new:hover::after {
    opacity: 1;
}

.trust-badge-new::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.8s ease;
    z-index: 2;
}

.trust-badge-new:hover::before {
    left: 100%;
}

.trust-badge-new i {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    position: relative;
    z-index: 3;
    animation: iconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(79, 70, 229, 0.3));
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(79, 70, 229, 0.3));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 4px 8px rgba(79, 70, 229, 0.5));
    }
}



/* Footer */
.footer-new {
    padding: 3rem 0 2rem;
    background: #1e293b;
    color: white;
}

.footer-content-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-new {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-links-new {
    display: flex;
    gap: 2rem;
}

.footer-links-new a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-new a:hover {
    color: white;
}

.footer-copyright-new {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-list-new {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-list-new.nav-open-new {
        transform: translateX(0);
    }

    .mobile-menu-toggle-new {
        display: flex;
        z-index: 1001;
    }

    .hero-content-new {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title-new {
        font-size: 2.5rem;
    }

    .hero-cta-new {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary-large-new {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .hero-illustration-new {
        flex-direction: column;
        gap: 1rem;
    }

    .arrow-new {
        transform: rotate(90deg);
    }

    .features-grid-new {
        grid-template-columns: 1fr;
    }

    .steps-new {
        flex-direction: column;
        gap: 2rem;
    }

    .step-arrow-new {
        transform: rotate(90deg);
    }

    .trust-badges-new {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-title-new {
        font-size: 2rem;
    }

    .footer-content-new {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-new {
        flex-direction: column;
        gap: 1rem;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 10px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    margin-top: 4.5rem;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

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

.hero-visual {
    position: relative;
}

.dashboard-preview {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.floating-cards {
    position: absolute;
    top: 20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.savings-card, .status-card {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    min-width: 160px;
}

.savings-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
}

.savings-label, .status-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-icon {
    width: 24px;
    height: 24px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}



/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 0;
    border-radius: 16px;
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

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

.feature-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-icon {
    display: none;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 1.5rem 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 1.5rem 2rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.step:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 0;
    border-radius: 16px;
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.step:hover .step-image {
    transform: scale(1.05);
}

.step-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 2px solid white;
}

.step-icon i {
    display: none;
}

.step-number {
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 2rem 1rem;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 2rem 2rem;
}

/* Process Video */
.process-video {
    margin-top: 4rem;
    text-align: center;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: left;
}

.video-overlay h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.video-overlay p {
    margin: 0;
    opacity: 0.9;
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.promo-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.promo-text {
    font-size: 1.1rem;
}

.promo-cta {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .promo-text {
        font-size: 1rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: white;
}

.pricing-plans {
    padding: 4rem 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white !important;
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Starter Card - Clean White */
.pricing-card:first-child {
    background: white !important;
    border: 2px solid #e2e8f0;
}

/* Growth Card - Light Blue */
.pricing-card.featured {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%) !important;
    border: 2px solid #3b82f6;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Growth Card Text - White for readability */
.pricing-card.featured .plan-name {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured .price {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured .plan-description {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Keep employee tier note with standard styling for Growth card */
.pricing-card.featured .employee-tier-note {
    color: #64748b !important;
    text-shadow: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.pricing-card.featured .original-price {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Pro Card - Light Purple */
.pricing-card:nth-child(3) {
    background: linear-gradient(135deg, #f8f6ff 0%, #f1edff 50%, #ede9ff 100%) !important;
    border: 2px solid #7c3aed;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

/* Enterprise Card - Goldish */
.pricing-card.enterprise-premium {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%) !important;
    border: 2px solid #f59e0b;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.pricing-card:nth-child(3):hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.pricing-card.enterprise-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

/* Removed - replaced with individual card styling above */

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b !important;
}

.plan-price {
    margin-bottom: 0.5rem;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    line-height: 1;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #4f46e5 !important;
}

.period {
    color: #64748b !important;
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

/* Mobile responsiveness for pricing */
@media (max-width: 768px) {
    .price-row {
        gap: 0.5rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    .discount-badge {
        font-size: 0.625rem;
        padding: 0.2rem 0.4rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

.plan-description {
    color: #64748b !important;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.plan-features i {
    color: var(--success-color);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.card-cta {
    text-align: center;
    margin-top: auto;
    padding-top: 1.5rem;
}

/* Enterprise card extra spacing - removed for consistent height */

.card-cta .btn {
    width: 100%;
}

/* Pricing FAQ Section */
.pricing-faq {
    padding: 6rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.faq-item {
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Removed - using .faq-toggle div instead of ::after pseudo-element */

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

/* Pricing CTA Section */
.pricing-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cta-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0 3rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.hidden {
    display: none !important;
}

/* Authentication Styles */
.auth-section {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.btn-full {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.auth-toggle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 1rem;
}

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

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

/* Legal Agreement Styles */
.legal-agreement {
    margin: 1.5rem 0 !important;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary);
    cursor: pointer;
}

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

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

.legal-statement {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.legal-statement p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

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

.legal-statement a:hover {
    text-decoration: underline;
}

.legal-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    color: #dc2626;
    font-size: 0.875rem;
}

.legal-error i {
    color: #dc2626;
}

/* Employee Count and Confirmation Styles */
.employee-confirmation {
    margin: 1.5rem 0 !important;
}

.employee-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.employee-error i {
    color: #dc2626;
}

.employee-confirmation-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    color: #dc2626;
    font-size: 0.875rem;
}

.employee-confirmation-error i {
    color: #dc2626;
}

/* Number input styling */
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Employee Tier Note Styles */
.employee-tier-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 0.875rem;
}

.employee-tier-note i {
    color: var(--primary-color);
    width: 16px;
    height: 16px;
}

.employee-tier-note strong {
    font-weight: 600;
}

/* Plan Accuracy Reminder Styles */
.plan-accuracy-reminder {
    margin-top: 3rem;
    padding: 0 1rem;
}

.reminder-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.reminder-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #d97706;
}

.reminder-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.reminder-content p {
    color: #92400e;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .employee-tier-note {
        font-size: 0.8125rem;
        padding: 0.625rem;
    }
    
    .reminder-card {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .reminder-content h4 {
        font-size: 1rem;
    }
    
    .reminder-content p {
        font-size: 0.875rem;
    }
}

.verification-disclaimer {
    margin: 1.5rem 0;
}

.disclaimer-box {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--secondary-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.disclaimer-box i {
    color: var(--primary-color);
    min-width: 20px;
}

.disclaimer-box h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.disclaimer-box p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.recommended-plan {
    margin-bottom: 2rem;
}

.plan-card {
    background: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.plan-badge {
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    display: inline-block;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4f46e5 !important;
}

.plan-price .period {
    color: #64748b !important;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.plan-description {
    color: #64748b !important;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.plan-features i {
    color: var(--primary-color);
    min-width: 16px;
}

.recommendation-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-notice,
.email-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
}

.email-notice {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #1e40af;
}

.email-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.email-notice i,
.email-error i {
    min-width: 16px;
    color: currentColor;
}

.plan-verification {
    margin: 2rem 0;
}

.verification-notice {
    margin-bottom: 1.5rem;
}

.notice-box {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    color: #92400e;
}

.notice-box i {
    color: #f59e0b;
    min-width: 20px;
}

.notice-box h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.notice-box p {
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
}

/* Email Contact Section Styles */
.email-contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.email-contact-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.email-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.email-icon i {
    color: white;
    font-size: 2rem;
}

.email-contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.email-contact-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.email-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    text-decoration: none;
    color: white;
}

.email-button i {
    font-size: 1.1rem;
}

.email-details {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.email-details p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.email-details p:last-child {
    margin-bottom: 0;
}

/* FAQ Toggle Icon Styling - Clean single display */
.faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    color: #7c3aed;
    transition: transform 0.3s ease;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
}

/* Clean FAQ section - no interference */
.faq-section svg,
.faq-section i[data-feather] {
    display: none !important;
}

/* Simple icon styling for replaced Feather icons */
.mail-icon, .clock-icon, .shield-icon, .mail-icon-large, .mail-icon-small, .check-icon {
    font-size: inherit;
    display: inline-block;
}

.mail-icon-large {
    font-size: 2rem;
    color: white;
}

.mail-icon-small {
    font-size: 1.1rem;
}

.check-icon {
    color: var(--success-color);
    font-weight: bold;
}

.faq-item.active .faq-toggle {
    transform: translateY(-50%) rotate(45deg);
}

/* Hide any old faq-plus elements that might still exist */
.faq-plus {
    display: none !important;
}

/* FAQ Answer styling improvements */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    opacity: 1;
    padding: 1.5rem;
}

.verification-checkbox {
    margin-bottom: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: white;
    transition: all 0.2s ease;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-container:hover .checkmark {
    border-color: var(--primary-color);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    color: var(--text-primary);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #e5e7eb;
    color: #9ca3af;
}

.btn:disabled:hover {
    background: #e5e7eb;
    transform: none;
}

/* Usage Alert Banner */
.usage-alert-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border-bottom: 1px solid #f59e0b;
    padding: 1rem 0;
    color: #92400e;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-icon i {
    color: #f59e0b;
    width: 20px;
    height: 20px;
}

.alert-text h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.alert-text p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

.alert-actions {
    display: flex;
    gap: 0.75rem;
    margin-left: auto;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Account Review Banner */
.review-banner {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-bottom: 1px solid #f87171;
    padding: 0.75rem 0;
    color: #991b1b;
}

.review-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-icon i {
    color: #ef4444;
    width: 18px;
    height: 18px;
}

.review-text {
    font-size: 0.875rem;
    font-weight: 500;
    flex: 1;
}

.review-banner .btn {
    margin-left: auto;
}

/* Plan Notice Styles */
.plan-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #1e40af;
}

.plan-notice i {
    color: #3b82f6;
    min-width: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Feedback Page Styles */
.feedback-section {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.feedback-header {
    text-align: center;
    margin-bottom: 4rem;
}

.feedback-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.quick-feedback h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.feedback-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feedback-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feedback-card.active {
    border-color: var(--primary-color);
    background: var(--secondary-color);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.card-icon i {
    color: white;
    width: 24px;
    height: 24px;
}

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

.feedback-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.feedback-form-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    min-height: 600px;
}

.feedback-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.form-note i {
    min-width: 14px;
    color: var(--primary-color);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.rating-group {
    margin: 1.5rem 0;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.rating-stars input {
    display: none;
}

.rating-stars label.star {
    font-size: 2rem;
    color: #e5e7eb;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating-stars label.star:before {
    content: '★';
}

.rating-stars label.star:hover,
.rating-stars label.star.selected {
    color: #fbbf24;
}

.rating-stars input:checked ~ label.star {
    color: #fbbf24;
}

.feedback-success {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.success-icon i {
    color: white;
    width: 40px;
    height: 40px;
}

.feedback-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feedback-success p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

.recent-feedback {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.recent-feedback h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.feedback-timeline {
    position: relative;
}

.feedback-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--border-color);
}

.timeline-content {
    background: var(--secondary-color);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.feedback-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.feedback-type-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.feedback-type-badge.feature {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
}

.feedback-type-badge.bug {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.feedback-type-badge.general {
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
}

.feedback-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.feedback-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.status-badge.in-progress {
    background: rgba(251, 191, 36, 0.1);
    color: #92400e;
}

.status-badge.completed {
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
}

@media (max-width: 768px) {
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feedback-cards {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

/* Feedback Widget Styles */
.feedback-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.feedback-trigger {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.feedback-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.feedback-trigger i {
    width: 18px;
    height: 18px;
}

.feedback-panel {
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.feedback-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.feedback-panel-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.close-btn:hover {
    background: var(--secondary-color);
}

.close-btn i {
    width: 16px;
    height: 16px;
}

.feedback-panel-content {
    padding: 1.5rem;
}

.quick-rating p {
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.rating-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-btn {
    background: var(--secondary-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    text-align: center;
}

.rating-btn:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.rating-btn.selected {
    border-color: var(--primary-color);
    background: rgba(139, 92, 246, 0.1);
}

#quick-feedback {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.875rem;
    resize: vertical;
    margin-bottom: 1rem;
    font-family: inherit;
}

#quick-feedback:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.feedback-panel-actions {
    display: flex;
    gap: 0.75rem;
}

.feedback-panel-actions .btn {
    flex: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .feedback-widget {
        bottom: 1rem;
        right: 1rem;
    }
    
    .feedback-panel {
        width: 280px;
    }
    
    .feedback-trigger {
        padding: 0.75rem 1rem;
    }
    
    .feedback-trigger span {
        display: none;
    }
}

/* AI Audit Demo Styles */
.audit-demo-section {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.demo-header {
    text-align: center;
    margin-bottom: 4rem;
}

.demo-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.demo-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.input-section, .results-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.input-section h2, .results-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.company-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.subscription-input h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.input-help {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.sample-data {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr auto;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.subscriptions-list h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.subscriptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.subscription-card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.sub-details {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.category {
    background: var(--primary-color);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.remove-btn:hover {
    background: #fee2e2;
    color: #dc2626;
}

.action-buttons {
    margin-top: 2rem;
    text-align: center;
}

.loading-state {
    background: white;
    border-radius: 16px;
    padding: 4rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-state h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.loading-state p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Results Styling */
.summary-card, .red-flags-section, .recommendations-section, .consolidation-section, .plan-fit-section {
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.summary-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric.savings .metric-value {
    color: #10b981;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.flags-grid, .recommendations-list, .consolidation-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.flag-card, .recommendation-card, .consolidation-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid var(--primary-color);
}

.flag-card.severity-high {
    border-left-color: #ef4444;
}

.flag-card.severity-medium {
    border-left-color: #f59e0b;
}

.flag-card.severity-low {
    border-left-color: #10b981;
}

.flag-header, .rec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.severity-badge, .rec-type, .rec-urgency {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.severity-badge.high {
    background: #fee2e2;
    color: #dc2626;
}

.severity-badge.medium {
    background: #fef3c7;
    color: #d97706;
}

.severity-badge.low {
    background: #dcfce7;
    color: #16a34a;
}

.rec-type {
    background: var(--secondary-color);
    color: var(--primary-color);
}

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

.flag-savings, .rec-savings, .consolidation-savings {
    background: #f0fdf4;
    color: #15803d;
    padding: 0.5rem;
    border-radius: 6px;
    margin: 0.75rem 0;
    text-align: center;
    font-size: 0.875rem;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tool-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

.plan-fit-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
}

.upgrade-notice {
    color: #d97706;
    font-weight: 500;
}

.fit-good {
    color: #16a34a;
    font-weight: 500;
}

.result-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.no-subscriptions, .no-flags, .no-consolidation {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .company-info {
        grid-template-columns: 1fr;
    }
    
    .summary-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .result-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* File Upload Styles */
.file-upload-section {
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.file-upload-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--secondary-color);
}

.upload-area:hover, .upload-area.drag-over {
    border-color: var(--primary-color);
    background: rgba(139, 92, 246, 0.05);
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.upload-content i {
    color: var(--primary-color);
    width: 32px;
    height: 32px;
}

.upload-content p {
    margin: 0;
    color: var(--text-primary);
    font-weight: 500;
}

.upload-note {
    font-size: 0.875rem;
    color: var(--text-secondary) !important;
    font-weight: 400 !important;
}

.uploaded-file {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-info i {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

.remove-file-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    margin-left: auto;
    transition: background 0.2s ease;
}

.remove-file-btn:hover {
    background: #fee2e2;
    color: #dc2626;
}

/* Markdown Summary Styles */
.markdown-section {
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.markdown-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.markdown-content {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.markdown-content pre {
    white-space: pre-wrap;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-primary);
}

.markdown-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}



/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text {
    text-align: left;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-visual {
    position: relative;
}

.cta-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}



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

.cta-buttons .btn-primary:hover {
    background: var(--secondary-color);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.footer-logo p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-signup h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #374151;
    border-radius: 8px;
    background: #1f2937;
    color: white;
    font-size: 0.875rem;
}

.newsletter-input::placeholder {
    color: var(--text-light);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom .footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .header-tabs {
        gap: 0.25rem;
        padding: 0.125rem;
    }
    
    .header-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .core-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .floating-cards {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    

    
    .core-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .analytics-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step:nth-child(3) {
        grid-column: 1;
        max-width: none;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    

    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .floating-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .step-title {
        margin: 2rem 1rem 1rem;
    }
    
    .step-description {
        padding: 0 1rem 2rem;
    }
    
    .feature-title {
        margin: 2rem 1rem 1rem;
    }
    
    .core-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .core-feature-icon {
        width: 64px;
        height: 64px;
    }
    
    .core-feature-icon i {
        font-size: 1.5rem;
    }
    
    .core-feature-title {
        font-size: 1.25rem;
    }
    
    .feature-description {
        padding: 0 1rem 2rem;
    }
    
    .analytics-card {
        padding: 2rem 1.5rem;
    }
    
    .analytics-hero-title {
        font-size: 2.5rem;
    }
    
    .analytics-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .analytics-hero-cta {
        justify-content: center;
    }
    

    

}

/* Loading and animation states */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Forgot Password Styles */
.forgot-password-link {
    text-align: right;
    margin-top: 8px;
}

.forgot-password-link a {
    color: #6366f1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

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

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

.password-requirements p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.success-actions,
.error-actions {
    text-align: center;
    margin-top: 24px;
}

/* Support Page Styles */
.support-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-align: center;
}

.support-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    padding: 80px 0;
    background: #f8fafc;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.response-time {
    font-size: 0.875rem;
    color: #94a3b8;
}

.faq-section {
    padding: 80px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #6366f1;
}

.faq-question {
    padding: 1.5rem;
    padding-right: 70px;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
    position: relative;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-chevron {
    transition: transform 0.3s ease;
    color: #6366f1;
}

.faq-answer {
    padding: 0 1.5rem;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer ul, .faq-answer ol {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.contact-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #6366f1;
    border-color: #6366f1;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    z-index: 1000;
    border: 1px solid #e2e8f0;
    min-width: 300px;
}

.success-message.hidden {
    display: none;
}

.success-content i {
    color: #10b981;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.success-content p {
    color: #64748b;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .support-hero h1 {
        font-size: 2.5rem;
    }
    
    .support-hero p {
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}
/* Industry Insights Section */
.industry-insights-new {
    padding: 2rem 0 6rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 40%, #0a0e1a 70%, #020617 100%);
    position: relative;
    overflow: hidden;
}

.industry-insights-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 0;
}

.insights-header-new {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.insights-header-new .section-title-new {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insights-header-new .section-subtitle-new {
    color: #cbd5e1;
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.insights-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.insight-card-new {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.insight-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insight-card-new:hover::before {
    opacity: 1;
}

.insight-card-new:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.insight-card-new.featured {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 1px solid rgba(79, 70, 229, 0.3);
}

.insight-badge-new {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.insight-badge-new.research {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.insight-badge-new.case-study {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.insight-badge-new.report {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.insight-badge-new.analysis {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.insight-badge-new.guide {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.insight-badge-new.data {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
}

.insight-title-new {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.insight-excerpt-new {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.insight-footer-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-date-new {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
}

.insight-source-new {
    color: #64748b;
    font-size: 0.875rem;
    font-style: italic;
}

/* Link Icon Styles */
.insight-link-icon-new {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.insight-card-new:hover .insight-link-icon-new {
    transform: scale(1.1);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.insights-cta-new {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.insights-cta-title-new {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.insights-cta-text-new {
    color: #cbd5e1;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.btn-icon-new {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary-new:hover .btn-icon-new {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .industry-insights-new {
        padding: 4rem 0;
    }
    
    .insights-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .insight-card-new {
        padding: 1.5rem;
    }
    
    .insights-header-new .section-title-new {
        font-size: 2rem;
    }
    
    .insights-header-new .section-subtitle-new {
        font-size: 1.125rem;
    }
    
    .insights-cta-title-new {
        font-size: 1.5rem;
    }
    
    .insights-cta-text-new {
        font-size: 1rem;
    }
    
    .insights-cta-new {
        padding: 2rem 1.5rem;
    }
}
