* {
    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;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

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

.hero h1 {
    font-size: 52px;
    color: #4A3728;
    margin: 0;
    font-weight: 800;
    line-height: 1.2;
}

.hero-description {
    font-size: 20px;
    color: #4A3728;
    margin-bottom: 40px;
    opacity: 0.9;
    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;
}

/* Privacy Policy Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #fefefe;
    margin: 3% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    position: relative;
}

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

.modal-body {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.modal-body h1 {
    color: #4A3728;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.modal-body h2 {
    color: #8B6F47;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid #E8B870;
    padding-bottom: 8px;
}

.modal-body p {
    color: #4A3728;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-body ul li {
    color: #4A3728;
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 15px;
}

.modal-body ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-body ol li {
    color: #4A3728;
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 15px;
}

.modal-body a {
    color: #8B6F47;
    text-decoration: underline;
}

.modal-body a:hover {
    color: #4A3728;
}

.modal-body hr {
    border: none;
    border-top: 1px solid #E8B870;
    margin: 30px 0;
}

.close {
    color: #4A3728;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.close:hover,
.close:focus {
    color: #8B6F47;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }

    .modal-body {
        padding: 30px 20px;
        max-height: calc(95vh - 60px);
    }

    .modal-body h1 {
        font-size: 24px;
    }

    .modal-body h2 {
        font-size: 20px;
    }

    .close {
        font-size: 28px;
        right: 15px;
        top: 10px;
    }
}

/* 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-title-row {
        flex-direction: column;
        gap: 20px;
    }

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

    .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);
    }
}
