* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

body {
    background-color: #faf7f2;
    color: #1e2a3a;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    background: linear-gradient(145deg, #2b2b2b 0%, #3c3c3c 100%);
    color: #fff5e6;
    text-align: center;
    padding: 70px 24px 80px;
    border-bottom: 6px solid #f1c40f;
}

.main-title {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.sub-title {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-weight: 300;
}

.cta-solo {
    margin-bottom: 25px;
}

.btn-platform {
    display: inline-block;
    background-color: #f1c40f;
    color: #1e1e1e;
    font-size: 1.9rem;
    font-weight: 700;
    padding: 18px 60px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 12px 22px -8px rgba(241, 196, 15, 0.4);
    transition: 0.2s;
    border: 2px solid #f1c40f;
    letter-spacing: 2px;
}

.btn-platform:hover {
    background-color: transparent;
    color: #f1c40f;
    border-color: #f1c40f;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-tg, .btn-wa {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 14px 42px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
}

.btn-tg:hover {
    background-color: #0088cc;
    border-color: #0088cc;
}

.btn-wa:hover {
    background-color: #25D366;
    border-color: #25D366;
}

.section {
    padding: 80px 0;
    border-bottom: 1px solid #e0d6cc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #3a2c1f;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #b38b5f;
    margin: 20px auto 0;
}

.graphic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.graphic-item {
    background: #fffcf8;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -8px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.graphic-item:hover {
    transform: translateY(-8px);
}

.graphic-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 6/4;
}

.graphic-item h3 {
    font-size: 1.8rem;
    margin: 20px 24px 8px;
    color: #2b4b5c;
}

.graphic-item p {
    margin: 0 24px 30px;
    color: #3a4a5a;
    font-size: 1.1rem;
}

.showcase {
    background-color: #f2ebe2;
}

.showcase-desc {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #4e3f30;
}

.showcase-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-align: center;
    padding-bottom: 15px;
}

.showcase-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.showcase-card p {
    margin-top: 12px;
    font-weight: 600;
    font-size: 1.15rem;
    color: #2d2d2d;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    background: #ffffffcc;
    backdrop-filter: blur(4px);
    padding: 20px 25px;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #2d1f12;
    box-shadow: 0 6px 16px #e2d3c0;
    text-align: center;
    border: 1px solid #dac09a;
}

.graphic-reverse .graphic-grid.reverse {
    direction: rtl;
}

.graphic-reverse .graphic-item {
    direction: ltr;
}

.origin {
    background: #fff3e0;
}

.origin-text {
    max-width: 950px;
    margin: 0 auto 35px;
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.7;
    color: #2f2f2f;
}

.origin-flags {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 1.8rem;
    font-weight: 400;
    color: #7d5d3a;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-item {
    background: #ffffffd9;
    padding: 30px 25px;
    border-radius: 40px 16px 40px 16px;
    box-shadow: 0 14px 28px #cfb79e;
    font-style: italic;
    font-size: 1.1rem;
    color: #1f2c39;
    border: 1px solid #e7cfb5;
}

.testi-item span {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: #8b6f50;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0 50px;
    flex-wrap: wrap;
}

.step {
    background: #3e2f21;
    color: #f8efde;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 500;
    box-shadow: 0 10px 0 #1e150f;
}

.bottom-cta {
    text-align: center;
}

.why-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.why-list li {
    font-size: 1.3rem;
    padding: 15px 30px;
    margin-bottom: 16px;
    background: #f2e2d2;
    border-radius: 60px;
    color: #2a3b44;
    border-left: 8px solid #b38b5f;
}

.seo-closing {
    background: #cbb99f;
    color: #1e2c39;
    text-align: center;
}

.closing-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.8;
}

.footer {
    background: #1a1a1a;
    color: #bbaa99;
    padding: 40px 0;
    text-align: center;
    font-size: 0.95rem;
}

.footer-links a {
    color: #f1c40f;
    text-decoration: none;
    margin: 0 8px;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .graphic-grid, .showcase-row, .features-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .showcase-row {
        gap: 20px;
    }
    .main-title {
        font-size: 2.4rem;
    }
    .btn-platform {
        font-size: 1.5rem;
        padding: 15px 30px;
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
}