:root {
    --primary-color: #6b50a6;
    --background-color: #ffffff;
    --background-gradient: linear-gradient(135deg, #f8f8f8, #ffffff);
    --background-card: #f8f8f8;
    --background-offer: #eeeeee;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
}

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

.hero {
    padding: 80px 0;
    background: var(--background-gradient)
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 40px;
}

h1 {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--background-color);
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.hero-image {
    background: var(--background-offer);
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-weight: 600;
    color: #666;
    font-size: 22px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 18px;
}

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

.card {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 30px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.card p {
    color: #555;
}

.mockup-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.mockup {
    background: #efefef;
    border-radius: 15px;
    min-height: 250px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
    font-weight: 600;
    padding: 15px;
    max-width: 500px;
}

.mockup img {
    border-radius: 15px;
}

.offer {
    background: var(--primary-color);
    color: var(--background-color);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
}

.offer h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.price {
    font-size: 64px;
    font-weight: 800;
    margin: 30px 0;
}

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

.faq-item {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 15px;
}

.faq-item h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.faq-item p {
    color: #666;
}

footer {
    padding: 40px 0;
    text-align: center;
    color: #777;
    font-size: 14px;
}

@media(max-width:768px) {
    h1 {
        font-size: 38px;
    }

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

    .price {
        font-size: 48px;
    }
}