:root {
    --primary: #6b21a8;
    --primary-gradient: linear-gradient(135deg, #6b21a8 0%, #a855f7 100%);
    --secondary: #e11d48;
    --dark: #0f172a;
    --light: #f8fafc;
    --success: #22c55e;
    --gray: #64748b;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    color: #1e293b;
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { font-weight: 800; font-size: 1.5rem; color: var(--primary); display: flex; align-items: center; gap: 8px; }

/* Hero Section */
.hero {
    background: var(--primary-gradient);
    padding: 100px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}
.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}
.hero-areas {
    font-size: 0.9rem;
    margin-top: 30px;
    background: rgba(0,0,0,0.1);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
}

/* Buttons */
.btn-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}
.btn-wa { background: #25d366; color: white; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4); }
.btn-wa:hover { transform: translateY(-3px); background: #1eb956; }
.btn-tel { background: white; color: var(--primary); }
.btn-tel:hover { background: #f1f5f9; transform: translateY(-3px); }

/* Trust Badges */
.trust-badges {
    padding: 30px 0;
    background: white;
    border-bottom: 1px solid #f1f5f9;
}
.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.badge-item { display: flex; flex-direction: column; align-items: center; font-size: 0.9rem; font-weight: 600; color: var(--gray); }
.badge-item svg { margin-bottom: 8px; color: var(--primary); }

/* Sections */
section { padding: 90px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: var(--dark); margin-bottom: 15px; }
.section-title p { color: var(--gray); max-width: 700px; margin: 0 auto; }

/* Content Text */
.content-text { max-width: 900px; margin: 0 auto; font-size: 1.1rem; line-height: 1.8; color: #475569; }

/* Packages */
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.package-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.package-card.featured { border: 2px solid var(--primary); box-shadow: 0 20px 40px rgba(107, 33, 168, 0.1); }
.featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}
.price { font-size: 2.5rem; font-weight: 800; color: var(--dark); margin: 20px 0; }
.price span { font-size: 1rem; color: var(--gray); font-weight: 400; }
.package-features { list-style: none; padding: 0; margin-bottom: 30px; flex-grow: 1; }
.package-features li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }

/* Steps Section */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; margin-top: 40px; }
.step-item { position: relative; padding: 20px; }
.step-number { 
    width: 50px; height: 50px; background: var(--primary); color: white; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 20px; font-weight: 800; font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(107, 33, 168, 0.3);
}

/* Area List */
.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}
.area-item { background: white; padding: 15px 20px; border-radius: 12px; border: 1px solid #e2e8f0; font-weight: 600; transition: 0.3s; }
.area-item:hover { border-color: var(--primary); color: var(--primary); }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.testi-card { background: var(--light); padding: 30px; border-radius: 20px; position: relative; }
.testi-card p { font-style: italic; margin-bottom: 20px; }
.testi-author { font-weight: 700; color: var(--primary); font-size: 0.9rem; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e2e8f0; }
.faq-btn {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
}
.faq-content { padding-bottom: 20px; color: var(--gray); display: none; }

/* Footer */
footer { background: var(--dark); color: white; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; color: white; }
.footer-info p { margin-bottom: 10px; opacity: 0.7; font-size: 0.9rem; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1.1rem; }
    section { padding: 60px 0; }
}
