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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #0B0E14;
    color: #F8FAFC;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Navigation */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 14, 20, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(248, 250, 252, 0.08);
    z-index: 1000;
}

.nav-brand .brand-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.nav-link {
    font-size: 15px;
    color: #94A3B8;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #F8FAFC;
}

.btn-primary-small {
    padding: 8px 20px;
    background: #38BDF8;
    color: #0B0E14;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-primary-small:hover {
    background: #22D3EE;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(180deg, #0B0E14 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1400px;
    height: 1400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 48px 80px;
    position: relative;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #F8FAFC 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

.btn-primary {
    padding: 14px 32px;
    background: #38BDF8;
    color: #0B0E14;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #22D3EE;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(56, 189, 248, 0.3);
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: #F8FAFC;
    border: 1px solid rgba(248, 250, 252, 0.2);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: rgba(248, 250, 252, 0.4);
    background: rgba(248, 250, 252, 0.05);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #38BDF8;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #64748B;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 480px;
}

.visual-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(248, 250, 252, 0.08);
    border-radius: 12px;
    padding: 20px 24px;
    transition: transform 0.3s;
}

.visual-card:hover {
    transform: translateY(-4px);
}

.card-1 {
    top: 40px;
    left: 40px;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 180px;
    right: 60px;
    animation: float 3s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 60px;
    left: 100px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 3s ease-in-out infinite 2s;
}

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

.card-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.card-text {
    font-size: 16px;
    font-weight: 600;
    color: #F8FAFC;
    margin-bottom: 4px;
}

.card-time {
    font-size: 12px;
    color: #64748B;
}

.card-status {
    font-size: 12px;
    color: #4FD1C5;
    background: rgba(79, 209, 197, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 8px;
}

.card-metric {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 12px;
    color: #64748B;
    margin-bottom: 4px;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #4FD1C5;
}

.metric-badge {
    font-size: 12px;
    font-weight: 600;
    color: #4FD1C5;
    background: rgba(79, 209, 197, 0.15);
    padding: 4px 12px;
    border-radius: 6px;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #0F172A;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: #64748B;
    text-align: center;
    margin-bottom: 64px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.feature-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(248, 250, 252, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-highlight {
    border-color: rgba(56, 189, 248, 0.3);
    background: rgba(30, 41, 59, 0.6);
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #F97316, #F59E0B);
    color: #FFF;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 15px;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 14px;
    color: #64748B;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4FD1C5;
    font-weight: 700;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: #0B0E14;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.pricing-card {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(248, 250, 252, 0.08);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.2);
}

.pricing-featured {
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(30, 41, 59, 0.5);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.1);
}

.pricing-ribbon {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #38BDF8, #22D3EE);
    color: #0B0E14;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(248, 250, 252, 0.08);
}

.pricing-title {
    font-size: 18px;
    font-weight: 600;
    color: #94A3B8;
    margin-bottom: 16px;
}

.pricing-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pricing-rate {
    font-size: 48px;
    font-weight: 700;
    color: #38BDF8;
}

.pricing-addon {
    font-size: 48px;
    font-weight: 700;
    color: #F97316;
}

.pricing-body {
}

.pricing-desc {
    font-size: 15px;
    color: #64748B;
    margin-bottom: 20px;
}

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

.pricing-features li {
    font-size: 14px;
    color: #94A3B8;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4FD1C5;
    font-weight: 700;
    font-size: 16px;
}

.pricing-penalties {
    list-style: none;
    padding: 0;
}

.pricing-penalties li {
    font-size: 14px;
    color: #94A3B8;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.pricing-penalties li::before {
    content: '!';
    position: absolute;
    left: 0;
    color: #F97316;
    font-weight: 700;
    font-size: 16px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 50%;
    font-size: 12px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(34, 211, 238, 0.05) 100%);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(248, 250, 252, 0.02) 0px, transparent 1px, transparent 40px, rgba(248, 250, 252, 0.02) 41px),
        repeating-linear-gradient(90deg, rgba(248, 250, 252, 0.02) 0px, transparent 1px, transparent 40px, rgba(248, 250, 252, 0.02) 41px);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #38BDF8, #22D3EE);
    color: #0B0E14;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 12px 32px rgba(56, 189, 248, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(56, 189, 248, 0.4);
}

/* Footer */
.footer {
    padding: 60px 0 32px;
    background: #0B0E14;
    border-top: 1px solid rgba(248, 250, 252, 0.08);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 48px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.footer-desc {
    font-size: 14px;
    color: #64748B;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-group {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: #F8FAFC;
    margin-bottom: 16px;
}

.footer-link {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #38BDF8;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(248, 250, 252, 0.06);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 14px;
    color: #475569;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 80px 32px 60px;
    }

    .hero-right {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .feature-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 32px;
    }

    .nav-bar {
        padding: 16px 24px;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-desc {
        font-size: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        padding: 0 24px;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

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

    .feature-card,
    .pricing-card {
        padding: 24px;
    }

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