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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
    padding-top: 70px; /* Reduced from 80px */
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(248, 248, 248, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 2rem;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.app-store-link:hover {
    color: #1a1a1a;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.btn-header {
    padding: 0.5rem 1.5rem;
    font-size: 0.9375rem;
}

.app-store-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #f8f8f8;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.heading-line-1 {
    display: block;
    width: 100%;
    text-align: center;
}

.heading-line-2 {
    display: block;
    text-align: center;
}

.accent-text {
    background: linear-gradient(135deg, #F97068 0%, #FF8C7A 50%, #FFA08C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content > p {
    font-size: clamp(1.375rem, 3vw, 2rem);
    color: #999;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid #d0d0d0;
    background-color: #f5f5f5;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #F97068 0%, #FF8C7A 100%);
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF8C7A 0%, #F97068 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 112, 104, 0.3);
}

.btn-secondary {
    color: #999;
}

.btn-secondary:hover {
    background-color: #ebebeb;
    border-color: #c0c0c0;
    color: #666;
    transform: translateY(-2px);
}

/* Product Image */
.product-image {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.product-image img {
    max-width: 100%;
    height: auto;
    width: clamp(400px, 100vw, 800px);
    filter: none;
    mask-image: 
        linear-gradient(to bottom, 
            rgba(0,0,0,1) 0%, 
            rgba(0,0,0,1) 70%, 
            rgba(0,0,0,0.8) 85%, 
            rgba(0,0,0,0) 100%),
        linear-gradient(to left, 
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,0.8) 5%,
            rgba(0,0,0,1) 15%,
            rgba(0,0,0,1) 100%);
    mask-composite: intersect;
    -webkit-mask-image: 
        linear-gradient(to bottom, 
            rgba(0,0,0,1) 0%, 
            rgba(0,0,0,1) 70%, 
            rgba(0,0,0,0.8) 85%, 
            rgba(0,0,0,0) 100%),
        linear-gradient(to left, 
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,0.8) 5%,
            rgba(0,0,0,1) 15%,
            rgba(0,0,0,1) 100%);
    -webkit-mask-composite: source-in;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
}

.how-it-works-content {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

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

/* Footer */
footer {
    background-color: #f8f8f8;
    padding: 2rem 1rem;
    border-top: 1px solid #e0e0e0;
}

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

.footer-content p {
    color: #666;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .header {
        padding: 0.75rem 1.5rem;
    }

    .header-actions {
        gap: 1rem;
    }

    .app-store-link {
        font-size: 0.875rem;
    }

    .logo {
        width: 36px;
        height: 36px;
    }

    .company-name {
        font-size: 1.125rem;
    }

    .btn-header {
        padding: 0.5rem 1.5rem;
        font-size: 0.9375rem;
    }

    .hero {
        min-height: 85vh;
        padding: 1.5rem;
    }

    h1 {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 0.5rem;
    }

    .hero-content > p {
        margin-bottom: 1.75rem;
    }

    .cta-buttons {
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.875rem;
    }

    .btn-secondary {
        display: none;
    }

    .product-image {
        margin-top: 1.5rem;
    }

    .how-it-works {
        padding: 3rem 1.5rem;
    }

    .how-it-works h2 {
        margin-bottom: 2rem;
    }

    .steps {
        gap: 2rem;
    }

    .step {
        padding: 1.5rem 1rem;
    }

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

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 0.5rem;
    }

    .company-name {
        font-size: 1rem;
    }

    .header-actions {
        gap: 0.75rem;
    }

    .btn-header {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }

    .app-store-link {
        font-size: 0.8125rem;
    }

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