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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #333;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

nav a:hover {
    color: #333;
}

.cta-button {
    background: #333;
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    background: #000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out;
    color: #333;
}

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

/* Testimonial */
.testimonial {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 40px 60px;
    max-width: 900px;
    margin: 60px auto 0;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.3s both;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.highlight {
    color: #ff6b00;
    font-weight: 600;
}

/* Stats Section */
.stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff6b00;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
}

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

.feature-card {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
    cursor: pointer;
}

.feature-card:hover {
    background: #fff;
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 120px 40px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.cta-section h2 {
    font-size: 56px;
    margin-bottom: 30px;
    color: #333;
}

.cta-section p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    background: #ff6b00;
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.primary-btn:hover {
    background: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.secondary-btn {
    background: transparent;
    color: #333;
    padding: 16px 40px;
    border: 2px solid #333;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background: #333;
    color: #fff;
}

/* Footer */
footer {
    padding: 60px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    background: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #333;
}

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

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }

    .testimonial {
        padding: 30px;
    }

    .testimonial p {
        font-size: 16px;
    }

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

    .cta-section h2 {
        font-size: 36px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}