/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Keep default cursor visible */

:root {
    --heading-color: #161c2d;
    --text-color: #6E727D;
    --accent-color: #473bf0;
    --white-color: #ffffff;
    --primary-color: #161C2D;
    --secondary-color: #FFFFFF;
    --text-color-alt: #7A7A7A;
    --accent-color-alt: #007BFF;
    --gradient-primary: linear-gradient(135deg, #161C2D 0%, #2d3748 100%);
    --gradient-success: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    --shadow-light: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-heavy: 0 20px 40px rgba(0,0,0,0.15);
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #404040;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.2;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.elementor-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section */
.elementor-section {
    padding: 80px 0;
}

.elementor-section-full_width {
    width: 100%;
}

/* Grid */
.elementor-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: center;
}

.elementor-column {
    padding: 0 15px;
}

.elementor-col-33 {
    width: 33.333%;
}

.elementor-col-50 {
    width: 50%;
}

.elementor-col-100 {
    width: 100%;
}

/* Header */
.site-header {
    background: rgba(22, 28, 45, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    position: relative;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Neural Network Background for Header */
.neural-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    max-width: 150px;
    height: auto;
}

/* Navigation */
.elementor-nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.elementor-nav-menu a {
    color: white;
    font-weight: 600;
    padding: 8px 0;
    transition: color 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.elementor-nav-menu a:hover,
.elementor-nav-menu a.elementor-item-active {
    color: #007BFF;
}

/* Button */
.elementor-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--gradient-success);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.elementor-button i {
    font-size: 1.1rem;
}

.elementor-size-xs {
    padding: 12px 28px;
    font-size: 0.9rem;
}

.elementor-size-lg {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Login Icon */
.login-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.login-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.login-icon i {
    font-size: 1.2rem;
}

.login-icon span {
    display: none;
}

/* Mobile Login Button */
.mobile-login-btn {
    margin-top: 25px;
    text-align: center;
    padding: 0 10px;
}

.mobile-login-btn .login-icon {
    width: auto;
    height: auto;
    padding: 12px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    gap: 8px;
}

.mobile-login-btn .login-icon span {
    display: inline;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hide mobile login button on desktop */
@media (min-width: 769px) {
    .mobile-login-btn {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::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"><defs><radialGradient id="a"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23a)"/><circle cx="800" cy="400" r="200" fill="url(%23a)"/><circle cx="400" cy="800" r="180" fill="url(%23a)"/></svg>');
    opacity: 0.3;
    animation: floatBackground 20s ease-in-out infinite;
}

.hero-section::after {
    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"><defs><radialGradient id="b"><stop offset="0%" stop-color="rgba(0,123,255,0.05)"/><stop offset="100%" stop-color="rgba(0,123,255,0)"/></radialGradient></defs><circle cx="100" cy="100" r="80" fill="url(%23b)"/><circle cx="900" cy="300" r="120" fill="url(%23b)"/><circle cx="300" cy="700" r="100" fill="url(%23b)"/><circle cx="700" cy="900" r="90" fill="url(%23b)"/><circle cx="500" cy="200" r="70" fill="url(%23b)"/></svg>');
    opacity: 0.4;
    animation: floatBackground 25s ease-in-out infinite reverse;
}

/* Tech Canvas Background */
.tech-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatBackground {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-30px) rotate(0.5deg);
    }
}

.hero-section .elementor-container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-section h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255,255,255,0.95);
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 40px auto 0;
    justify-content: center;
    max-width: 800px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    display: block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.stat-number.animate {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-top: 10px;
}

/* Feature Box */
.feature-box {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color-alt);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.feature-box p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: var(--shadow-heavy);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--accent-color-alt);
}

/* Neural Network Background for Pricing */
.pricing-section {
    position: relative;
}

.pricing-neural-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.pricing-section .elementor-container {
    position: relative;
    z-index: 2;
}

/* Neural Network Background for CTA */
.cta-section {
    position: relative;
}

.cta-neural-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-section .elementor-container {
    position: relative;
    z-index: 2;
}

.pricing-badge {
    position: absolute;
    top: 32px;
    right: -50px;
    background: var(--gradient-success);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pricing-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--heading-color);
}

.pricing-price {
    text-align: center;
    margin-bottom: 35px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-color-alt);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
}

.pricing-features li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--heading-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent-color-alt);
    font-size: 1.3rem;
}

/* Testimonials */
/* Testimonial Section */
.testimonial-section {
    background: #f8f9fa;
    position: relative;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.testimonial-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonials Showcase */
.testimonials-showcase {
    position: relative;
    padding: 40px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    perspective: 1000px;
}

.testimonial-item {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item:hover {
    transform: translateY(-15px) rotateX(5deg);
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,123,255,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-item:hover .testimonial-card {
    box-shadow: 0 25px 50px rgba(0,123,255,0.15);
    border-color: rgba(0,123,255,0.2);
}

.testimonial-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-number {
    font-size: 0.9rem;
    opacity: 0.9;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border: 4px solid var(--accent-color);
    box-shadow: 0 10px 25px rgba(0,123,255,0.2);
    transition: all 0.3s ease;
}

.testimonial-item:hover .testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0,123,255,0.3);
}

.avatar-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color));
    opacity: 0;
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: -1;
}

.testimonial-item:hover .avatar-glow {
    opacity: 0.3;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.testimonial-title {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.8;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-stats {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: whitw;
    opacity: 0.8!important;
    /*opacity: 0.7;*/
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation */
.testimonials-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.nav-dots {
    display: flex;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
}

.nav-dot:hover {
    background: var(--accent-color);
    transform: scale(1.2);
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e9ecef;
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-arrow:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nav-arrow:disabled:hover {
    background: white;
    color: var(--accent-color);
    transform: none;
}

/* Animations */
@keyframes glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-item {
    animation: slide-in 0.6s ease-out;
}

.testimonial-item:nth-child(1) { animation-delay: 0.1s; }
.testimonial-item:nth-child(2) { animation-delay: 0.2s; }
.testimonial-item:nth-child(3) { animation-delay: 0.3s; }
.testimonial-item:nth-child(4) { animation-delay: 0.4s; }

/* Active testimonial highlighting */
.testimonial-item.active .testimonial-card {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0,123,255,0.2);
    border-color: rgba(0,123,255,0.3);
}

.testimonial-item.active .testimonial-avatar {
    transform: scale(1.15);
    box-shadow: 0 20px 40px rgba(0,123,255,0.4);
}

.testimonial-item.active .avatar-glow {
    opacity: 0.4;
}

.testimonial-item:not(.active) {
    opacity: 0.7;
    transform: scale(0.95);
}

.testimonial-item:not(.active):hover {
    opacity: 1;
    transform: scale(1.02) rotateX(5deg);
}

/* Ensure hover animation works even when moving between cards */
.testimonial-item:hover {
    transform: translateY(-15px) rotateX(5deg);
}

.testimonial-item:not(.active):hover {
    transform: scale(1.02) translateY(-15px) rotateX(5deg);
}

/* Progress Bar */
.progress-container {
    margin-bottom: 40px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    margin: 0 auto 15px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #28a745);
    border-radius: 10px;
    width: 0%;
    transition: width 0.6s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: progress-shine 2s ease-in-out infinite;
}

.progress-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.progress-text span:first-child {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.progress-text span:last-child {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Flip Card Styles */
.testimonial-card {
    background: transparent !important;
    border-radius: 25px;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    height: 400px;
    width: 100%;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.testimonial-item:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,123,255,0.1);
}

.card-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.card-back {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transform: rotateY(180deg);
}

/* Icon Styles */
.testimonial-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), #0056b3);
    box-shadow: 0 15px 35px rgba(0,123,255,0.3);
    transition: all 0.3s ease;
}

.testimonial-icon i {
    font-size: 3rem;
    color: white;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color));
    opacity: 0;
    animation: icon-glow-pulse 3s ease-in-out infinite;
    z-index: -1;
}

.testimonial-item:hover .icon-glow {
    opacity: 0.4;
}

@keyframes icon-glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}

/* Permanently flipped cards */
.testimonial-item.flipped .card-inner {
    transform: rotateY(180deg) !important;
}

.testimonial-item.flipped .flip-hint {
    display: none;
}

.testimonial-item.flipped .testimonial-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.3);
}

.testimonial-item.flipped .testimonial-icon i {
    color: white;
}

.flip-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    opacity: 0.7;
    font-size: 0.8rem;
    animation: hint-pulse 2s ease-in-out infinite;
}

.flip-hint i {
    font-size: 1.2rem;
}

.flip-hint span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes hint-pulse {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
}

/* FAQ */
.elementor-toggle {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.elementor-toggle:hover {
    box-shadow: var(--shadow-medium);
}

.elementor-toggle-title {
    background: #f8f9fa;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    color: var(--heading-color);
}

.elementor-toggle-title:hover {
    background: #e9ecef;
}

.elementor-toggle-title.elementor-active {
    background: var(--gradient-success);
    color: white;
}

.elementor-tab-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.elementor-tab-content.elementor-active {
    padding: 30px;
    max-height: 800px;
}

.elementor-tab-content p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.05rem;
}

.elementor-toggle-title i {
    transition: transform 0.3s;
    font-size: 1.2rem;
}

.elementor-toggle-title.elementor-active i {
    transform: rotate(180deg);
}

/* Footer */
.site-footer {
    background: var(--heading-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--accent-color-alt);
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.footer-copyright a {
    color: var(--accent-color-alt);
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2.5rem;
}

.mt-3 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Swiper */
.testimonial-swiper {
    padding: 30px 0 80px;
}

.swiper-pagination-bullet {
    background: #dee2e6;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color);
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: 600;
}

/* Mobile Menu */
.elementor-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .elementor-container {
        max-width: 1024px;
    }
}

@media (max-width: 768px) {
    .elementor-col-33,
    .elementor-col-50 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
        margin: 30px auto 0;
    }
    
    .elementor-nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #161C2D;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
        gap: 0;
    }
    
    .elementor-nav-menu.active {
        display: flex;
    }
    
    .elementor-nav-menu li {
        margin: 10px 0;
    }
    
    .elementor-menu-toggle {
        display: block;
    }
    
    .header-row {
        position: relative;
    }
    
    .header-buttons {
        display: none;
    }
    
    .testimonial-header h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-header p {
        font-size: 1.1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-name {
        font-size: 1.2rem;
    }
    
    .testimonial-title {
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-badge {
        top: -8px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-navigation {
        max-width: 300px;
    }
    
    .mobile-login-btn {
        display: block;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .pricing-price .amount {
        font-size: 3rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Section Backgrounds */
.bg-white {
    background: white;
}

.bg-light {
    background: #f8f9fa;
}

.bg-gradient {
    background: var(--gradient-primary);
    color: white;
}

.bg-gradient h2,
.bg-gradient h3 {
    color: white;
}

/* Hidden classes */
.elementor-hidden-desktop {
    display: none !important;
}

@media (max-width: 1024px) {
    .elementor-hidden-tablet {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .elementor-hidden-mobile {
        display: none !important;
    }
    
    .elementor-hidden-desktop {
        display: block !important;
    }
}

/* ========================================
   PAINEL DE CONTROLE DO FOGUETE
   ======================================== */

#foguete-painel {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: auto;
    min-width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0 كذلك, 0, 0, 0.05);
}

#foguete-painel.desativado {
    opacity: 0.6;
    border-color: #ef4444;
}

.painel-header {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: white;
    padding: 10px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 13px;
    font-weight: 600;
}

.painel-header i {
    font-size: 14px;
}

.compacto-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.compacto-status .compacto-value {
    font-size: 16px;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.painel-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.painel-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.painel-label {
    font-size: 10px;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.painel-value {
    font-size: 18px;
    font-weight: 700;
    color: #007BFF;
    font-family: 'Poppins', sans-serif;
}

.velocimetro-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    background: #f9fafb;
    border-radius: 8px;
    padding: 10px;
}

.velocimetro-svg {
    width: 100%;
    height: 100%;
    max-width: 220px;
    max-height: 140px;
}

.velocimetro-text {
    position: absolute;
    bottom: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #22c55e;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.velocimetro-text small {
    font-size: 10px;
    font-weight: 400;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.switch input:checked + .slider {
    background-color: #007BFF;
}

.switch input:checked + .slider:before {
    transform: translateX(20px);
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px #007BFF;
}

/* Estado recolhido */
#foguete-painel.recolhido {
    width: 250px;
}

#foguete-painel.recolhido .painel-content {
    display: none;
}

#foguete-painel.recolhido .painel-content-compacto {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

#foguete-painel .painel-content-compacto {
    display: none;
}

/* Botão de toggle */
.btn-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 12px;
    padding: 4px;
    margin-left: auto;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.btn-toggle:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Modo compacto */
.compacto-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.compacto-label {
    font-size: 9px;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
}

.compacto-value {
    font-size: 13px;
    font-weight: 700;
    color: #007BFF;
    font-family: 'Poppins', sans-serif;
}

.switch-compacto {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
}

.switch-compacto input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-compacto {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: 0.3s;
    border-radius: 20px;
}

.slider-compacto:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.switch-compacto input:checked + .slider-compacto {
    background-color: #007BFF;
}

.switch-compacto input:checked + .slider-compacto:before {
    transform: translateX(16px);
}

/* Responsivo */
@media (max-width: 768px) {
    #foguete-painel {
        width: 280px;
        bottom: 10px;
        left: 10px;
    }
    
    #foguete-painel.recolhido {
        width: 200px;
    }
    
    .painel-header {
        padding: 8px 10px;
        font-size: 11px;
    }
    
    .painel-content {
        padding: 10px;
        gap: 10px;
    }
    
    .painel-value {
        font-size: 16px;
    }
    
    .velocimetro-text {
        font-size: 12px;
    }
    
    .velocimetro-svg {
        max-width: 100px;
        max-height: 50px;
    }
}

