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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #ffffff;
}

/* Premium glass morphism utility */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Premium gradient backgrounds */
.premium-gradient-1 {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.premium-gradient-2 {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.premium-gradient-3 {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 22px;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    width: 22px;
    height: 22px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-menu .nav-link {
    font-size: 14px;
    font-weight: 500;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #3b82f6;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-primary.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
}

.btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-secondary.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    color: #64748b;
}

.btn-secondary.btn-small:hover {
    background: #f8fafc;
    color: #1a1a1a;
    border-color: #cbd5e1;
    transform: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #06b6d4 100%);
    background-size: 400% 400%;
    animation: premiumGradientShift 12s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1.5;
    max-width: 800px;
    text-align: left;
}

.hero-title-wrapper {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-title-main {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-title-sub {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    max-width: 550px;
    text-align: left;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
    justify-content: flex-start;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 550px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    line-height: 1.4;
}

.hero-visual {
    flex: 0.7;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.features-preview {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-highlight {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.feature-highlight:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.35);
}

.feature-highlight .feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-highlight .feature-icon i {
    width: 40px;
    height: 40px;
}

.feature-highlight h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.feature-highlight p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 14px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}



/* Sections */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

/* Premium floating animations */
.floating-element-1 {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.floating-element-2 {
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

/* Competitive Advantage */
.competitive-advantage {
    background: #ffffff;
}

.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: #1e293b;
    color: white;
    padding: 20px;
    font-weight: 600;
}

.competitor-column {
    text-align: center;
}

.competitor-badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    background: #475569;
}

.competitor-badge.winner {
    background: #10b981;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-weight: 600;
    color: #1a1a1a;
}

.feature-status {
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.feature-status.winner {
    background: #dcfce7;
    color: #166534;
}

.feature-status.partial {
    background: #fef3c7;
    color: #92400e;
}

.feature-status.none {
    background: #fee2e2;
    color: #991b1b;
}

.advantage-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #3b82f6;
}

.advantage-icon i {
    width: 48px;
    height: 48px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.advantage-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    /* Main page features grid with custom layout - more specific selector */
    #features .features-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto auto;
    }
    
    #features .features-grid .feature-card:nth-child(1) {
        grid-column: 1 / 3;
    }
    
    #features .features-grid .feature-card:nth-child(2) {
        grid-column: 3 / 5;
    }
    
    #features .features-grid .feature-card:nth-child(3) {
        grid-column: 5 / 7;
    }
    
    #features .features-grid .feature-card:nth-child(4) {
        grid-column: 2 / 4;
        grid-row: 2;
    }
    
    #features .features-grid .feature-card:nth-child(5) {
        grid-column: 4 / 6;
        grid-row: 2;
    }
    
    /* Regular features grid for other pages */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 36px 28px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    align-items: flex-start;
    justify-content: flex-start;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8, #06b6d4);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.3;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
    flex: 1;
    margin-bottom: 0;
}

.feature-card .card-summary {
    margin-bottom: 15px;
}

.feature-card .card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.feature-card .card-details.expanded {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

.feature-card .card-details p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #475569;
}

.learn-more-btn {
    background: none;
    border: none;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.learn-more-btn:hover {
    color: #1d4ed8;
}

.learn-more-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.learn-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Departments */
.departments {
    background: #f8fafc;
}

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

.department-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
}

.department-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #3b82f6;
}

.department-icon i {
    width: 48px;
    height: 48px;
}

.department-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.department-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.department-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Compliance */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.compliance-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-5px);
}

.compliance-badge {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.compliance-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.compliance-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Pricing */
.pricing {
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.pricing-card:nth-child(1) {
    background: linear-gradient(135deg, #fffef8 0%, #fdfcf2 100%);
}

.pricing-card:nth-child(2) {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f5ff 100%);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.15);
}

.pricing-card:nth-child(3) {
    background: linear-gradient(135deg, #fffef9 0%, #fcf7e7 100%);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
    background: linear-gradient(135deg, #f8fbff 0%, #f0f5ff 100%);
    box-shadow: 0 25px 55px rgba(37, 99, 235, 0.2);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8, #06b6d4);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    position: relative;
}

.pricing-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    letter-spacing: -0.025em;
}

.pricing-badge {
    display: inline-block;
    background: #fbbf24;
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-badge.featured {
    background: #3b82f6;
}

.pricing-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-period {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.pricing-description {
    text-align: center;
    color: #64748b;
    margin-bottom: 30px;
    padding: 0 30px;
}

.pricing-features {
    list-style: none;
    padding: 0 30px 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
    position: relative;
    padding-left: 25px;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn-primary {
    margin: 0 30px 30px;
}

.pricing-footer {
    text-align: center;
}

.pricing-footer p {
    color: #64748b;
    margin-bottom: 30px;
}

/* Pricing Toggle Styles */
.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    transition: color 0.3s ease;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cbd5e1;
    transition: 0.3s;
    border-radius: 26px;
    display: flex;
    align-items: center;
}

.toggle-button {
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-slider {
    background: #f97316;
}

.toggle-input:checked + .toggle-slider .toggle-button {
    transform: translateX(24px);
}

.savings-badge {
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
}

.toggle-input:checked ~ .toggle-label:last-child {
    color: #f97316;
}

/* Modal */
.modal {
    display: none !important;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: white;
    margin: 0 auto;
    padding: 0;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    min-height: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-sizing: border-box;
}

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

.modal-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.close {
    color: #64748b;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #1a1a1a;
}

.demo-form {
    padding: 30px 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 60;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #f8fafc;
    color: #1a1a1a;
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1a1a1a;
    letter-spacing: -0.025em;
    position: relative;
    padding-bottom: 6px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 1px;
}

.footer-column a {
    display: block;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    padding: 2px 0;
    border-radius: 4px;
}

.footer-column a:hover {
    color: #3b82f6;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.025em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-column:nth-child(3) {
        grid-column: span 2;
    }
}

@media (max-width: 1200px) {
    .hero-title-main {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero-title-sub {
        font-size: clamp(1.3rem, 3vw, 1.8rem);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
        padding: 0 30px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    }

    .hero-description {
        font-size: 17px;
        max-width: 500px;
    }

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

    .feature-highlight {
        padding: 25px;
    }

    .feature-highlight h4 {
        font-size: 17px;
    }

    .feature-highlight p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .modal {
        padding: 5px;
        align-items: flex-start;
    }

    .modal-content {
        width: 100%;
        margin: 10px auto;
        max-height: calc(100vh - 20px);
        border-radius: 12px;
    }

    .modal-header {
        padding: 20px 24px 15px;
    }

    .demo-form {
        padding: 20px 24px 30px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav-menu {
        gap: 16px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 8px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: left;
        padding: 0 20px;
        min-height: auto;
    }

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

    .hero-title-main {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        white-space: normal;
        text-overflow: unset;
        overflow: visible;
    }

    .hero-title-sub {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 35px;
    }

    .hero-actions .btn-large {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

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

    .features-preview {
        gap: 20px;
    }

    .feature-highlight {
        padding: 20px;
    }

    .feature-highlight h4 {
        font-size: 16px;
    }

    .feature-highlight p {
        font-size: 13px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        min-height: auto;
        padding: 25px 20px;
    }

    .departments-grid,
    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .advantage-cards {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 40px 0 24px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        text-align: left;
    }

    .footer-column:nth-child(3) {
        grid-column: span 2;
    }

    .footer-column h4 {
        margin-bottom: 12px;
        font-size: 15px;
    }

    .footer-column h4::after {
        left: 0;
        transform: none;
    }

    .footer-column a {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 50px;
    }

    .hero-container {
        padding: 0 16px;
        gap: 30px;
    }

    .hero-title-main {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    .hero-title-sub {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .hero-actions {
        margin-bottom: 30px;
    }

    .hero-actions .btn-large {
        padding: 14px 24px;
        font-size: 15px;
        max-width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 280px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }

    .features-preview {
        gap: 15px;
    }

    .feature-highlight {
        padding: 18px;
    }

    .feature-highlight .feature-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .feature-highlight h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .feature-highlight p {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 320px) {
    .hero-title-main {
        font-size: clamp(1.2rem, 7vw, 1.5rem);
    }

    .hero-title-sub {
        font-size: clamp(0.9rem, 5vw, 1.1rem);
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions .btn-large {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-stats {
        gap: 12px;
        max-width: 250px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Premium shimmer effect */
.shimmer {
    position: relative;
    overflow: hidden;
}

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

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

/* Floating animations with variations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(-10px) rotate(0deg); }
    50% { transform: translateY(10px) rotate(-180deg); }
}

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

/* Enhanced card animations */
.feature-card {
    animation: subtlePulse 12s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); }
    50% { transform: translateY(-2px) scale(1.002); box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15); }
}

.feature-card:nth-child(2n) {
    animation-delay: 2s;
}

.feature-card:nth-child(3n) {
    animation-delay: 4s;
}

/* Staggered entrance animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Premium glow effects */
.glow {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    to { box-shadow: 0 0 30px rgba(102, 126, 234, 0.5), 0 0 40px rgba(102, 126, 234, 0.2); }
}

/* Premium cursor - DISABLED */

/* Text reveal animations */
.char-reveal {
    display: inline-block;
    opacity: 0;
    animation: charReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes charReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* Enhanced button press effects */
.btn-primary:active,
.btn-secondary:active {
    transform: translateY(0) scale(0.98);
    transition: transform 0.1s ease;
}

/* Premium loading states */
.loading-shimmer {
    position: relative;
    overflow: hidden;
}

.loading-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmerLoad 1.5s ease-in-out infinite;
}

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

/* Enhanced card depth effects */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

/* Premium scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8, #06b6d4);
    transform: scaleX(0);
    transform-origin: left;
    z-index: 1001;
    transition: transform 0.3s ease;
}

/* Enhanced focus states */
.btn-primary:focus,
.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Premium selection effects */
::selection {
    background: rgba(59, 130, 246, 0.3);
    color: inherit;
}