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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 8px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ...existing code... */

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8B5CF6;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #8B5CF6, #F97316);
    border-radius: 1px;
}

.cta-button {
    background: linear-gradient(135deg, #8B5CF6, #F97316);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Hero shapes - STATIC VERSION */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.2;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #8B5CF6, #F97316);
    top: 10%;
    left: 70%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #F97316, #8B5CF6);
    bottom: 20%;
    right: 80%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #8B5CF6, #F97316);
    top: 60%;
    right: 10%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.typewriter {
    font-size: 60px;
    line-height: 1.1;
}

.typewriter-delay {
    font-size: 24px;
    line-height: 1.1;
}

.typewriter-delay-2 {
    font-size: 24px;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(135deg, #8B5CF6, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-photo {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #8B5CF6, #F97316);
    padding: 3px;
}

.hero-person-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
    display: block;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.feature-icon {
    font-size: 20px;
}

.feature-text {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

/* Project Form Section */
.project-form {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(249, 115, 22, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.form-subtitle {
    font-size: 18px;
    color: #b3b3b3;
    margin-bottom: 50px;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.form-container.revealed {
    opacity: 1;
    transform: translateY(0);
}

.form-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: 600;
}

.step.active {
    background: linear-gradient(135deg, #8B5CF6, #F97316);
    color: white;
}

.step-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 15px;
}

.form-section {
    text-align: left;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 16px;
    color: #b3b3b3;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    backdrop-filter: blur(5px);
}

.form-input:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.form-input::placeholder {
    color: #888;
}

.form-input[type="date"] {
    color: #ffffff;
    cursor: pointer;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.continue-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #8B5CF6, #F97316);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.continue-btn:hover .arrow {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.testimonials .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.testimonials .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #b3b3b3;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.counter {
    background: linear-gradient(135deg, #8B5CF6, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 24px;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.testimonial-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.testimonial-type,
.testimonial-date {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.testimonial-content {
    font-size: 14px;
    line-height: 1.6;
    color: #b3b3b3;
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-label {
    font-size: 12px;
    color: #888;
}

.rating-score {
    font-size: 16px;
    font-weight: 600;
    color: #8B5CF6;
}

/* Ready to Order Section */
.ready-order {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.1));
    text-align: center;
}

.ready-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.ready-subtitle {
    font-size: 18px;
    color: #b3b3b3;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.order-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #8B5CF6, #F97316);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.faq-description {
    font-size: 18px;
    color: #b3b3b3;
    line-height: 1.6;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(139, 92, 246, 0.02);
    padding-left: 10px;
    border-radius: 8px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
    user-select: none;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, #8B5CF6, #F97316);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
}

.faq-answer p {
    color: #b3b3b3;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 50px 0 30px;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-social,
.footer-contact {
    color: #b3b3b3;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 14px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
}

.tooltip {
    position: relative;
}

.tooltiptext {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    white-space: nowrap;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #8B5CF6, #F97316);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Typewriter Animation */
.typewriter {
    display: inline-block;
    border-right: 3px solid #8b5cf6;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.05em;
    animation: blink-caret 0.75s step-end infinite;
}

.typewriter-delay {
    display: inline-block;
    border-right: 3px solid #ffffff;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.05em;
    animation: blink-caret-delay 0.75s step-end infinite;
    opacity: 0;
}

.typewriter-delay-2 {
    display: inline-block;
    border-right: 3px solid #f97316;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.05em;
    animation: blink-caret-delay-2 0.75s step-end infinite;
    opacity: 0;
}

.typewriter-show {
    opacity: 1 !important;
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #8b5cf6;
    }
}

@keyframes blink-caret-delay {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #ffffff;
    }
}

@keyframes blink-caret-delay-2 {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #f97316;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 15px;
    }
    
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .typewriter {
        font-size: 32px;
        line-height: 1.1;
    }

    .typewriter-delay {
        font-size: 20px;
        line-height: 1.1;
    }

    .typewriter-delay-2 {
        font-size: 18px;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .nav {
        display: none;
    }
    
    .hero-photo {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
    
    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 75px;
        right: 15px;
    }
    
    .counter {
        font-size: 28px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ready-title,
    .faq-title {
        font-size: 28px;
    }
    
    .hero-features {
        justify-content: center;
        gap: 15px;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }
    
    .feature-item {
        flex: none;
        min-width: 200px;
        max-width: 280px;
        width: 100%;
        padding: 12px 20px;
        justify-content: center;
    }
    
    .feature-text {
        font-size: 13px;
    }
    
    .feature-icon {
        font-size: 18px;
    }
    
    .form-steps {
        margin-bottom: 30px;
    }
    
    .step-line {
        width: 40px;
        margin: 0 10px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .ready-subtitle,
    .faq-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding-top: 70px;
        padding-bottom: 30px;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .typewriter {
        font-size: 28px;
        line-height: 1.1;
    }

    .typewriter-delay {
        font-size: 18px;
        line-height: 1.1;
    }

    .typewriter-delay-2 {
        font-size: 16px;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .hero-photo {
        height: 200px;
        margin-bottom: 15px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .ready-title,
    .faq-title {
        font-size: 24px;
    }
    
    .testimonials .section-title {
        font-size: 28px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .feature-item {
        min-width: auto;
        max-width: 250px;
        width: 90%;
        padding: 10px 16px;
    }
    
    .feature-text {
        font-size: 12px;
    }
    
    .feature-icon {
        font-size: 16px;
    }
    
    .form-container {
        padding: 15px;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .order-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Additional Layout Fixes */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth reveal animations */
.testimonial-card,
.feature-item,
.form-container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.testimonial-card.revealed,
.feature-item.revealed,
.form-container.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Loading state */
body:not(.loaded) {
    overflow: hidden;
}

body:not(.loaded) .hero-content {
    opacity: 0;
    transform: translateY(50px);
}

body.loaded .hero-content {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* Improved form styling */
.form-input[type="date"] {
    color: #ffffff;
    cursor: pointer;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Better button states */
.cta-button,
.order-btn,
.continue-btn {
    position: relative;
    overflow: hidden;
}

.cta-button::before,
.order-btn::before,
.continue-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before,
.order-btn:hover::before,
.continue-btn:hover::before {
    left: 100%;
}

/* Improved hero section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Better testimonial cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.testimonial-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 20px;
}

/* Improved FAQ styling */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(139, 92, 246, 0.02);
    padding-left: 10px;
    border-radius: 8px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
    user-select: none;
}

/* Better footer */
.footer {
    padding: 50px 0 30px;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

/* Improved mobile navigation */
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    
    .nav-brand .logo {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .hero {
        padding-top: 60px;
        min-height: 90vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-photo {
        height: 250px;
    }
    
    .form-steps {
        margin-bottom: 20px;
    }
    
    .step {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-line {
        width: 30px;
        margin: 0 8px;
    }
}

/* Extra small screens */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .testimonial-title {
        font-size: 16px;
    }
    
    .testimonial-content {
        font-size: 12px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 8px;
    }
    
    .feature-item {
        padding: 8px 12px;
    }
    
    .feature-text {
        font-size: 12px;
    }
}

/* Print styles */
@media print {
    .floating-whatsapp,
    .scroll-top,
    .header {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-background,
    .shape {
        display: none !important;
    }
}
