/* Custom Styles for HUB DE NOTÍCIAS */

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

/* Custom Properties */
:root {
    --primary-gradient: linear-gradient(135deg, #000000 0%, #333333 100%);
    --glow-color: rgba(0, 0, 0, 0.1);
    --premium-gradient: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

.geometric-pattern-background {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.03;
}

/* Animated Background Elements */
.floating-orb {
    animation: floatingOrb 20s infinite ease-in-out;
    opacity: 0.5;
    mix-blend-mode: multiply;
}

.floating-orb:nth-child(2) {
    animation-duration: 25s;
    animation-delay: -10s;
}

@keyframes floatingOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(5%, 10%) scale(1.1);
    }
    50% {
        transform: translate(-5%, -5%) scale(0.9);
    }
    75% {
        transform: translate(-10%, 5%) scale(1.05);
    }
}

/* Stats Section Styling */
.stats-section {
    position: relative;
}

.stat-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-number {
    background-size: 200% auto;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Feature Cards Animation */
.feature-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
}

/* CTA Button Enhancement */
.cta-button.large {
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.cta-button.large::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #000, #333, #000);
    filter: blur(15px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-button.large:hover::after {
    opacity: 0.5;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: #000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.logo-spin {
    animation: subtle-rotate 20s linear infinite;
}

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

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-element 10s infinite ease-in-out;
}

.floating-element:nth-child(2) {
    animation-delay: -2.5s;
}

.floating-element:nth-child(3) {
    animation-delay: -5s;
}

.floating-element:nth-child(4) {
    animation-delay: -7.5s;
}

@keyframes float-element {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 10px) scale(1.05);
    }
}

/* Gradient Text Effect */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.animated-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

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

@keyframes network-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

@keyframes draw-line {
    to { stroke-dashoffset: 0; }
}

/* Hero Animations */
.hero-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}

/* Stats Animation */
.number-highlight {
    animation: numberPulse 0.5s ease-out;
}

.number-complete {
    animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes numberGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(0,0,0,0.1); }
    50% { text-shadow: 0 0 20px rgba(0,0,0,0.2); }
}

/* Enhanced Feature Cards */
.feature-card {
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card:hover .w-12 {
    transform: translateZ(20px) rotateY(10deg);
    transition: transform 0.3s ease;
}

.feature-card .flex-shrink-0 {
    transition: transform 0.3s ease;
}

/* Stats Cards Enhancement */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s;
    transform: translate(50%, 50%) rotate(30deg);
    pointer-events: none;
}

.stat-card:hover::after {
    opacity: 0.8;
}



@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Icons */
.text-green-500 {
    transition: transform 0.3s ease;
}

span.flex:hover .text-green-500 {
    transform: scale(1.1);
}

/* Bounce Animation for Discover Section */
.animate-bounce {
    animation: bounce 2s infinite;
}

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

/* Magnetic Button Effect */
.magnetic-button {
    position: relative;
    transition: all 0.2s ease;
}

.button-text {
    transition: all 0.3s ease;
}

.button-hover-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.magnetic-button:hover .button-text {
    opacity: 0;
}

.magnetic-button:hover .button-hover-text {
    opacity: 1;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.magnetic-button:hover .arrow-icon {
    transform: rotate(90deg);
}

/* CTA Button */
.cta-button {
    background: #000;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.cta-button.large {
    padding: 20px 50px;
    font-size: 20px;
}

.pulse-button {
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    animation: fade-in 1s ease-out 0.8s both;
    z-index: 20;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Section Titles Animation */
.section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Feature Cards */
.feature-card, .trust-item, .elegant-pricing-card, .testimonial-card {
    transition: all 0.3s ease;
}

.feature-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card-hover-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card:hover {
    transform: translateY(-5px) rotateX(-5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.icon-bounce {
    animation: icon-bounce 2s ease-in-out infinite;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Tags */
.tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
}

.tag-animate {
    animation: tag-appear 0.5s ease forwards;
}

.tag-animate:nth-child(1) { animation-delay: 0.1s; }
.tag-animate:nth-child(2) { animation-delay: 0.2s; }
.tag-animate:nth-child(3) { animation-delay: 0.3s; }

@keyframes tag-appear {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
}

/* Timeline Section */
/* Timeline Section */
#timeline {
    position: relative;
}

.timeline-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#00000010 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

/* Mockup Styling */
.mockup-container {
    perspective: 1000px;
    padding: 2rem;
}

.mockup-frame {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 6s ease-in-out infinite;
    max-width: 400px;
    margin: 0 auto;
}

.mockup-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.2))
           drop-shadow(0 25px 65px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.mockup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0) 100%
    );
    pointer-events: none;
}

.mockup-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(
        circle,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0) 70%
    );
    opacity: 0;
    animation: glow 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-2deg); }
    50% { transform: translateY(-20px) rotateX(-2deg) rotateY(2deg); }
}

@keyframes glow {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Timeline Steps Styling */
.timeline-title {
    background: linear-gradient(to right, #000, #333);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: #000;
    border-radius: 2px;
}

.timeline-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-step {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: step-fade-in 0.6s ease forwards;
}

.timeline-step:nth-child(1) { animation-delay: 0.2s; }
.timeline-step:nth-child(2) { animation-delay: 0.4s; }
.timeline-step:nth-child(3) { animation-delay: 0.6s; }
.timeline-step:nth-child(4) { animation-delay: 0.8s; }

.step-connector {
    position: absolute;
    top: 60px;
    left: 40px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, #000 50%, transparent 50%);
    background-size: 4px 4px;
}

.timeline-step:last-child .step-connector {
    display: none;
}

.step-content {
    position: relative;
    padding-left: 80px;
}

.step-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: scale(0);
    animation: icon-pop 0.3s ease forwards;
}

.timeline-step:nth-child(1) .step-icon { animation-delay: 0.4s; }
.timeline-step:nth-child(2) .step-icon { animation-delay: 0.6s; }
.timeline-step:nth-child(3) .step-icon { animation-delay: 0.8s; }
.timeline-step:nth-child(4) .step-icon { animation-delay: 1s; }

.wave-emoji {
    font-size: 1.5rem;
    animation: wave 2s ease-in-out infinite;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

.timeline-step:hover {
    .step-number { color: #00000030; }
    .step-icon { transform: scale(1.1); }
    .step-title { color: #000; }
}

@keyframes step-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes icon-pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-20deg); }
    75% { transform: rotate(20deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mockup-container {
        order: -1;
        margin-bottom: 2rem;
    }

    .timeline-steps-container {
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    .timeline-title {
        font-size: 2rem;
        text-align: center;
    }

    .title-underline {
        left: 50%;
        transform: translateX(-50%);
    }

    .step-content {
        padding-left: 60px;
    }

    .step-number {
        font-size: 2rem;
    }

    .step-icon {
        left: 15px;
        width: 35px;
        height: 35px;
    }

    .step-connector {
        left: 30px;
    }
}

/* Check Items Animation */
.check-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slide-in-right 0.5s ease forwards;
}

.check-item:nth-child(1) { animation-delay: 0.1s; }
.check-item:nth-child(2) { animation-delay: 0.2s; }
.check-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slide-in-right {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Trust Items */
.trust-item {
    padding: 30px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.scale-hover {
    transition: all 0.3s ease;
}

.scale-hover:hover {
    transform: scale(1.05);
    background: rgba(0, 0, 0, 0.05);
}

.trust-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #4ade80;
}

.rotate-icon {
    display: inline-block;
    animation: rotate-bounce 2s ease-in-out infinite;
}

@keyframes rotate-bounce {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

/* Pricing Toggle Switch */
.pricing-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.pricing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 30px;
    transition: .4s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pricing-toggle input:checked + .toggle-slider {
    background-color: #000;
}

.pricing-toggle input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.pricing-toggle:hover .toggle-slider {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Price animation */
.monthly-price, .annual-price, .monthly-total, .annual-total {
    transition: opacity 0.3s ease;
}

/* Single Pricing Card - Elegant Design */
.elegant-pricing-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 50%, #f0f2f5 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 4px 16px rgba(0, 0, 0, 0.03),
        0 8px 32px rgba(0, 0, 0, 0.02);
}

.elegant-pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 50%
    );
    pointer-events: none;
    opacity: 0.7;
}

.elegant-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.04),
        0 16px 48px rgba(0, 0, 0, 0.03);
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 50%, #f3f5f7 100%);
}

.card-inner {
    position: relative;
    z-index: 2;
    padding: 40px 35px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 35px;
}

.pricing-header h3 {
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.pricing-header p {
    color: #6b7280;
    line-height: 1.5;
}

/* Price Container */
.price-container {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-number {
    color: #000;
    letter-spacing: -1px;
}

/* Elegant Badge */
.elegant-badge {
    position: absolute;
    top: -10px;
    right: -45px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.95);
}

.elegant-badge.annual-only {
    opacity: 1;
    transform: scale(1);
}

.elegant-pricing-card:hover .elegant-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

/* Elegant Divider */
.elegant-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 0, 0, 0.08) 20%, 
        rgba(0, 0, 0, 0.08) 80%, 
        transparent 100%
    );
    margin: 30px 0;
}

/* Features List */
.pricing-features {
    list-style: none;
    margin-bottom: 35px;
    padding: 0;
}

.feature-item-elegant {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0;
    transform: translateX(-10px);
    animation: subtle-slide-in 0.5s ease forwards;
}

.feature-item-elegant:nth-child(1) { animation-delay: 0.05s; }
.feature-item-elegant:nth-child(2) { animation-delay: 0.1s; }
.feature-item-elegant:nth-child(3) { animation-delay: 0.15s; }
.feature-item-elegant:nth-child(4) { animation-delay: 0.2s; }
.feature-item-elegant:nth-child(5) { animation-delay: 0.25s; }
.feature-item-elegant:nth-child(6) { animation-delay: 0.3s; }

.check-circle {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #86efac;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.check-circle svg {
    stroke: #22c55e;
    stroke-width: 3;
}

.elegant-pricing-card:hover .check-circle {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: #4ade80;
    transform: scale(1.1);
}

/* Elegant Button */
.elegant-pricing-button {
    width: 100%;
    padding: 16px 28px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.2px;
}

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

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

.elegant-pricing-button:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.arrow-elegant {
    transition: transform 0.3s ease;
}

.elegant-pricing-button:hover .arrow-elegant {
    transform: translateX(3px);
}

@keyframes subtle-slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes subtle-bounce {
    0% { transform: scale(0.9) translateY(-5px); opacity: 0; }
    50% { transform: scale(1.05) translateY(2px); }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Hide elements smoothly */
.annual-only {
    transition: opacity 0.3s ease;
}

/* Price animation */
.monthly-price, .annual-price, .monthly-total, .annual-total {
    transition: opacity 0.3s ease;
}

/* Testimonials Carousel */
.testimonials-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-carousel {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    padding: 0 10px;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-slide.prev {
    transform: translateX(-100%);
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #333;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #000;
    transform: scale(1.2);
}

.indicator:hover {
    background: #666;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 15px;
    animation: star-shine 2s ease-in-out infinite;
}

@keyframes star-shine {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.testimonial-text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.pulse-avatar {
    animation: pulse 2s ease-in-out infinite;
}

/* Rating Section */
.rating-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.rating-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.rating-number {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.rating-stars {
    margin-top: 10px;
}

.star {
    font-size: 24px;
    color: #ddd;
    transition: all 0.3s ease;
    display: inline-block;
}

.star.filled {
    color: #FFD700;
    animation: star-pop 0.5s ease;
}

@keyframes star-pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .demo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .phone-mockup {
        max-width: 340px;
    }

    .scroll-indicator {
        position: fixed;
    }
    
    .card-inner {
        padding: 30px 25px;
    }
    
    .feature-card {
        padding: 30px;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .testimonials-carousel-container {
        padding: 0 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .hero-title {
        font-size: 1.7rem !important;
        padding-top: 1.5rem !important;
        padding-bottom: 0.5rem !important;
        text-align: center !important;
        word-break: break-word;
    }
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        word-break: break-word;
    }
    .cta-button.large {
        font-size: 1.1rem !important;
        padding: 1rem 1.5rem !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
    }
    .flex.flex-wrap {
        gap: 0.5rem !important;
        justify-content: center !important;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .elegant-badge {
        right: -35px;
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .price-number {
        font-size: 2rem !important;
    }
    
    .feature-item-elegant {
        font-size: 14px;
    }
    
    .check-circle {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
}

/* === Disruptive Hub Logo === */
.hub-logo-container {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 2rem auto;
}

.hub-logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Animation: The black rectangle in the mask starts covering the text and moves away to the right, revealing it. */
#hubMaskRect {
    transform: translateX(0%);
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 0.3s;
}

/* Animation: The tagline fades in and moves up */
#hubTagline {
    transform: translateY(10px);
    animation: fade-in-up-logo 1s ease-out forwards;
    animation-delay: 1s; /* Start after the main text is revealed */
}

@keyframes reveal {
    to {
        transform: translateX(100%);
    }
}

@keyframes fade-in-up-logo {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Accordion Styles */
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background: white;
    margin-bottom: 1rem;
    overflow: hidden; /* Ensure content is clipped */
}

.faq-item.active {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #000; /* Highlight active item */
}

.faq-toggle-button {
    background: none;
    border: none;
    outline: none !important;
    cursor: pointer;
    font-size: 1.125rem; /* Slightly larger font */
    font-weight: 600; /* Bolder question */
    width: 100%;
    text-align: left;
    padding: 1.5rem 1.25rem; /* More padding */
    transition: all 0.2s ease;
    color: #1a1a1a; /* Darker text for questions */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-toggle-button:hover {
    background: #f8f8f8; /* Lighter hover background */
}

.faq-toggle-button svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #6b7280; /* Icon color */
}

.faq-item.active .faq-toggle-button svg {
    transform: rotate(180deg);
    color: #000; /* Icon color when active */
}

.faq-content {
    max-height: 0; /* Use max-height for smooth transition */
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 1.25rem;
    color: #4b5563;
    line-height: 1.7; /* Improved readability */
}

.faq-item.active .faq-content {
    max-height: 500px; /* A large enough value to accommodate content */
    opacity: 1;
    padding: 0.5rem 1.25rem 1.5rem 1.25rem; /* Padding when open */
}
