/* style.css */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #ffcc80 0%, #ff8a65 100%);
    color: #4f4f4f;
    overflow-x: hidden;
}

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

.header {
    padding: 40px 0;
    text-align: center;
}

.header h1 {
    font-family: 'Lora', serif;
    font-size: 4em;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 0;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    text-align: left;
    gap: 40px;
}

.hero-text {
    max-width: 50%;
}

.hero-text h2 {
    font-size: 2.5em;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #ff7043;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1e1e1e;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #ffcc80 0%, #ff8a65 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Lora', serif;
    font-size: 5em;
    font-weight: 500;
}

.features {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.features h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    padding: 20px;
}

.feature-item i {
    font-size: 3em;
    color: #ff8a65;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer {
    text-align: center;
    padding: 30px 0;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        max-width: 100%;
    }
    .header h1 { font-size: 3em; }
    .hero-text h2 { font-size: 2em; }
}
