@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

:root {
    --primary: #0c3c3c;
    --secondary: #2ee5e3;
    --dark: #0a2f2f;
    --light-bg: #f8fafb;
}

body {
    overflow-x: hidden;
}

.gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #26c9c9 100%);
}

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

.section-padding {
    padding: 120px 0;
}

.section-padding-sm {
    padding: 80px 0;
}

/* Navigation */
.nav-blur {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(12, 60, 60, 0.08);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Buttons */
.btn-primary {
    background: var(--secondary);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(46, 229, 227, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(46, 229, 227, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

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

/* Cards */
.card-modern {
    background: white;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(12, 60, 60, 0.08);
}

.card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(12, 60, 60, 0.12);
    border-color: var(--secondary);
}

.card-problem {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    border-left: 4px solid var(--secondary);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.card-problem:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(12, 60, 60, 0.1);
}

/* Feature Icons */
.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 28px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.card-modern:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Dashboard Preview */
.dashboard-showcase {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(12, 60, 60, 0.25);
    border: 1px solid rgba(46, 229, 227, 0.2);
    position: relative;
}

.dashboard-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(12, 60, 60, 0.05) 100%);
    pointer-events: none;
}

/* Stats */
.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* Brand Logos */
.brand-logo {
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
    height: 40px;
    object-fit: contain;
}

.brand-logo:hover {
    filter: grayscale(0%) opacity(1);
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(12, 60, 60, 0.1);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(12, 60, 60, 0.06);
    transition: all 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(46, 229, 227, 0.04);
}

/* Testimonials */
.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(12, 60, 60, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(12, 60, 60, 0.12);
    border-color: var(--secondary);
}

/* Pricing */
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    border: 2px solid rgba(12, 60, 60, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.popular {
    border-color: var(--secondary);
    box-shadow: 0 20px 60px rgba(46, 229, 227, 0.2);
    transform: scale(1.05);
}

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

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

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

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

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Hero Particles */
.hero-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(46, 229, 227, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-gradient::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 229, 227, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
}

.badge-primary {
    background: rgba(46, 229, 227, 0.1);
    color: var(--primary);
    border: 1px solid rgba(46, 229, 227, 0.3);
}

/* Step Counter */
.step-counter {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 12px 30px rgba(46, 229, 227, 0.3);
}

/* Metric Badge */
.metric-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--secondary);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-top: 16px;
}

/* Logo Container */
.logo-img {
    height: 40px;
    width: auto;
}