 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
     line-height: 1.6;
     color: #1a1a1a;
     overflow-x: hidden;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Header */
 .header {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     padding: 1rem 0;
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     backdrop-filter: blur(10px);
 }

 .nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-size: 1.5rem;
     font-weight: 700;
     color: white;
     text-decoration: none;
 }

 .nav-links {
     display: flex;
     list-style: none;
     gap: 2rem;
 }

 .nav-links a {
     color: white;
     text-decoration: none;
     transition: opacity 0.3s;
 }

 .nav-links a:hover {
     opacity: 0.8;
 }

 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
 }

 .hamburger span {
     width: 25px;
     height: 3px;
     background: white;
     margin: 3px 0;
     transition: 0.3s;
 }

 /* Hero Section */
 .hero {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     padding: 120px 0 80px;
     min-height: 100vh;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="600" cy="700" r="80" fill="rgba(255,255,255,0.08)"/></svg>') no-repeat;
     background-size: cover;
 }

 .hero-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: center;
     position: relative;
     z-index: 2;
 }

 .hero-text h1 {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
     line-height: 1.2;
 }

 .hero-subtitle {
     color: #ffd700;
     font-size: 1.1rem;
     margin-bottom: 0.5rem;
     font-weight: 600;
 }

 .hero-text p {
     font-size: 1.2rem;
     margin-bottom: 2rem;
     opacity: 0.9;
 }

 .cta-button {
     display: inline-block;
     background: linear-gradient(45deg, #ff6b6b, #ee5a52);
     color: white;
     padding: 1rem 2rem;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     transition: transform 0.3s, box-shadow 0.3s;
     box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
 }

 .cta-button:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
 }

 .hero-image {
     text-align: center;
     position: relative;
 }

 .hero-image::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
     border-radius: 50%;
 }

 .hero-image svg {
     width: 100%;
     max-width: 400px;
     height: auto;
     position: relative;
     z-index: 2;
 }

 /* Experience Section */
 .experience {
     background: white;
     padding: 4rem 0;
     position: relative;
 }

 .experience-grid {
     display: grid;
     grid-template-columns: 1fr 2fr;
     gap: 3rem;
     align-items: center;
 }

 .experience-text h3 {
     color: #667eea;
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .experience-text p {
     font-style: italic;
     margin-bottom: 1.5rem;
     color: #666;
 }

 .client-info {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .client-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: linear-gradient(45deg, #667eea, #764ba2);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 600;
 }

 .stars {
     color: #ffd700;
     margin-top: 0.5rem;
 }

 .benefits-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 1.5rem;
 }

 .benefit-item {
     background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
     color: white;
     padding: 1.5rem;
     border-radius: 15px;
     text-align: center;
     transition: transform 0.3s;
 }

 .benefit-item:hover {
     transform: translateY(-5px);
 }

 /* About Section */
 .about {
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
     padding: 5rem 0;
 }

 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: center;
 }

 .about-text h2 {
     color: #333;
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .about-subtitle {
     color: #667eea;
     font-weight: 600;
     margin-bottom: 0.5rem;
 }

 .about-text p {
     margin-bottom: 2rem;
     color: #666;
 }

 .about-image {
     background: white;
     border-radius: 20px;
     padding: 2rem;
     text-align: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 /* Services Section */
 .services {
     padding: 5rem 0;
     background: white;
 }

 .section-title {
     text-align: center;
     margin-bottom: 3rem;
 }

 .section-title h2 {
     font-size: 2.5rem;
     color: #333;
     margin-bottom: 1rem;
 }

 .section-subtitle {
     color: #ff6b6b;
     font-weight: 600;
     font-size: 1.1rem;
}

 .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

 .service-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    flex-direction: column;
}


 .service-item h4 {
     margin-bottom: 1rem;
     font-size: 1.3rem;
 }

 /* Pricing Section */
 .pricing {
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
     padding: 5rem 0;
 }

 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .pricing-card {
     background: white;
     border-radius: 20px;
     padding: 2rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s;
     position: relative;
     overflow: hidden;
 }

 .pricing-card:hover {
     transform: translateY(-5px);
 }

 .pricing-card.featured {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
 }

 .pricing-card.featured::before {
     content: 'Most Popular';
     position: absolute;
     top: 20px;
     right: -30px;
     background: #ff6b6b;
     color: white;
     padding: 5px 40px;
     font-size: 0.8rem;
     font-weight: 600;
     transform: rotate(45deg);
 }

 .pricing-header h3 {
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
 }

 .pricing-header p {
     opacity: 0.8;
     margin-bottom: 1.5rem;
 }

 .price {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
 }

 .price span {
     font-size: 1rem;
     font-weight: 400;
 }

 .features {
     list-style: none;
     margin-bottom: 2rem;
 }

 .features li {
     padding: 0.5rem 0;
     position: relative;
     padding-left: 1.5rem;
 }

 .features li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: #4CAF50;
     font-weight: bold;
 }

 .pricing-button {
     width: 100%;
     padding: 1rem;
     border: none;
     border-radius: 50px;
     background: linear-gradient(45deg, #ff6b6b, #ee5a52);
     color: white;
     font-weight: 600;
     cursor: pointer;
     transition: transform 0.3s;
 }

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

 .pricing-card.featured .pricing-button {
     background: white;
     color: #667eea;
 }

 /* Testimonials */
 .testimonials {
     padding: 5rem 0;
     background: white;
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     margin-top: 3rem;
 }

 .testimonial-item {
     background: #f8f9ff;
     padding: 2rem;
     border-radius: 15px;
     position: relative;
 }

 .testimonial-item::before {
     content: '"';
     position: absolute;
     top: -10px;
     left: 20px;
     font-size: 4rem;
     color: #667eea;
     line-height: 1;
 }

 .testimonial-text {
     margin-bottom: 1.5rem;
     font-style: italic;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .testimonial-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: linear-gradient(45deg, #667eea, #764ba2);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 600;
 }

 /* CTA Section */
 .cta-section {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     padding: 5rem 0;
     text-align: center;
 }

 .cta-content h2 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .steps-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
     margin: 3rem 0;
 }

 .step-item {
     text-align: center;
 }

 .step-number {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     font-weight: 700;
     margin: 0 auto 1rem;
 }

 .step-item h3 {
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
 }

 /* Features Grid */
 .features-section {
     padding: 5rem 0;
     background: #f8f9ff;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .feature-card {
     background: white;
     padding: 2rem;
     border-radius: 15px;
     text-align: center;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s;
 }

 .feature-card:hover {
     transform: translateY(-5px);
 }

 .feature-icon {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: linear-gradient(45deg, #667eea, #764ba2);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     color: white;
     font-size: 2rem;
 }

 /* Blog Section */
 .blog {
     padding: 5rem 0;
     background: white;
 }

 .blog-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .blog-card {
     background: white;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s;
 }

 .blog-card:hover {
     transform: translateY(-5px);
 }

 .blog-image {
     height: 200px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 3rem;
 }

 .blog-content {
     padding: 1.5rem;
 }

 .blog-meta {
     display: flex;
     gap: 1rem;
     margin-bottom: 1rem;
     font-size: 0.9rem;
     color: #666;
 }

 .blog-title {
     font-size: 1.3rem;
     margin-bottom: 1rem;
     color: #333;
 }

 .read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.25rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.contact-form label {
    font-size: 0.95rem;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    outline: none;
    background: #fafbff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #8aa1ff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    background: #fff;
}

.contact-submit {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.25);
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.35);
}


.contact-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
}

.contact-social {
    display: flex;
    gap: 0.75rem;
    margin: 0.5rem 0 0.25rem;
}

.contact-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f4ff;
    color: #5b6bff;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #e6e9ff;
}

.contact-divider {
    height: 1px;
    background: #eee;
    margin: 1rem 0;
}

.contact-block h4 {
    margin-bottom: 0.35rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}


/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}