/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Attention bar animation */
@keyframes attention-flash {
    0%, 100% { background-color: #00A868; }
    50% { background-color: #00C77B; }
}

.bg-\[\#00A868\] {
    animation: attention-flash 2s infinite;
}

/* Slow pulse animation */
@keyframes pulse-slow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-pulse-slow {
    animation: pulse-slow 3s infinite;
}

/* Shadow effects */
.shadow-glow {
    box-shadow: 0 0 20px rgba(0, 199, 123, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    filter: drop-shadow(0 0 8px rgba(0, 199, 123, 0.3));
}

.shadow-glow:hover {
    box-shadow: 0 0 30px rgba(0, 199, 123, 0.2);
}

.shadow-neon {
    box-shadow: 0 0 20px rgba(0, 199, 123, 0.3),
                0 0 40px rgba(0, 199, 123, 0.2),
                0 0 60px rgba(0, 199, 123, 0.1);
}

/* Card hover animations */
.hover\:transform {
    transition: all 0.3s ease-in-out;
}

.hover\:transform:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 199, 123, 0.2);
}

/* Trust indicators hover effect */
.bg-\[\#111111\]:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease-in-out;
}

/* Text highlight effect */
.text-\[\#00C77B\] {
    text-shadow: 0 0 10px rgba(0, 199, 123, 0.3);
}

/* Background gradient animation */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bg-gradient-to-r {
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(90deg, #00A868, #00C77B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Button glow effect */
.bg-\[\#00C77B\] {
    position: relative;
    overflow: hidden;
}

.bg-\[\#00C77B\]:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 199, 123, 0.4) 0%, transparent 50%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
}

.bg-\[\#00C77B\]:hover:after {
    transform: scale(1);
}

/* Emoji animation */
@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.text-3xl {
    animation: bounce-subtle 2s infinite;
}

/* Price tag effect */
.line-through {
    position: relative;
}

.line-through:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #ff4444;
    transform: rotate(-5deg);
}

/* CTA Button hover effect */
.hover\:scale-105:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 199, 123, 0.3);
}

/* Video container glow effect */
.border-4.border-\[\#00A868\] {
    box-shadow: 0 0 30px rgba(0, 199, 123, 0.2);
}

/* Video play button effects */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.group:hover .group-hover\:scale-110 {
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* About section effects */
.bg-\[\#1A1A1A\] {
    position: relative;
    overflow: hidden;
}

.bg-\[\#1A1A1A\]:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 199, 123, 0.1),
        transparent
    );
    transition: 0.5s;
}

.bg-\[\#1A1A1A\]:hover:before {
    left: 100%;
}

/* Avatar glow effect */
.w-32.h-32 {
    position: relative;
}

.w-32.h-32:after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0, 199, 123, 0.2) 0%, transparent 70%);
    animation: pulse-avatar 2s ease-in-out infinite;
}

@keyframes pulse-avatar {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.5; }
}

/* Enhanced video container effects */
.aspect-video {
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.aspect-video:hover {
    transform: translateY(-5px);
}

.aspect-video:before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #00A868, #00C77B);
    border-radius: inherit;
    z-index: -1;
    animation: border-glow 2s linear infinite;
}

@keyframes border-glow {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.play-button {
    background: linear-gradient(90deg, #FF6B00 0%, #FF3535 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(255, 107, 0, 0.2),
        0 8px 16px rgba(255, 53, 53, 0.2);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(255, 107, 0, 0.3),
        0 16px 32px rgba(255, 53, 53, 0.3);
}

/* New attention bar styles */
.bg-gradient-attention {
    background: linear-gradient(90deg, #FF6B00, #FF3535);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced heading styles */
.gradient-heading {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(90deg, #FF6B00, #FF3535);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.text-gradient::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6B00, #FF3535);
    border-radius: 2px;
}

/* Highlight text effect */
.highlight-text {
    background: linear-gradient(0deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 53, 53, 0.15) 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* Enhanced video container */
.video-container {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.shadow-intense {
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Trust badge styles */
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Enhanced CTA styles */
.cta-container {
    position: relative;
    padding: 4px;
    background: linear-gradient(90deg, #FF6B00, #FF3535);
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 600px;
    animation: pulse-border 2s infinite;
}

.cta-button {
    display: block;
    background: #111111;
    padding: 1.5rem;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-main {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(90deg, #FF6B00, #FF3535);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.cta-sub {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

@keyframes pulse-border {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.01);
    }
}

/* Professional color palette */
:root {
    --primary: #00C77B;
    --primary-dark: #00A868;
    --primary-light: #00E88C;
    --dark: #111111;
    --darker: #0A0A0A;
    --light: #ffffff;
    --gray: #666666;
}

/* Enhanced attention bar */
.bg-gradient-attention {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    box-shadow: 0 0 20px rgba(0, 199, 123, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Professional heading styles */
.gradient-heading {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.text-gradient::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    border-radius: 1px;
}

/* Professional video container */
.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark);
}

.video-glow {
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    opacity: 0.5;
    filter: blur(20px);
    z-index: -1;
}

/* Enhanced play button */
.play-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1.25rem 2.5rem;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 199, 123, 0.2);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    box-shadow: 
        0 6px 8px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 12px 24px rgba(0, 199, 123, 0.3);
}

/* Professional CTA styles */
.cta-container {
    position: relative;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 600px;
}

.cta-button {
    display: block;
    background: var(--dark);
    padding: 2rem;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.cta-main {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

/* Professional offer section */
.offer-container {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 199, 123, 0.2);
}

.offer-content {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.offer-subtitle {
    display: block;
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
}

.discount-price {
    font-size: 3rem;
    font-weight: 600;
    color: white;
}

.price-total {
    display: block;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

/* Professional trust badges */
.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 16px rgba(0, 199, 123, 0.1);
}

/* Professional guarantee box */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-seal {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
}

/* Professional countdown */
.countdown-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    min-width: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.countdown-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mega CTA styles */
.mega-cta {
    display: block;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: pulse-slow 2s infinite;
}

.mega-cta:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 16px 32px rgba(0, 199, 123, 0.2);
}

.mega-cta-main {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mega-cta-sub {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Enhanced animations */
@keyframes pulse-slow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 8px 16px rgba(0, 0, 0, 0.1),
            0 16px 32px rgba(0, 199, 123, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 12px 24px rgba(0, 0, 0, 0.15),
            0 20px 40px rgba(0, 199, 123, 0.2);
    }
}

/* Professional shadows */
.shadow-professional {
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.06),
        0 8px 16px rgba(0, 199, 123, 0.1);
}

.shadow-professional:hover {
    box-shadow:
        0 6px 8px rgba(0, 0, 0, 0.1),
        0 3px 6px rgba(0, 0, 0, 0.08),
        0 12px 24px rgba(0, 199, 123, 0.15);
}

/* Enhanced video container */
.video-container {
    box-shadow:
        0 0 0 1px rgba(0, 199, 123, 0.2),
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 12px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.video-container:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 0 2px rgba(0, 199, 123, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.3);
}

/* Trust badge enhancements */
.trust-badge {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 199, 123, 0.1);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 199, 123, 0.2);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.08),
        0 0 0 4px rgba(0, 199, 123, 0.1);
}

/* FAQ Styles */
.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(0, 199, 123, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 199, 123, 0.2);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.06),
        0 0 0 4px rgba(0, 199, 123, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--light);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--gray);
    line-height: 1.6;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

.faq-item.active {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-color: rgba(0, 199, 123, 0.2);
}

/* Spotlight Effect */
.spotlight-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, 
        rgba(0, 199, 123, 0.15) 0%,
        rgba(0, 168, 104, 0.1) 30%,
        rgba(10, 10, 10, 1) 100%
    );
}

.spotlight-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(0, 199, 123, 0.15) 0%,
        rgba(0, 199, 123, 0.1) 25%,
        rgba(0, 199, 123, 0.05) 50%,
        transparent 70%
    );
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced attention bar for spotlight */
.bg-gradient-attention {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    box-shadow: 
        0 0 20px rgba(0, 199, 123, 0.2),
        0 0 40px rgba(0, 199, 123, 0.1),
        0 0 60px rgba(0, 199, 123, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.bg-gradient-attention::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 60%
    );
    animation: attention-rotate 10s linear infinite;
}

@keyframes attention-rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Enhanced gradient heading for spotlight */
.gradient-heading {
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 199, 123, 0.2),
        0 8px 16px rgba(0, 199, 123, 0.1);
    position: relative;
}

.gradient-heading::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(
        circle at center,
        rgba(0, 199, 123, 0.1) 0%,
        transparent 70%
    );
    animation: heading-glow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes heading-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.product-card {
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.6), rgba(17, 17, 17, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 199, 123, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 199, 123, 0.1),
        0 2px 10px rgba(0, 199, 123, 0.05);
}

.product-card .w-1\.5 {
    transition: all 0.3s ease;
}

.product-card li:hover .w-1\.5 {
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(0, 199, 123, 0.5);
}

.product-card li:hover {
    color: rgba(255, 255, 255, 0.9);
}

.feature-card {
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 199, 123, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.feature-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    min-height: 4.8rem;
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    transition: all 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 199, 123, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 199, 123, 0.1),
        0 2px 10px rgba(0, 199, 123, 0.05);
}

.feature-card:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

.mini-card {
    background: rgba(17, 17, 17, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.mini-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 199, 123, 0.2);
    box-shadow: 0 4px 20px rgba(0, 199, 123, 0.1);
}

.mini-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.mini-card:hover .mini-card-img {
    filter: brightness(1);
    transform: scale(1.05);
}

.mini-card-content {
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.mini-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.mini-card-profit {
    font-size: 0.875rem;
    color: #00C77B;
    font-weight: 500;
}

.side-card {
    display: flex;
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.side-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 199, 123, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 199, 123, 0.1),
        0 2px 10px rgba(0, 199, 123, 0.05);
}

.side-card-image {
    width: 30%;
    position: relative;
    overflow: hidden;
}

.side-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.side-card:hover .side-card-image img {
    filter: brightness(1);
    transform: scale(1.05);
}

.side-card-content {
    width: 70%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.side-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.side-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

.side-card-description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .side-card {
        flex-direction: column;
    }
    
    .side-card-image,
    .side-card-content {
        width: 100%;
    }
    
    .side-card-image {
        height: 140px;
    }
}

/* Pricing Card Styles */
.pricing-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, 
        rgba(0, 199, 123, 0.05) 0%,
        rgba(10, 10, 10, 1) 100%
    );
    padding: 8rem 0;
}

.wave-effect {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 199, 123, 0.08) 0%,
        rgba(0, 199, 123, 0.05) 25%,
        rgba(0, 199, 123, 0.03) 50%,
        transparent 70%
    );
    animation: wave-animation 25s linear infinite;
    border-radius: 40%;
    z-index: 1;
    mix-blend-mode: screen;
}

.wave-effect.secondary {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 168, 104, 0.06) 0%,
        rgba(0, 168, 104, 0.04) 30%,
        rgba(0, 168, 104, 0.02) 60%,
        transparent 80%
    );
    animation: wave-animation 20s linear infinite reverse;
    mix-blend-mode: screen;
}

@keyframes wave-animation {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.pricing-card {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 199, 123, 0.1);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(0, 199, 123, 0.1),
        0 0 0 1px rgba(0, 199, 123, 0.1);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    border-color: rgba(0, 199, 123, 0.2);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(0, 199, 123, 0.15),
        0 0 0 2px rgba(0, 199, 123, 0.2);
    transform: translateY(-4px);
}

.cta-button-pricing {
    background: linear-gradient(135deg, #00A868, #00C77B);
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 12px rgba(0, 199, 123, 0.2),
        0 0 20px rgba(0, 199, 123, 0.1),
        0 0 40px rgba(0, 199, 123, 0.05);
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    border-radius: 16px;
}

.cta-button-pricing:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #00C77B, #00A868);
    box-shadow: 
        0 6px 16px rgba(0, 199, 123, 0.3),
        0 0 30px rgba(0, 199, 123, 0.2),
        0 0 50px rgba(0, 199, 123, 0.1);
}

.cta-button-pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
}

.cta-button-pricing:hover::before {
    transform: scale(1);
}

/* Adiciona um brilho suave nas bordas do card */
.pricing-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, #00A868, #00C77B);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::after {
    opacity: 0.15;
}

/* Font settings */
:root {
    --font-primary: "Aspekta", sans-serif;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Heading styles */
h1, .text-7xl {
    font-weight: 600;
    letter-spacing: -0.04em;
}

h2, .text-6xl {
    font-weight: 600;
    letter-spacing: -0.03em;
}

h3, .text-5xl {
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* Button and CTA styles */
.cta-button-pricing,
.mega-cta-main {
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Card titles */
.side-card-title,
.gradient-heading {
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Price display */
.pricing-card h2 {
    font-weight: 600;
    letter-spacing: -0.04em;
}

/* Regular text */
p, .side-card-description {
    font-weight: 400;
}

/* Semi-bold text */
.text-xl, .text-2xl {
    font-weight: 500;
}

/* Bold text */
.font-bold {
    font-weight: 600;
}

.font-extrabold {
    font-weight: 600;
}

/* Light text */
.text-gray-400 {
    font-weight: 300;
}

/* Background hero image */
.bg-hero {
    background-image: url('fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Gradient Animation */
.animate-gradient {
    background-size: 200% auto;
    animation: gradient 3s linear infinite;
    text-shadow: 0 0 20px rgba(0, 199, 123, 0.5);
}

@keyframes gradient {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Attention Bar Styles */
.shadow-attention {
    box-shadow: 
        0 4px 20px rgba(0, 199, 123, 0.15),
        0 2px 10px rgba(0, 199, 123, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.attention-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.attention-slider > div {
    animation: slide 20s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.attention-slide {
    display: inline-block;
    padding: 0 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.attention-slide span {
    transition: all 0.3s ease;
}

.attention-slide span:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(255, 255, 255, 0.1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Infinite Background Effect */
.infinite-background {
    position: absolute;
    inset: -50%;
    background: repeating-linear-gradient(
        45deg,
        #025833,
        #025833 10px,
        #024529 10px,
        #024529 20px
    );
    animation: moveBackground 20s linear infinite;
    opacity: 0.3;
}

@keyframes moveBackground {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}

/* 3D Text Effect */
.text-3d {
    text-shadow: 
        0px 1px 0px #ffffff22,
        1px 2px 0px #ffffff11,
        2px 3px 0px #ffffff08,
        3px 4px 8px rgba(0, 0, 0, 0.3);
    transform: perspective(500px) rotateX(10deg);
    transform-origin: center;
}

.shadow-3d {
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.3),
        0 2px 4px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        inset 0 -1px 1px rgba(0, 0, 0, 0.1);
}

/* Premium CTA Button Styles */
.premium-cta-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 4px;
    background: linear-gradient(90deg, #00C77B, #00E88C, #00C77B);
    border-radius: 8px;
    position: relative;
    box-shadow: 
        0 0 30px rgba(0, 199, 123, 0.3),
        0 0 60px rgba(0, 199, 123, 0.2),
        0 0 90px rgba(0, 199, 123, 0.1);
}

.premium-cta-inner {
    position: relative;
    background: linear-gradient(90deg, #00C77B, #00E88C);
    border-radius: 6px;
    padding: 2px;
    overflow: hidden;
}

.premium-cta-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at center, rgba(0, 232, 140, 0.4), transparent 70%);
}

.premium-cta-button {
    display: block;
    background: #0A0A0A;
    padding: 1.5rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 199, 123, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.premium-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transform: translateZ(20px);
}

.premium-cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00E88C;
    letter-spacing: 1px;
    text-shadow: 
        0 0 10px rgba(0, 232, 140, 0.5),
        0 0 20px rgba(0, 232, 140, 0.3),
        0 0 30px rgba(0, 232, 140, 0.2);
}

.premium-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00E88C;
    filter: drop-shadow(0 0 10px rgba(0, 232, 140, 0.5));
}

.premium-cta-button:hover {
    transform: translateY(-2px) translateZ(0);
    border-color: rgba(0, 232, 140, 0.5);
    box-shadow: 
        0 10px 30px rgba(0, 232, 140, 0.3),
        0 5px 15px rgba(0, 232, 140, 0.2);
}

@media (max-width: 768px) {
    .premium-cta-container {
        padding: 2px;
    }
    
    .premium-cta-button {
        padding: 0.75rem;
    }
    
    .premium-cta-content {
        gap: 0.5rem;
    }
    
    .premium-cta-text {
        font-size: 0.875rem;
        letter-spacing: 0.5px;
    }
    
    .premium-cta-icon {
        display: none;
    }
    
    .premium-cta-button:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Pain Points Section */
.pain-points-container {
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.98));
    border: 1px solid rgba(0, 199, 123, 0.1);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(0, 199, 123, 0.1);
    position: relative;
    overflow: hidden;
}

.pain-points-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 199, 123, 0.2),
        transparent
    );
}

.pain-points-list {
    position: relative;
    z-index: 2;
}

.pain-points-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.pain-points-list li:hover {
    transform: translateX(10px);
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 199, 123, 0.1);
}

.pain-points-list li:last-child {
    margin-bottom: 0;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.metric-card {
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.98));
    border: 1px solid rgba(0, 199, 123, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.metric-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        transparent,
        rgba(0, 199, 123, 0.03),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 199, 123, 0.2);
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 600;
    color: #00C77B;
    margin-bottom: 0.5rem;
    position: relative;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metric-card {
        padding: 1.25rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .metric-label {
        font-size: 0.875rem;
    }
}

.bg-gradient-to-r.from-\[\#025833\].to-\[\#025833\] {
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(0, 199, 123, 0.1);
}

.bg-gradient-to-r.from-\[\#025833\].to-\[\#025833\]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 199, 123, 0.3),
        transparent
    );
}

.bg-gradient-to-r.from-\[\#025833\].to-\[\#025833\]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 199, 123, 0.2), transparent 70%);
    opacity: 0.5;
}

.bg-gradient-to-r.from-\[\#025833\].to-\[\#025833\] h3 {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-gradient-to-r.from-\[\#025833\].to-\[\#025833\] p {
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.warning-section {
    position: relative;
    background: linear-gradient(135deg, #8B6B3D 0%, #D4AF37 100%);
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.warning-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.warning-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: warningGlow 10s infinite linear;
}

.warning-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.warning-text {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

@keyframes warningGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .warning-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .warning-title {
        font-size: 1.75rem;
    }
    
    .warning-text {
        font-size: 1.1rem;
    }
}

/* Supplier Slider Styles */
.suppliers-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.suppliers-slider-container::before,
.suppliers-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.suppliers-slider-container::before {
    left: 0;
    background: linear-gradient(to right, #111111, transparent);
}

.suppliers-slider-container::after {
    right: 0;
    background: linear-gradient(to left, #111111, transparent);
}

.suppliers-track {
    display: flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 5 - 100px));
    }
}

/* Pause animation on hover */
.suppliers-track:hover {
    animation-play-state: paused;
}

.supplier-slide {
    flex: 0 0 280px;
    position: relative;
    transition: all 0.3s ease;
}

.supplier-slide > div {
    position: relative;
}

.supplier-slide > div::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #00C77B, #00E88C);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: blur(8px);
    animation: neonPulse 2s infinite;
}

.supplier-slide:hover > div::before {
    opacity: 1;
    filter: blur(12px);
}

@keyframes neonPulse {
    0%, 100% {
        opacity: 0.5;
        filter: blur(8px);
    }
    50% {
        opacity: 0.8;
        filter: blur(12px);
    }
}

.supplier-slide:hover {
    transform: translateY(-5px);
}

.supplier-slide > div {
    border: 2px solid rgba(0, 199, 123, 0.3);
    box-shadow: 
        0 0 20px rgba(0, 199, 123, 0.2),
        0 0 40px rgba(0, 199, 123, 0.1),
        inset 0 0 20px rgba(0, 199, 123, 0.1);
    transition: all 0.3s ease;
}

.supplier-slide:hover > div {
    border-color: rgba(0, 199, 123, 0.8);
    box-shadow: 
        0 0 30px rgba(0, 199, 123, 0.3),
        0 0 60px rgba(0, 199, 123, 0.2),
        inset 0 0 30px rgba(0, 199, 123, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .supplier-slide {
        flex: 0 0 200px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 5 - 100px));
        }
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Testimonials Sliders */
.testimonials-track-left,
.testimonials-track-right {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0.25rem 0;
}

.testimonials-track-left {
    margin-bottom: 0.5rem;
    position: relative;
}

.testimonials-track-left::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 199, 123, 0.2),
        transparent
    );
}

.testimonials-track-left::before,
.testimonials-track-right::before {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 1;
}

.testimonials-track-left::before {
    left: 0;
    background: linear-gradient(to right, #111111 0%, transparent 100%);
}

.testimonials-track-right::before {
    right: 0;
    background: linear-gradient(to left, #111111 0%, transparent 100%);
}

.testimonials-track-left .flex,
.testimonials-track-right .flex {
    gap: 1rem;
}

.animate-scroll-left {
    animation: scroll-left 40s linear infinite;
}

.animate-scroll-right {
    animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial-card {
    width: 320px;
    flex-shrink: 0;
    padding: 0.25rem;
}

.testimonial-card > div {
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.98));
    border: 1px solid rgba(0, 199, 123, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.testimonial-card p {
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.testimonial-card:hover > div {
    transform: translateY(-5px);
    border-color: rgba(0, 199, 123, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 199, 123, 0.1),
        0 2px 10px rgba(0, 199, 123, 0.05);
}

@media (max-width: 768px) {
    .testimonials-track-left .flex,
    .testimonials-track-right .flex {
        gap: 0.75rem;
    }

    .testimonial-card {
        width: 280px;
        padding: 0.25rem;
    }

    .testimonial-card > div {
        min-height: 180px;
        padding: 1rem;
    }

    .testimonial-card .w-12 {
        width: 2.5rem;
    }

    .testimonial-card .h-12 {
        height: 2.5rem;
    }

    .testimonial-card p {
        font-size: 0.875rem;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .testimonial-card h4 {
        font-size: 0.9rem;
    }

    .testimonial-card .text-sm {
        font-size: 0.75rem;
    }
} 