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

html {
    scroll-behavior: smooth;
}

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

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #3c3c3c 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: pulse 3s ease-in-out infinite;
}

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

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(10px);
}

.logo-nav img {
    height: 40px; /* Much smaller navbar logo */
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff4d00;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
}

.logo-hero {
    animation: fadeInDown 1s ease-out;
    margin-bottom: 20px; /* Much smaller gap */
}

.logo-hero img {
    height: 200px; /* Much smaller hero logo */
}

h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.tagline {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff4d00;
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 77, 0, 0.3);
}

.btn-primary:hover {
    background: #e64400;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 77, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #3c3c3c;
    transform: translateY(-3px);
}

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

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

.features {
    padding: 100px 50px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 70px;
    color: #3c3c3c;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4d00, #ff7700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3c3c3c;
}

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

.how-it-works {
    padding: 100px 50px;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
}

.steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.step {
    display: flex;
    align-items: center;
    gap: 50px;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 100px;
    height: 100px;
    background: #ff4d00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #3c3c3c;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.cta-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #3c3c3c 0%, #1a1a1a 100%);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #e0e0e0;
}

footer {
    background: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 30px;
}

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

    .tagline {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .step {
        flex-direction: column !important;
        text-align: center;
    }

    nav {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .logo-nav img {
        height: 30px; /* Much smaller on mobile */
    }

    .logo-hero img {
        height: 120px; /* Much smaller on mobile */
    }
}
