/* ============================================
   Bluevy Landing Page — Main Stylesheet
   ============================================ */

* { font-family: 'Poppins', sans-serif; }

@keyframes pulse-btn {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(234,88,12,0.5); }
    50% { transform: scale(1.03); box-shadow: 0 0 0 12px rgba(234,88,12,0); }
}

@keyframes blink-banner {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes float-card {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.pulse-btn { animation: pulse-btn 2s ease-in-out infinite; }
.blink-banner { animation: blink-banner 1.5s ease-in-out infinite; }
.float-card { animation: float-card 4s ease-in-out infinite; }
html { scroll-behavior: smooth; }

body {
    font-size: 23px;
    line-height: 1.7;
}

/* Larger base typography — override Tailwind defaults (with !important to beat CDN) */
.text-xs { font-size: 1rem !important; }
.text-sm { font-size: 1.25rem !important; }
.text-base { font-size: 1.375rem !important; }
.text-lg { font-size: 1.5rem !important; }
.text-xl { font-size: 1.75rem !important; }
.text-2xl { font-size: 2.125rem !important; }
.text-3xl { font-size: 2.5rem !important; }
.text-4xl { font-size: 3.5rem !important; }
.text-5xl { font-size: 4.5rem !important; }
.text-6xl { font-size: 5.25rem !important; }
.text-7xl { font-size: 6rem !important; }

.gradient-text {
    background: linear-gradient(to right, #fb923c, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Most Popular Card Glow */
.pricing-popular {
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.15), 0 0 80px rgba(249, 115, 22, 0.05);
}

/* Card Depth & Hover */
.card-depth {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-depth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Glow Text */
.glow-orange {
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Fix */
#mobile-menu {
    background: #08090F !important;
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}
#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}
.mobile-menu-link {
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateY(-10px);
}
#mobile-menu.open .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu-link:nth-child(5) { transition-delay: 0.25s; }

/* Smooth Scrolling for Section Nav */
.section-link {
    scroll-margin-top: 100px;
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
}
.form-success.show {
    display: block;
    animation: successBounce 0.5s ease;
}
@keyframes successBounce {
    0% { transform: scale(0.5) translateY(20px); }
    100% { transform: scale(1) translateY(0); }
}
.form-success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    animation: checkmark 0.4s ease-out 0.3s both;
}
@keyframes checkmark {
    0% { transform: scale(0) rotate(-45deg); }
    50% { transform: scale(1.2) rotate(0deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Confetti Particle */
.confetti {
    position: fixed;
    top: -10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: confettiFall 3s ease-out forwards;
}
@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Pricing Card Specifics */
.pricing-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card:hover {
    transform: translateY(-4px);
}

/* Trust Badge Pulse */
.badge-pulse {
    position: relative;
}
.badge-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 2px solid rgba(249, 115, 22, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0; }
}

/* Section Navigation Sticky Bar */
.section-nav {
    position: sticky;
    top: 72px;
    z-index: 40;
    background: rgba(8, 9, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 0;
    display: none;
}
.section-nav.visible {
    display: block;
}
.section-nav-inner {
    display: flex;
    align-items: center;
    gap: 2px;
    overflow-x: auto;
    padding: 0 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
}
.section-nav-inner::-webkit-scrollbar { display: none; }
.section-nav-link {
    flex-shrink: 0;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}
.section-nav-link:hover {
    color: #f97316;
    background: rgba(249, 115, 22, 0.1);
}
.section-nav-link.active {
    color: #f97316;
    background: rgba(249, 115, 22, 0.15);
}
@media (max-width: 767px) {
    .section-nav {
        top: 64px;
        padding: 4px 0;
    }
    .section-nav-inner {
        justify-content: flex-start;
        gap: 1px;
    }
    .section-nav-link {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
}

/* DFY Description Collapse */
.dfy-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
}
.dfy-desc.expanded {
    -webkit-line-clamp: unset;
}
.dfy-toggle {
    font-size: 0.875rem;
    color: #f97316;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px 0 0;
    font-weight: 600;
    display: inline-block;
}
.dfy-toggle:hover { color: #fb923c; }

/* Light Mode — Complete Redesign */
.light-mode {
    /* Base background */
    background: #f8fafc !important;
}

/* Light mode containers — avoid blanket p,span overrides */
.light-mode .text-white { color: #111827 !important; }
.light-mode .text-gray-100 { color: #1f2937 !important; }
.light-mode .text-gray-200 { color: #374151 !important; }
.light-mode .text-gray-300 { color: #4b5563 !important; }
.light-mode .text-gray-400 { color: #6b7280 !important; }
.light-mode .text-gray-500 { color: #9ca3af !important; }
.light-mode .text-gray-600 { color: #9ca3af !important; }

/* Light mode cards */
.light-mode .bg-\[\#111220\] {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04) !important;
}
.light-mode .bg-\[\#0d0f1a\] {
    background: #f1f5f9 !important;
}
.light-mode .bg-black\/20 {
    background: rgba(0,0,0,0.03) !important;
}
.light-mode .bg-black\/40 {
    background: rgba(0,0,0,0.03) !important;
}
.light-mode .bg-white\/5 {
    background: rgba(0,0,0,0.02) !important;
}
.light-mode .border-white\/10 {
    border-color: #e5e7eb !important;
}
.light-mode .border-white\/5 {
    border-color: #e5e7eb !important;
}

/* Light mode gradient sections become alternating light shades */
.light-mode section[style*="linear-gradient"] {
    background: #f8fafc !important;
}
.light-mode section[style*="linear-gradient"]:nth-of-type(odd) {
    background: #ffffff !important;
}

/* Light mode pricing cards */
.light-mode .pricing-popular {
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.1), 0 0 80px rgba(249, 115, 22, 0.03) !important;
}

/* Light mode chat dashboard */
.light-mode .dashboard-header {
    background: linear-gradient(to right, #f1f5f9, #e2e8f0) !important;
    border-bottom: 1px solid #e5e7eb !important;
}
.light-mode .chat-bubble-ai {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.08)) !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
}
.light-mode .chat-bubble-customer {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(234, 88, 12, 0.08)) !important;
    border: 1px solid rgba(249, 115, 22, 0.2) !important;
}

/* Light mode input fields */
.light-mode input, .light-mode select, .light-mode textarea {
    background: #ffffff !important;
    border-color: #d1d5db !important;
    color: #111827 !important;
}
.light-mode input::placeholder {
    color: #9ca3af !important;
}

/* Light mode preserve orange accents */
.light-mode .text-orange-400, .light-mode .text-orange-500, .light-mode .text-orange-600 {
    color: #ea580c !important;
}
.light-mode .bg-orange-500, .light-mode .bg-orange-600 {
    background: #ea580c !important;
}
.light-mode .border-orange-500 {
    border-color: #ea580c !important;
}

/* Light mode gradient button */
.light-mode .from-orange-500 {
    --tw-gradient-from: #ea580c !important;
}
.light-mode .to-red-600 {
    --tw-gradient-to: #dc2626 !important;
}

/* Light mode green text */
.light-mode .text-emerald-400 {
    color: #059669 !important;
}
.light-mode .text-emerald-500 {
    color: #059669 !important;
}

/* Light mode header fixed nav */
.light-mode .fixed.top-0 {
    background: rgba(255,255,255,0.95) !important;
    border-bottom: 1px solid #e5e7eb !important;
}

/* Light mode footer */
.light-mode footer {
    background: #1f2937 !important;
}
.light-mode footer .text-gray-400 {
    color: #9ca3af !important;
}

/* Social Proof Toast Notifications */
.social-toast {
    position: fixed;
    bottom: 90px;
    left: 20px;
    z-index: 9998;
    background: #1a1d30;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 16px;
    max-width: 320px;
    width: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-toast.show {
    transform: translateX(0);
}
.social-toast-avatar {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: white;
}
.social-toast-text {
    flex: 1;
    min-width: 0;
}
.social-toast-text p {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.4;
    margin: 0;
}
.social-toast-text p strong {
    color: white;
}
.social-toast-text span {
    font-size: 12px; /* timestamp */
    color: #6b7280;
}

/* Exit-Intent Popup */
.exit-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}
.exit-overlay.open {
    display: flex;
    opacity: 1;
}
.exit-modal {
    background: #111220;
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 20px;
    padding: 32px 28px 28px;
    max-width: 440px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.exit-overlay.open .exit-modal {
    transform: scale(1) translateY(0);
}
.exit-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: none;
    color: #9ca3af;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.exit-modal-close:hover {
    background: rgba(255,255,255,0.15);
}
.exit-modal-icon {
    font-size: 56px;
    margin-bottom: 12px;
}
.exit-modal h3 {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1.3;
}
.exit-modal p {
    color: #9ca3af;
    font-size: 16px;
    margin: 0 0 20px;
    line-height: 1.5;
}
.exit-modal .exit-cta {
    display: block;
    background: linear-gradient(to right, #f97316, #dc2626);
    color: white;
    font-weight: 700;
    font-size: 17px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
    border: none;
    width: 100%;
}
.exit-modal .exit-cta:hover {
    opacity: 0.9;
}
.exit-modal .exit-skip {
    display: inline-block;
    margin-top: 14px;
    color: #6b7280;
    font-size: 14px;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}
.exit-modal .exit-skip:hover {
    color: #9ca3af;
}

/* Scroll-Triggered CTA Slide-In */
.scroll-cta {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) translateX(120%);
    z-index: 9996;
    background: linear-gradient(135deg, #f97316, #dc2626);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
    writing-mode: vertical-lr;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.scroll-cta.show {
    transform: translateY(-50%) translateX(0);
}
.scroll-cta:hover {
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
}

/* Sticky Bottom CTA (mobile) */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    background: rgba(8, 9, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 16px;
    display: none;
    gap: 10px;
    align-items: center;
}
.sticky-bottom-cta.show {
    display: flex;
}
.sticky-bottom-cta a {
    flex: 1;
    text-align: center;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.sticky-bottom-cta .cta-primary {
    background: linear-gradient(to right, #f97316, #dc2626);
    color: white;
}
.sticky-bottom-cta .cta-secondary {
    background: rgba(255,255,255,0.08);
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
}

/* Glass Card Effect */
.glass {
    background: rgba(17, 18, 32, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Card glow border on hover */
.card-glow {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-glow:hover {
    border-color: rgba(249, 115, 22, 0.3) !important;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.08);
}

/* Gradient Button Hover Effect */
.btn-gradient {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-gradient:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.3);
}

/* Chat Dashboard Bubbles */
.chat-bubble-ai {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.08));
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px 12px 12px 4px;
    padding: 10px 14px;
}
.chat-bubble-customer {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(234, 88, 12, 0.08));
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 12px 12px 4px 12px;
    padding: 10px 14px;
}
.dashboard-header {
    background: linear-gradient(to right, rgba(17, 18, 32, 0.8), rgba(13, 15, 26, 0.8));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 16px;
    border-radius: 12px 12px 0 0;
}

/* Video Modal */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.video-modal-overlay.open {
    display: flex;
}
.video-modal {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 1;
}
.video-modal-close:hover {
    opacity: 1;
}
.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Video thumbnail cards */
.video-thumb-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 9 / 16;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}
.video-thumb-card:hover {
    transform: scale(1.03);
}
.video-thumb-card .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.1) 100%);
    transition: background 0.3s;
}
.video-thumb-card:hover .play-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0) 100%);
}
.video-thumb-card .play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}
.video-thumb-card:hover .play-btn {
    transform: scale(1.1);
    background: #f97316;
}

/* Pricing feature list spacing */
.pricing-feature-item {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.pricing-feature-item i {
    margin-top: 3px;
    flex-shrink: 0;
}

/* Comparison table */
.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.compare-row:last-child {
    border-bottom: none;
}
.compare-cell {
    padding: 12px 16px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Industry Cards */
.industry-card {
    transition: all 0.3s ease;
}
.industry-card:hover {
    transform: translateY(-3px);
}

/* Process Steps */
.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.process-step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 17px;
    color: white;
}

/* Stats Card */
.stat-card {
    text-align: center;
    padding: 20px 16px;
}
.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(to right, #fb923c, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.stat-label {
    color: #9ca3af;
    font-size: 15px;
    margin-top: 4px;
}

/* Testimonial Card */
.testimonial-card {
    padding: 24px;
    border-radius: 16px;
    background: #111220;
    border: 1px solid rgba(255,255,255,0.06);
}
.testimonial-card .quote {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 16px;
    font-style: italic;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}
.testimonial-card .author-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: white;
}
.testimonial-card .author-info span {
    font-size: 14px;
    color: #6b7280;
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 0;
    background: none;
    border: none;
    color: white;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq-question:hover {
    color: #fb923c;
}
.faq-question i {
    transition: transform 0.3s;
    font-size: 20px;
    flex-shrink: 0;
}
.faq-question.open i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}
.faq-answer.open {
    max-height: 500px;
    padding-bottom: 18px;
}
.faq-answer p {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Form CTA Section */
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cta-form input, .cta-form select {
    width: 100%;
    padding: 16px 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 17px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.cta-form input:focus, .cta-form select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}
.cta-form input::placeholder {
    color: #6b7280;
}
.cta-form select option {
    background: #111220;
    color: white;
}
.cta-form .btn-submit {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    background: linear-gradient(to right, #f97316, #dc2626);
    color: white;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.cta-form .btn-submit:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

/* Partner Logo Strip */
.partner-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    opacity: 0.5;
}
.partner-strip img, .partner-strip span {
    filter: grayscale(100%);
    transition: filter 0.3s;
}
.partner-strip img:hover, .partner-strip span:hover {
    filter: grayscale(0%);
}

/* 3-tag feature list */
.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(249, 115, 22, 0.08);
    color: #fb923c;
    font-size: 15px;
    font-weight: 600;
}

/* Responsive Table Wrapper */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Toast and notification animation */
@keyframes toastIn {
    0% { transform: translateX(-120%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}
@keyframes toastOut {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-120%); opacity: 0; }
}

/* Mobile Overrides */
@media (max-width: 768px) {
    /* Mobile Typography Overrides — BIGGER FONTS */
    body { font-size: 20px; line-height: 1.6; }
    h1 { font-size: 2.8rem !important; line-height: 1.2 !important; }
    h2 { font-size: 2.2rem !important; line-height: 1.25 !important; }
    h3 { font-size: 1.7rem !important; }
    h4 { font-size: 1.5rem !important; }
    .text-sm { font-size: 1.15rem !important; }
    .text-xs { font-size: 1rem !important; }
    .text-base { font-size: 1.25rem !important; }
    .text-lg { font-size: 1.4rem !important; }
    .text-xl { font-size: 1.6rem !important; }
    .text-2xl { font-size: 1.9rem !important; }
    .text-3xl { font-size: 2.1rem !important; }
    /* Mobile Spacing */
    section { padding-top: 3rem !important; padding-bottom: 3rem !important; }
    section > div { padding-left: 1rem !important; padding-right: 1rem !important; }
    /* Card border radius */
    .bg-\[\#111220\] { border-radius: 12px !important; }
    /* Mobile CTA Button */
    .pulse-btn { font-size: 1.2rem !important; padding: 16px 28px !important; width: 100% !important; }

    /* Social toast mobile */
    .social-toast {
        bottom: 80px;
        left: 10px;
        max-width: 280px;
        padding: 10px 14px;
    }

    /* Exit modal mobile */
    .exit-modal {
        padding: 28px 20px 24px;
    }
    .exit-modal-icon {
        font-size: 40px;
    }
    .exit-modal h3 {
        font-size: 18px;
    }

    /* Scroll CTA hidden on mobile */
    .scroll-cta {
        display: none;
    }

    /* Video modal mobile */
    .video-modal {
        max-width: 320px;
    }

    /* Mobile spacing fixes for smaller screens */
    .compare-row {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .faq-question {
        font-size: 16px;
    }
    .faq-answer p {
        font-size: 15px;
    }
    .cta-form input, .cta-form select {
        font-size: 16px;
        padding: 14px 16px;
    }
    .pricing-feature-item {
        font-size: 15px;
    }
    .testimonial-card .quote {
        font-size: 15px;
    }
    .partner-strip {
        gap: 20px;
    }
    .process-step-number {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}
