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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #4A3728;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5EFE6 0%, #E8B870 100%);
    padding: 40px 0 50px 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.title-logo {
    height: 120px;
    width: auto;
}

.footer-logo {
    height: 80px;
    width: auto;
    padding-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    color: #4A3728;
    margin: 0 auto;
    max-width: 720px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 22px;
    color: #4A3728;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-description {
    font-size: 18px;
    color: #4A3728;
    margin-bottom: 32px;
    opacity: 0.75;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #8B6F47;
    color: white;
    border: 2px solid #E8B870;
}

.btn-primary:hover {
    background: #4A3728;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 111, 71, 0.4);
}

.btn-secondary {
    background: white;
    color: #8B6F47;
    border: 2px solid #8B6F47;
}

.btn-secondary:hover {
    background: #8B6F47;
    color: white;
}

/* Feature Showcase Sections */
.feature-showcase {
    padding: 100px 0;
    background: white;
}

.feature-showcase.alt {
    background: #F5EFE6;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-content.reverse {
    direction: rtl;
}

.showcase-content.reverse > * {
    direction: ltr;
}

.showcase-text h2 {
    font-size: 42px;
    color: #4A3728;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.showcase-text p {
    font-size: 18px;
    color: #4A3728;
    opacity: 0.85;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.feature-list li {
    font-size: 17px;
    color: #4A3728;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.5s ease;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.feature-list li.animated {
    opacity: 1;
    transform: translateX(0);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B6F47;
    font-weight: bold;
    font-size: 18px;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-list li.animated:before {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.showcase-mockup {
    display: flex;
    justify-content: center;
}

.mockup-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: white;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #4A3728;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #F5EFE6 0%, #E8B870 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-text {
    font-size: 20px;
    text-align: center;
    color: #4A3728;
    opacity: 0.6;
    line-height: 1.6;
}

.screen-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* How It Works */
.how-it-works {
    background: white;
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    color: #4A3728;
    margin-bottom: 60px;
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B6F47, #E8B870);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 5px 20px rgba(139, 111, 71, 0.3);
}

.step h3 {
    color: #4A3728;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.step p {
    color: #4A3728;
    opacity: 0.8;
    font-size: 16px;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #8B6F47 0%, #4A3728 100%);
    padding: 60px 0 80px 0;
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 34px;
    color: white;
    margin-bottom: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.final-cta p {
    font-size: 20px;
    color: #E8B870;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: #4A3728;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer p {
    opacity: 0.8;
    font-size: 14px;
}

footer a {
    color: #E8B870;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #F5EFE6;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .showcase-content.reverse {
        direction: ltr;
    }

    .showcase-mockup {
        order: 2;
    }

    .showcase-text {
        order: 1;
    }
}

@media (max-width: 768px) {

    .hero h1 {
        font-size: 34px;
    }

    .hero-tagline {
        font-size: 17px;
    }

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

    .showcase-text h2 {
        font-size: 32px;
    }

    .showcase-text p {
        font-size: 16px;
    }

    .feature-showcase {
        padding: 60px 0;
    }

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

    .final-cta h2 {
        font-size: 32px;
    }

    .final-cta p {
        font-size: 16px;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
    }
}

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