* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #6366F1;
    --color-primary-dark: #4F46E5;
    --color-secondary: #8B5CF6;
    --color-bg: #0A0A0A;
    --color-bg-secondary: #111111;
    --color-bg-tertiary: #1A1A1A;
    --color-text: #FAFAFA;
    --color-text-secondary: #A1A1AA;
    --color-text-tertiary: #71717A;
    --color-border: #27272A;
    --color-border-hover: #3F3F46;
    --color-success: #10B981;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --border-radius: 0.75rem;
    --border-radius-sm: 0.5rem;
    --border-radius-lg: 1rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image: 
        radial-gradient(ellipse at top, rgba(99, 102, 241, 0.05), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.05), transparent 50%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    border-bottom-color: var(--color-border-hover);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    min-height: 90px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text);
    text-decoration: none;
}

.logo-img {
    width: 100px;
    height: 100px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

@media (max-width: 768px) {
    .hero-subheadline {
    font-size: 1.3rem !important;
    text-align: center !important;
}

    .nav-links {
        display: flex;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    background-size: 200% 200%;
    color: white !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
}

/* Premium Shine Sweep Hover */
.btn-primary {
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 100%
    );
    transition: all 0.6s ease;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 150%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}


.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    animation: gradientShift 3s ease infinite;
}

.btn-arrow {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background: var(--color-bg-tertiary);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg-secondary);
    border-color: var(--color-border-hover);
    color: var(--color-text);
}

.btn-secondary-light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/*  Section */
.hero {
    position: relative;
    padding: calc(90px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.1), transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.08), transparent 50%),
                radial-gradient(ellipse at top left, rgba(99, 102, 241, 0.05), transparent 60%);
    pointer-events: none;
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    background: var(--color-bg-tertiary);
    border: none;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    background: var(--color-bg-secondary);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.5));
}

.hero-badge span {
    line-height: 1.4;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    max-width: 900px;
    color: var(--color-text);
    animation: blurInSlow 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
    opacity: 0;
    filter: blur(30px);
    will-change: filter, opacity, transform;
    word-break: keep-all;
    white-space: normal;
}

.hero-title .no-break {
    white-space: nowrap;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
    opacity: 0;
    filter: blur(20px);
    animation: blurIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
    will-change: filter, opacity, transform;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    opacity: 0;
    filter: blur(15px);
    animation: blurIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
    will-change: filter, opacity, transform;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
    opacity: 1;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}

.hero-cta .btn {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
}

.hero-cta .btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    text-align: left;
    margin-top: var(--spacing-2xl);
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.6;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.trust-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3), 0 4px 12px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px) scale(1.02);
    background: var(--color-bg-secondary);
}

.trust-item svg {
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 4px;
    width: 24px;
    height: 24px;
    min-width: 24px;
    filter: drop-shadow(0 2px 6px rgba(16, 185, 129, 0.4));
}

/* Dashboard Preview */
.dashboard-preview {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg);
}

.dashboard-wrapper {
    text-align: center;
}

.dashboard-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
    opacity: 0;
    filter: blur(20px);
    animation: blurIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    will-change: filter, opacity, transform;
}

.dashboard-header p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-image-container {
    position: relative;
    margin-top: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both,
               scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    transition: transform 0.3s ease;
}

.dashboard-image-container:hover {
    transform: translateY(-5px) scale(1);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
}

.dashboard-image {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-image-container:hover .dashboard-image {
    transform: scale(1.02);
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
}

.dashboard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    pointer-events: none;
}

/* Features Section */
.features {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text);
    opacity: 0;
    filter: blur(20px);
    animation: blurIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    will-change: filter, opacity, transform;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    padding: var(--spacing-xl);
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6);
    transform: translateY(-8px) scale(1.02);
    background: var(--color-bg-secondary);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.step-card {
    padding: var(--spacing-xl);
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6);
    transform: translateY(-8px) scale(1.02);
    background: var(--color-bg-secondary);
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.step-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.step-list {
    list-style: none;
    padding-left: 0;
    margin-top: var(--spacing-sm);
}

.step-list li {
    color: var(--color-text-secondary);
    padding: 0.375rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.step-list li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.step-list-checkmarks li {
    padding-left: 1.75rem;
}

.step-list-checkmarks li::before {
    content: "";
}

.step-list-checkmarks .checkmark {
    color: var(--color-success);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-3xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.pricing-card {
    position: relative;
    padding: var(--spacing-xl);
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pricing-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    transform: translateY(-8px) scale(1.03);
}

.pricing-card-featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.1), var(--color-bg-tertiary));
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: var(--spacing-lg);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
}

.pricing-description {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: var(--spacing-lg);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 0.25rem;
}

.price-period {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: 0.625rem 0;
    color: var(--color-text-secondary);
}

.pricing-features svg {
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    padding: var(--spacing-xl);
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6);
    transform: translateY(-8px) scale(1.02);
    background: var(--color-bg-secondary);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: #FCD34D;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.author-name {
    font-weight: 700;
    color: var(--color-text);
}

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

/* CTA Section */
.cta-section {
    position: relative;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05), transparent),
                radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.03), transparent);
    pointer-events: none;
    animation: gradientShift 12s ease infinite;
    background-size: 200% 200%;
}

.cta-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 0;
    filter: blur(20px);
    animation: blurIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    will-change: filter, opacity, transform;
}

.cta-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: var(--spacing-sm);
    opacity: 0;
    filter: blur(15px);
    animation: blurIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
    will-change: filter, opacity, transform;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

/* Footer */
.footer {
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    color: var(--color-text);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-img {
    width: 120px;
    height: 120px;
}

.footer-logo .logo-text {
    font-size: 1.75rem;
    font-weight: 800;
}

.footer-tagline {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-lg);
}

.footer-column-title {
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-link-list {
    list-style: none;
}

.footer-link-list li {
    margin-bottom: var(--spacing-sm);
}

.footer-link-list a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-list a:hover {
    color: var(--color-text);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-tertiary);
    font-size: 0.875rem;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

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

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

@keyframes blurIn {
    from {
        opacity: 0;
        filter: blur(20px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes blurInSlow {
    from {
        opacity: 0;
        filter: blur(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fade-in {
    animation: fadeIn 1s ease both;
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Stagger animation delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Initial hidden state for scroll animations */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--color-bg-secondary);
        flex-direction: column;
        padding: var(--spacing-lg);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

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

    .hero {
        padding: calc(60px + var(--spacing-xl)) 0 var(--spacing-xl);
    }

    .hero-content {
        padding: 0 var(--spacing-md);
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 1.875rem);
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: keep-all;
        padding: 0;
        margin-bottom: var(--spacing-md);
        line-height: 1.2;
    }

    .hero-title .no-break {
        white-space: nowrap;
        display: inline-block;
    }

    .hero-cta {
        flex-direction: column;
    }

    .nav {
        height: 60px;
    }

    .nav-content {
        height: 60px;
        min-height: 60px;
        padding: 0 var(--spacing-md);
    }

    .nav-logo {
        gap: var(--spacing-xs);
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .btn-large {
        width: 100%;
    }

    .trust-points {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .steps-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Reduce section padding on mobile */
    .features,
    .how-it-works,
    .testimonials,
    .dashboard-preview,
    .cta-section {
        padding: var(--spacing-xl) 0;
    }

    .section-header {
        margin-bottom: var(--spacing-lg);
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: var(--spacing-sm);
    }

    /* Reduce gaps in grids on mobile */
    .features-grid,
    .steps-grid,
    .testimonials-grid {
        gap: var(--spacing-md);
    }

    .step-card,
    .feature-card,
    .testimonial-card {
        margin-bottom: var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

/* Tablet breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-title {
        font-size: clamp(1.375rem, 5.5vw, 1.625rem);
        padding: 0 var(--spacing-xs);
        line-height: 1.2;
    }

    .nav-content {
        padding: 0 var(--spacing-sm);
    }

    .logo-img {
        width: 70px;
        height: 70px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

/* Focus Styles */
*:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: var(--spacing-lg);
    pointer-events: none;
}

.modal-overlay.active {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto;
}

.modal-container {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    font-size: 2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.modal-close:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-text);
    transform: rotate(90deg);
}

.modal-content {
    padding: var(--spacing-3xl) var(--spacing-xl);
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

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

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    color: var(--color-text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

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

.form-group input::placeholder {
    color: var(--color-text-tertiary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23A1A1AA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

@media (max-width: 768px) {
    .modal-container {
        max-width: 100%;
        margin: var(--spacing-md);
        max-height: 85vh;
    }

    .modal-content {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .modal-title {
        font-size: 1.5rem;
    }
}
/* Force hero heading/subheading to center on mobile */
@media (max-width: 768px) {
    .hero-content,
    .hero-title,
    .hero-subtitle,
    .hero-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
/* ---------------------------------------------------------
   PREMIUM UI ENHANCEMENT PACK FOR TEXTFLOW
   --------------------------------------------------------- */

/* 1. Premium Shine Sweep Hover (Upgraded Button Hover) */
.btn-primary {
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 100%
    );
    transition: all 0.6s ease;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 150%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

/* 2. Card Parallax Hover (Features, Steps, Testimonials) */
.feature-card:hover,
.step-card:hover,
.testimonial-card:hover,
.pricing-card:hover {
    transform: translateY(-6px) scale(1.015) !important;
    box-shadow: 0 0 20px rgba(99,102,241,0.15) !important;
    border-color: rgba(99,102,241,0.35) !important;
}

/* 3. Icon Micro-Animations */
.feature-icon:hover,
.trust-item svg:hover {
    transform: translateY(-3px) rotate(3deg);
    transition: 0.3s ease;
}

/* 4. Hero Title Glow Enhancement */
.hero-title {
    text-shadow: 0 0 20px rgba(99,102,241,0.25);
}

/* 5. Gradient Underline for Section Titles */
.section-title {
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    opacity: 0.85;
}

/* 6. Subtle Parallax Background on Hero */
.hero {
    background-position: center;
    background-attachment: fixed;
}

/* 7. Page Fade-In on Load */
body {
    opacity: 0;
    transition: opacity 0.6s ease;
}

body.loaded {
    opacity: 1;
}

/* 8. Scroll-to-Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 14px 18px;
    border-radius: 50%;
    font-size: 20px;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 9999;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

/* 9. Magnetic Hover (Optional — Remove if you want more simplicity) */
.btn-primary.magnetic {
    transition: transform 0.2s ease;
}
.typing-cursor-sub {
    display: inline-block;
    font-weight: 800;
    margin-left: 3px;
    color: var(--color-primary);
    animation: subBlink 0.7s infinite;
}

@keyframes subBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
.hero-subheadline {
    font-size: clamp(2.2rem, 2.6vw, 2rem);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
    opacity: 0;
    filter: blur(15px);
    animation: blurIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
    will-change: filter, opacity, transform;
}
/* Fix hero heading centering on mobile */
@media (max-width: 768px) {

    .hero-content {
        align-items: center !important;
        text-align: center !important;
    }

    .hero-title {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-subheadline,
    .hero-description,
    .hero-cta,
    .hero-badge {
        text-align: center !important;
        align-items: center !important;
    }

    .hero-badge {
        justify-content: center !important;
    }
}
@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.2rem !important; /* bigger */
        line-height: 1.2 !important;
        white-space: nowrap !important; /* forces single line */
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
}



