/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header when scrolling to anchors */
}

/* Prevent scroll restoration issues */
html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Ensure no unwanted margin/padding that could cause scroll shifts */
html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #F8FAFC;
    overflow-x: hidden;
    padding-top: 100px; /* Add padding to account for fixed header positioned at top: 20px */
}

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

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    background: rgba(59, 130, 246, 0.05);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    z-index: 1000;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                border 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
    padding: 0;
    white-space: nowrap;
}

/* Enhanced glassmorphic header when scrolled */
.header.scrolled {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(59, 130, 246, 0.25);
    box-shadow: 0 8px 40px rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    z-index: 1000;
    padding: 0;
    white-space: nowrap;
}

/* Add glassmorphic styling for dark backgrounds */
.header.scrolled.dark-bg {
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    transition: all 0.4s ease;
}

.nav-brand .logo {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
    margin-right: 1rem; /* Add margin for proper spacing */
    padding: 0.25rem; /* Add padding around the logo */
}

.logo-icon {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    display: block;
}

.logo-text {
    color: #3B82F6;
    transition: all 0.3s ease;
}

/* Logo styling when scrolled */
.header.scrolled .nav-brand .logo {
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.4));
    margin-right: 1rem; /* Maintain margin when scrolled */
}

.header.scrolled .logo-text {
    color: #1E40AF;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.header.scrolled .logo-icon {
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #64748B;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.08);
    backdrop-filter: blur(8px);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

/* Navigation links when scrolled */
.header.scrolled .nav-links a {
    color: #1E293B;
    font-weight: 600;
}

.header.scrolled .nav-links a:hover {
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.12);
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.75rem;
    gap: 5px;
    transition: all 0.3s ease;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.mobile-menu-toggle:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(59, 130, 246, 0.3);
}

.header.scrolled .mobile-menu-toggle {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.25);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

.header.scrolled .mobile-menu-toggle:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.header.scrolled .mobile-menu-toggle span {
    background: linear-gradient(135deg, #1E40AF, #1E3A8A);
    box-shadow: 0 1px 4px rgba(59, 130, 246, 0.4);
}

/* Mobile menu animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #3B82F6;
    color: white;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #3B82F6;
    border: 2px solid #3B82F6;
}

.btn-secondary:hover {
    background: #3B82F6;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #64748B;
    border: 2px solid #E2E8F0;
}

.btn-outline:hover {
    border-color: #3B82F6;
    color: #3B82F6;
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 4rem 0 4rem; /* Reduced top padding since body now has padding-top */
    text-align: center;
    position: relative;
    min-height: calc(100vh - 80px); /* Ensure hero takes full viewport minus header */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(59, 130, 246, 0.03) 0%, 
        transparent 25%, 
        rgba(59, 130, 246, 0.05) 50%, 
        transparent 75%, 
        rgba(59, 130, 246, 0.02) 100%);
    animation: heroGradientMove 20s ease-in-out infinite;
    z-index: 1;
}

.hero-abstract {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatAnimation 15s ease-in-out infinite;
}

.abstract-shape:nth-child(1) {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.abstract-shape:nth-child(2) {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent);
    top: 60%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.abstract-shape:nth-child(3) {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
    top: 40%;
    left: 70%;
    animation-delay: 6s;
    animation-duration: 25s;
}

.abstract-shape:nth-child(4) {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent);
    top: 10%;
    right: 30%;
    animation-delay: 9s;
    animation-duration: 20s;
}

.abstract-shape:nth-child(5) {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent);
    bottom: 20%;
    left: 20%;
    animation-delay: 12s;
    animation-duration: 28s;
}

/* Floating lines */
.abstract-line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.1), 
        transparent);
    height: 2px;
    animation: lineFloat 12s ease-in-out infinite;
}

.abstract-line:nth-child(6) {
    width: 200px;
    top: 30%;
    left: 5%;
    animation-delay: 2s;
    transform: rotate(45deg);
}

.abstract-line:nth-child(7) {
    width: 150px;
    top: 70%;
    right: 10%;
    animation-delay: 8s;
    transform: rotate(-30deg);
}

/* Keyframe Animations */
@keyframes heroGradientMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-2%, -2%) rotate(90deg);
    }
    50% {
        transform: translate(2%, 2%) rotate(180deg);
    }
    75% {
        transform: translate(-1%, 1%) rotate(270deg);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-40px) translateX(-5px) scale(0.9);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-20px) translateX(15px) scale(1.05);
        opacity: 0.18;
    }
}

@keyframes lineFloat {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(45deg);
        opacity: 0.1;
    }
    50% {
        transform: translateX(30px) translateY(-20px) rotate(45deg);
        opacity: 0.2;
    }
}

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

/* Hero Content Styles */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #3B82F6, #8B5CF6, #06B6D4, #3B82F6);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748B;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #3B82F6;
    animation: countUpPulse 2s ease-in-out;
}

@keyframes countUpPulse {
    0% { 
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1E293B;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #64748B;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #F8FAFC;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
}

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

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 1rem;
}

.step-description {
    color: #64748B;
    line-height: 1.6;
}

/* Problem/Story Section */
.problem-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 50%, #DBEAFE 100%);
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-container {
    text-align: center;
}

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

.character {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    min-width: 150px;
}

.character:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.character-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.character-name {
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.character-status {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
}

.stressed .character-status {
    background: #FEE2E2;
    color: #991B1B;
}

.happy .character-status {
    background: #DCFCE7;
    color: #166534;
}

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

.arrow {
    font-size: 2rem;
    color: #3B82F6;
    animation: bounce 2s infinite;
}

.transition-text {
    font-size: 0.875rem;
    color: #64748B;
    font-weight: 500;
}

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

.problem-text {
    padding: 2rem;
}

.problem-description {
    font-size: 1.125rem;
    color: #64748B;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.problem-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.point-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.point-text {
    color: #374151;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: white;
}

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

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748B;
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases-section {
    padding: 5rem 0;
    background: #F8FAFC;
}

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

.use-case-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.05);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 1rem;
}

.use-case-description {
    color: #64748B;
    line-height: 1.6;
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.12);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748B;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .problem-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .character-transition {
        flex-direction: column;
        gap: 1rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .features-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

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

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

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #3B82F6;
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #3B82F6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.card-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3B82F6;
}

.period {
    color: #64748B;
}

.card-features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.feature.disabled {
    color: #94A3B8;
}

.check {
    color: #10B981;
    font-weight: 700;
}

.cross {
    color: #EF4444;
    font-weight: 700;
}

/* Trust Signals */
.trust-signals {
    padding: 3rem 0;
    background: #F8FAFC;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    font-weight: 500;
    color: #1E293B;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #64748B;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.status-pills {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #F8FAFC;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
}

.status-pill:hover {
    transform: scale(1.05);
}

.status-pill.active {
    background: #DCFCE7;
    color: #166534;
}

/* Form Styles */
.contact-form {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-note {
    font-size: 0.875rem;
    color: #64748B;
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #1E293B;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #3B82F6;
}

.footer-logo-icon {
    width: 24px;
    height: 24px;
}

.footer-logo-text {
    color: #3B82F6;
}

.footer-brand p {
    color: #94A3B8;
}

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

.link-group h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.link-group a {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #3B82F6;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94A3B8;
}

/* Tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1E293B;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
}

[data-tooltip]:hover::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1E293B;
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .badges {
        gap: 1rem;
    }
    
    .badge {
        min-width: 120px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}

/* Mobile responsiveness for navbar */
@media (max-width: 768px) {
    .header {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        width: calc(100% - 20px);
        border-radius: 12px;
    }
    
    .header.scrolled {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        width: calc(100% - 20px);
    }
    
    .nav {
        padding: 0.75rem 1rem;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(59, 130, 246, 0.08);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(59, 130, 246, 0.2);
        border-top: none;
        border-radius: 0 0 16px 16px;
        flex-direction: column;
        gap: 0;
        padding: 1.5rem;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.18);
    }
    
    .nav-links a {
        padding: 1rem 1.5rem;
        margin: 0.3rem 0;
        border-radius: 12px;
        text-align: center;
        background: rgba(59, 130, 246, 0.08);
        backdrop-filter: blur(12px);
        font-size: 0.95rem;
        color: #1E293B;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(59, 130, 246, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-links a:hover::before {
        left: 100%;
    }
    
    .nav-links a:hover {
        background: rgba(59, 130, 246, 0.15);
        color: #3B82F6;
        transform: translateY(-2px);
        border-color: rgba(59, 130, 246, 0.25);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    }
    
    .nav-brand .logo {
        margin-right: 0.5rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    body {
        padding-top: 90px;
    }
}

@media (max-width: 480px) {
    .header {
        top: 10px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }
    
    .header.scrolled {
        top: 10px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    body {
        padding-top: 80px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #3B82F6;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Number counting animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Floating Elements */
.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatIcon 12s ease-in-out infinite;
    pointer-events: none;
}

.floating-icon:nth-child(1) {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 25%;
    right: 8%;
    animation-delay: 4s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 8%;
    animation-delay: 8s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Protection Visual Animation */
.protection-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.protection-visual.active {
    opacity: 1;
    transform: translateY(0);
}

.shield-animation {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10B981, #3B82F6);
    border-radius: 50%;
    position: relative;
    animation: shieldPulse 2s ease-in-out infinite;
}

.shield-animation::before {
    content: '🛡️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

@keyframes shieldPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
    }
}

.protection-text {
    font-weight: 600;
    color: #10B981;
    font-size: 1.1rem;
}

/* Customer Avatars Social Proof */
.customer-avatars {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.avatars-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.customer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-left: -8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.customer-avatar:first-child {
    margin-left: 0;
}

.customer-avatar:hover {
    transform: scale(1.1);
    z-index: 10;
    position: relative;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: -8px;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-proof-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-left: 0.5rem;
}

.proof-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3B82F6;
    line-height: 1;
}

.proof-label {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 100%);
}

.testimonials .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.testimonials .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #60A5FA);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #F59E0B;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    font-size: 1.5rem;
    color: #3B82F6;
    font-weight: bold;
}

.testimonial-text::after {
    content: '"';
    font-size: 1.5rem;
    color: #3B82F6;
    font-weight: bold;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3B82F6;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: #64748B;
    margin: 0;
}

/* Testimonial Stats */
.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

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

.testimonial-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3B82F6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonial-stats .stat-label {
    font-size: 1rem;
    color: #64748B;
    font-weight: 500;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials .section-title {
        font-size: 2rem;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .testimonial-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonials .section-title {
        font-size: 1.75rem;
    }
}

/* Glassmorphic button styling when navbar is scrolled */
.header.scrolled .btn-secondary {
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #1E40AF;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.header.scrolled .btn-secondary:hover {
    background: rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.header.scrolled .btn-primary {
    background: rgba(59, 130, 246, 0.9);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.header.scrolled .btn-primary:hover {
    background: rgba(59, 130, 246, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(59, 130, 246, 0.5);
}

/* Base button styling with subtle blue tint */
.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3B82F6;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

/* Email Protection CTA */
.email-protection-cta {
    background: rgba(59, 130, 246, 0.05);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.email-protection-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.cta-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-header p {
    color: #64748B;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.email-input::placeholder {
    color: #94A3B8;
}

.btn-protect {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

.btn-protect:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563EB, #1E3A8A);
}

.btn-protect:active {
    transform: translateY(0);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    color: #10B981;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile responsiveness for CTA */
@media (max-width: 768px) {
    .email-protection-cta {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .cta-header h3 {
        font-size: 1.5rem;
    }
    
    .cta-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .email-input {
        min-width: auto;
        width: 100%;
    }
    
    .btn-protect {
        width: 100%;
        padding: 1rem;
    }
    
    .cta-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cta-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
}

/* Floating Bolt.new Icon */
.floating-bolt-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
}

.floating-bolt-icon:hover {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.floating-bolt-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.floating-bolt-icon:hover img {
    transform: rotate(5deg);
}

/* Responsive adjustments for floating icon */
@media (max-width: 768px) {
    .floating-bolt-icon {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .floating-bolt-icon {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
    }
}