/* Hero Section */
.hero {
    padding: 120px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 40%, #fefce8 100%);
}

.hero-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    color: #1c1917;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.6s ease-out;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #78716c;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.15s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.scroll-hint {
    margin-top: 3rem;
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.scroll-hint:hover {
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

/* Feature Showcase */
.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-block-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-block-image img {
    width: 160px;
    height: auto;
    opacity: 0.85;
}

.feature-block-text {
    flex: 1;
}

.feature-block-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1c1917;
}

.feature-block-text p {
    color: #78716c;
    line-height: 1.8;
    font-size: 1rem;
}

/* Security Section */
.security {
    padding: 80px 0;
    background: #fffbeb;
}

.security-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.security-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1c1917;
}

.security-content > p {
    color: #78716c;
    line-height: 1.7;
}

.security-trust-box {
    max-width: 480px;
    margin: 0 auto;
    padding: 1.5rem;
    border: 2px dashed #fde68a;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid #fde68a;
    font-size: 0.9rem;
    color: #374151;
}

.badge img {
    width: 20px;
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    background: white;
}

/* Story Cards */
.story-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.story-card {
    padding: 2rem;
    border-radius: 16px;
    background: white;
    border: 1px solid #f5f5f4;
    transition: all 0.3s ease;
}

.story-card:hover {
    border-color: #fde68a;
    box-shadow: 0 4px 16px rgba(146, 64, 14, 0.06);
}

.story-quote {
    font-size: 1rem;
    font-style: italic;
    color: #57534e;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.25rem;
    border-left: 3px solid #fde68a;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.story-author img {
    width: 40px;
    height: auto;
    border-radius: 50%;
}

.story-author h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1c1917;
    margin-bottom: 0.1rem;
}

.story-author p {
    color: #a8a29e;
    font-size: 0.8rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #fefce8;
    text-align: center;
}

.cta-ornament {
    width: 32px;
    height: 2px;
    background: #92400e;
    margin: 0 auto 2rem;
    opacity: 0.4;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1c1917;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #78716c;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .scroll-hint {
        margin-top: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .feature-block,
    .feature-block.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-block-text {
        text-align: center;
    }

    .story-cards {
        grid-template-columns: 1fr;
    }
}

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

    .feature-block-image img {
        width: 120px;
    }

    .feature-block-text h3 {
        font-size: 1.25rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }
}
