/* Optimized Home Page Styles - Swiftly Invoicing */

/* Global Styles */
body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    color: #f3f4f6 !important;
}

section, .container, .dashboard-preview, .features-section, .faq-section, .pricing-section {
    background: transparent !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff !important;
}

p, li, .feature-list, .accordion-body, .faq-header, .faq-section, .pricing-features, .pricing-header p {
    color: #e5e7eb !important;
}

/* Hero Section */
.hero {
    background: #000;
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 2.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(79, 70, 229, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.02) 50%, transparent 70%);
}

.hero-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #4f46e5;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border: none;
}

.hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.hero-btn.secondary {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* WhatsApp CTA Styling */
.whatsapp-cta {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    border: 2px solid #25d366;
    position: relative;
    overflow: hidden;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-cta::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.5s;
}

.whatsapp-cta:hover::before {
    left: 100%;
}

.whatsapp-cta:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

.hero-subtext {
    margin-top: 1.5rem;
    text-align: center;
}

.hero-subtext p {
    color: #9ca3af;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-subtext i {
    color: #25d366;
    font-size: 1.1rem;
}

/* WhatsApp feature buttons */
.whatsapp-feature-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    border: 2px solid #25d366;
    color: white;
    transition: all 0.3s ease;
}

.whatsapp-feature-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #111827;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    padding: 18px 10px 24px 10px;
    position: relative;
}

.wa-chat {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.wa-bubble {
    max-width: 85%;
    padding: 0.9rem 1.2rem;
    border-radius: 1.3em;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 0.1rem;
    word-break: break-word;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    white-space: normal;
    overflow-wrap: break-word;
}

.wa-bubble.user {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 0.4em;
}

.wa-bubble.swiftly {
    background: #23272f;
    color: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 0.4em;
    position: relative;
}

.wa-bubble.swiftly .wa-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    box-shadow: 0 1px 4px rgba(79,70,229,0.08);
    flex-shrink: 0;
}

.wa-bubble.swiftly .wa-avatar img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.wa-bubble .wa-time {
    font-size: 0.8rem;
    color: #a1a1aa;
    margin-left: 0.7rem;
    align-self: center;
    display: inline;
    white-space: nowrap;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.floating-element {
    position: absolute;
    min-width: 120px;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(79,70,229,0.12), 0 1.5px 4px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #fff 60%, #f3f4f6 100%);
    color: #4f46e5;
    border: 1.5px solid #e0e7ff;
    opacity: 0.95;
    animation: float 7s ease-in-out infinite;
}

.floating-element i {
    font-size: 1.3rem;
}

.floating-element:nth-child(1) { top: 8%; left: 8%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 18%; right: 10%; animation-delay: 1.5s; }
.floating-element:nth-child(3) { bottom: 18%; left: 12%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-18px) scale(1.07); }
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
}

.how-it-works-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.how-it-works-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works-header p {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.6;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    position: relative;
    z-index: 2;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(79, 70, 229, 0.12), 0 1.5px 4px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.step-icon {
    font-size: 3rem;
    color: #4f46e5;
    margin: 1rem 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.step-card p {
    color: #9ca3af;
    line-height: 1.6;
}

.dashboard-preview {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.dashboard-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.features-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.features-header p {
    font-size: 1.1rem;
    color: #e5e7eb;
    line-height: 1.6;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #4f46e5;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.feature-list li {
    color: #e5e7eb;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: #4f46e5;
    font-size: 1.25rem;
}

.feature-button {
    display: inline-block;
    background: #4f46e5;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-button:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.pricing-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-header p {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card.featured {
    background: rgba(79, 70, 229, 0.1);
    border-color: #4f46e5;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.3);
}

/* Integration card styling */
.pricing-card.integration-card {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    position: relative;
}

.pricing-card.integration-card:hover {
    transform: translateY(-8px);
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3);
}

.integration-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

.integration-card .pricing-card-header h3 {
    color: #10b981;
}

.integration-card .price .amount {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 600;
}

.inquiry-button {
    background: #10b981 !important;
    border: 2px solid #10b981;
    color: white;
}

.inquiry-button:hover {
    background: #059669 !important;
    border-color: #059669;
    transform: translateY(-2px);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price .period {
    font-size: 1rem;
    color: #9ca3af;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

.pricing-features li {
    color: #e5e7eb;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.pricing-features li:hover {
    color: white;
}

.pricing-features li i {
    color: #4f46e5;
    font-size: 1.25rem;
    background: rgba(79, 70, 229, 0.1);
    padding: 0.25rem;
    border-radius: 50%;
    min-width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-button {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.pricing-button::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.5s ease;
}

.pricing-button:hover {
    background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.pricing-button:hover::before {
    left: 100%;
}

.pricing-card.featured .pricing-button {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    color: #4f46e5;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.pricing-card.featured .pricing-button:hover {
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header p {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* FAQ Accordion - High Specificity to Override Bootstrap */
.faq-section .accordion {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-section .accordion-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 1rem !important;
    margin-bottom: 1rem !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-section .accordion-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(79, 70, 229, 0.3) !important;
    transform: translateY(-2px);
}

.faq-section .accordion-header {
    margin: 0 !important;
}

.faq-section .accordion-button {
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    padding: 1.5rem 2rem !important;
    text-align: left !important;
    width: 100% !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    border-radius: 1rem !important;
    box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(79, 70, 229, 0.1) !important;
    color: white !important;
    box-shadow: none !important;
}

.faq-section .accordion-button:focus {
    box-shadow: none !important;
    border-color: rgba(79, 70, 229, 0.3) !important;
    outline: none !important;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transition: transform 0.3s ease !important;
    filter: brightness(0) invert(1) !important;
}

.faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg) !important;
}

.faq-section .accordion-collapse {
    border: none !important;
}

.faq-section .accordion-body {
    background: transparent !important;
    color: #9ca3af !important;
    padding: 0 2rem 1.5rem !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
    border: none !important;
}

/* Additional Bootstrap Override Styles */
.faq-section .accordion-button.collapsed {
    background: transparent !important;
    color: white !important;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(79, 70, 229, 0.1) !important;
    color: white !important;
}

.faq-section .accordion-button:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
}

.faq-section .accordion-button:not(.collapsed):hover {
    background: rgba(79, 70, 229, 0.15) !important;
    color: white !important;
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #3730a3 50%, #4338ca 75%, #6366f1 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.1); }
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.03), transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: ctaRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes ctaRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button::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 {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    color: #4f46e5;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-benefits {
    margin-top: 2rem;
    text-align: center;
}

.cta-benefits p {
    color: #9ca3af;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-benefits i {
    color: #25d366;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 2rem; 
    }
    .hero h1 { font-size: 2.2rem; }
    .phone-mockup { width: 220px; height: 420px; }
    .wa-bubble { font-size: 0.95rem; padding: 0.7rem 0.9rem; max-width: 95%; }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-header h1 {
        font-size: 2rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .cta-content h1 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* FAQ Mobile Styles */
    .faq-section .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-section .accordion-button {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
    }
    
    .faq-section .accordion-body {
        padding: 0 1.5rem 1.25rem;
    }
}

@media (max-width: 600px) {
    .wa-bubble { 
        font-size: 0.55rem; 
        padding: 0.5rem 0.7rem; 
        max-width: 98%; 
    }
    .wa-chat { gap: 0.4rem; }
    
    .cta-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Hide secondary CTA button */
.cta-buttons .cta-button.secondary { 
    display: none !important; 
}

/* FAQ section spacing */
.faq-section {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
} 