/* Products Page Specific Styles */

/* Hero Section for Products */
.hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Product Timeline Section */
.product-timeline {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-green);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-graphic {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 300px;
    height: 300px;
}

.element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    color: var(--primary-blue);
    animation-delay: 0s;
}

.element-2 {
    top: 10%;
    right: 20%;
    color: var(--accent-green);
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 30%;
    left: 20%;
    color: var(--secondary-blue);
    animation-delay: 3s;
}

.element-4 {
    bottom: 20%;
    right: 10%;
    color: var(--primary-blue);
    animation-delay: 4.5s;
}

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

/* Products Grid */
.products-overview {
    background: var(--gray-100);
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-200);
    will-change: transform;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
    border: 2px solid var(--accent-green);
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-card li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
}

.product-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Modern Pricing Section Styles */
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.pricing-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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
    transform: translateY(0);
    animation: slideInDown 1s ease-out;
}

.pricing-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.pricing-header p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 20px;
}

.toggle-option {
    padding: 12px 30px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.toggle-option.active {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    transform: scale(1.05);
}

.save-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Parallax Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

.pricing-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: cardFloat 6s ease-in-out infinite;
}

.pricing-card:nth-child(1) {
    animation-delay: 0s;
}

.pricing-card:nth-child(2) {
    animation-delay: 2s;
    transform: translateY(-20px);
}

.pricing-card:nth-child(3) {
    animation-delay: 4s;
}

.pricing-card:hover {
    transform: translateY(-30px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}

.pricing-card.popular {
    transform: scale(1.05) translateY(-20px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-card.popular .plan-header {
    color: white;
}

.pricing-card.popular .plan-price {
    color: white;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.plan-description {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
}

.plan-note {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.plan-features li {
    padding: 12px 0;
    color: #4a5568;
    font-size: 1rem;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.2rem;
}

.plan-action {
    text-align: center;
    margin-top: 30px;
}

.btn-pricing {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(102,126,234,0.3);
    position: relative;
    overflow: hidden;
}

.btn-pricing::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;
}

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

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.4);
}

.btn-secondary {
    background: rgba(102,126,234,0.1);
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.plan-cta-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #a0aec0;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-header h2 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .pricing-container {
        padding: 0 15px;
    }
}

.timeline-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gradient-orbs::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.gradient-orbs::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite 2s;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    color: #60a5fa;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    animation: glow 2s ease-in-out infinite alternate;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #60a5fa, #a855f7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.timeline-marker::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 200px;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.5), transparent);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item:last-child .timeline-marker::before {
    display: none;
}

.timeline-content {
    flex: 1;
    max-width: 500px;
    margin: 0 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::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.5s ease;
}

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

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.product-status {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.product-status.coming-soon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.product-status.beta {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: rotate 3s linear infinite;
}

.product-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-pill {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.metrics-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #60a5fa;
    display: block;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.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 ease;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.5); }
    100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.8); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .product-timeline {
        padding: 4rem 0;
    }
    
    .timeline-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .timeline-content {
        margin: 2rem 0 0 0;
        max-width: 100%;
    }
    
    .timeline-marker::before {
        display: none;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .metrics-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Dynamic Hero Section */
.dynamic-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-particles::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.hero-split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-left {
    padding: 2rem 0;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title-dynamic {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.title-line {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-blue);
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description-new {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 90%;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.highlight-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-blue), rgba(255, 255, 255, 0.8));
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.highlight-content {
    display: flex;
    flex-direction: column;
}

.highlight-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.highlight-subtitle {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-explore,
.btn-waitlist {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-explore {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-waitlist {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    backdrop-filter: blur(10px);
}

.btn-waitlist:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-arrow,
.btn-sparkle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-explore:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-waitlist:hover .btn-sparkle {
    animation: sparkle 0.6s ease;
}

.hero-right {
    position: relative;
}

.product-showcase {
    position: relative;
    height: 500px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 100%;
}

.product-preview {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-preview:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-preview.analytics {
    grid-column: 1 / -1;
    grid-row: 2;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.preview-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-blue), rgba(255, 255, 255, 0.8));
    border-radius: 12px;
}

.preview-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.stat-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-green) 98%, var(--gray-200) 98%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-circle::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-green);
    z-index: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray-600);
    z-index: 1;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 0.9rem;
    color: var(--accent-green);
    font-weight: 500;
}

.preview-chart {
    height: 60px;
    margin: 1rem 0;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-blue), var(--secondary-blue));
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s ease-out;
}

.feature-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

/* Animations */
@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

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

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

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

@keyframes barGrow {
    0% { height: 0; }
    100% { height: var(--final-height, 50%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .hero-description-new {
        max-width: 100%;
    }
    
    .feature-highlights {
        gap: 1rem;
    }
    
    .highlight-item:hover {
        transform: translateY(-5px);
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-preview.analytics {
        grid-column: 1;
    }
}

/* Technology Constellation Section */
.technology-constellation {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    overflow: hidden;
}

.constellation-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(168, 85, 247, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 120px 120px;
    animation: networkPulse 8s ease-in-out infinite;
}

.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.data-streams::before,
.data-streams::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(59, 130, 246, 0.3) 20%, 
        rgba(34, 197, 94, 0.3) 50%, 
        rgba(168, 85, 247, 0.3) 80%, 
        transparent 100%);
    animation: dataFlow 6s linear infinite;
}

.data-streams::before {
    left: 25%;
    animation-delay: 0s;
}

.data-streams::after {
    right: 25%;
    animation-delay: 3s;
}

.tech-constellation {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.constellation-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.center-node {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(59, 130, 246, 0.5),
        0 0 60px rgba(139, 92, 246, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: centerPulse 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.center-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.center-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.tech-node {
    position: absolute;
    cursor: pointer;
    transition: all 0.4s ease;
}

.tech-node.node-1 {
    top: 10%;
    left: 15%;
}

.tech-node.node-2 {
    top: 10%;
    right: 15%;
}

.tech-node.node-3 {
    bottom: 10%;
    left: 15%;
}

.tech-node.node-4 {
    bottom: 10%;
    right: 15%;
}

.node-container {
    position: relative;
    width: 200px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    overflow: hidden;
}

.node-container:hover {
    transform: scale(1.05) translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(59, 130, 246, 0.3);
}

.node-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.node-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.node-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    text-align: center;
}

.node-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.node-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #22c55e, #f59e0b);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.node-container:hover .node-pulse {
    opacity: 0.6;
}

.connection-line {
    position: absolute;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    transform-origin: center;
    opacity: 0.6;
    animation: connectionPulse 3s ease-in-out infinite;
}

.line-1 {
    width: 2px;
    height: 150px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    width: 2px;
    height: 150px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    animation-delay: 0.5s;
}

.line-3 {
    width: 2px;
    height: 150px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    animation-delay: 1s;
}

.line-4 {
    width: 2px;
    height: 150px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    animation-delay: 1.5s;
}

.tech-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.detail-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 350px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: auto;
    z-index: 100;
}

.detail-panel.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3b82f6;
}

.panel-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.panel-close:hover {
    color: #ef4444;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-row:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

.feature-row .feature-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.feature-row .feature-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Animations */
@keyframes networkPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes dataFlow {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes centerPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 30px rgba(59, 130, 246, 0.5),
            0 0 60px rgba(139, 92, 246, 0.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 
            0 0 40px rgba(59, 130, 246, 0.7),
            0 0 80px rgba(139, 92, 246, 0.5);
    }
}

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

@keyframes connectionPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-constellation {
        height: 800px;
        flex-direction: column;
    }
    
    .tech-node {
        position: relative;
        margin: 2rem 0;
    }
    
    .tech-node.node-1,
    .tech-node.node-2,
    .tech-node.node-3,
    .tech-node.node-4 {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .node-container {
        width: 280px;
        margin: 0 auto;
    }
    
    .connection-line {
        display: none;
    }
    
    .detail-panel {
        width: 90vw;
        max-width: 350px;
    }
}

/* ===== FUTURE CTA SECTION V2 - DISTINCTIVE DESIGN ===== */
.cta-section-future-v2 {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 25%, #2d1b69 50%, #1a1a3e 75%, #0a0a23 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
}

.future-background-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-particles-v2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat-v2 20s linear infinite;
}

@keyframes particleFloat-v2 {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(-10px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.gradient-orbs-v2 {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb-v2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
}

.orb-1-v2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.8) 0%, rgba(138, 43, 226, 0.2) 70%, transparent 100%);
    top: 10%;
    left: 10%;
    animation: orbFloat1-v2 15s ease-in-out infinite;
}

.orb-2-v2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.6) 0%, rgba(0, 191, 255, 0.2) 70%, transparent 100%);
    top: 60%;
    right: 15%;
    animation: orbFloat2-v2 18s ease-in-out infinite;
}

.orb-3-v2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.5) 0%, rgba(255, 20, 147, 0.1) 70%, transparent 100%);
    bottom: 20%;
    left: 50%;
    animation: orbFloat3-v2 12s ease-in-out infinite;
}

@keyframes orbFloat1-v2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 10px) scale(0.9); }
}

@keyframes orbFloat2-v2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -30px) scale(1.2); }
}

@keyframes orbFloat3-v2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -15px) scale(0.8); }
    75% { transform: translate(-30px, 25px) scale(1.1); }
}

.future-content-v2 {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.future-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    animation: badgeGlow-v2 3s ease-in-out infinite;
}

@keyframes badgeGlow-v2 {
    0%, 100% { box-shadow: 0 0 20px rgba(138, 43, 226, 0.3); }
    50% { box-shadow: 0 0 30px rgba(138, 43, 226, 0.6), 0 0 40px rgba(138, 43, 226, 0.3); }
}

.badge-icon-v2 {
    font-size: 18px;
    animation: rocketSpin-v2 2s linear infinite;
}

@keyframes rocketSpin-v2 {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

.badge-text-v2 {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.future-title-v2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.gradient-text-v2 {
    background: linear-gradient(135deg, #8a2be2, #00bfff, #ff1493);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift-v2 4s ease-in-out infinite;
}

@keyframes gradientShift-v2 {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.future-description-v2 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.future-actions-v2 {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.future-btn-primary-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8a2be2, #00bfff);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.future-btn-primary-v2::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;
}

.future-btn-primary-v2:hover::before {
    left: 100%;
}

.future-btn-primary-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.5);
}

.future-btn-secondary-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.future-btn-secondary-v2:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

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

.future-btn-primary-v2:hover .btn-arrow-v2 {
    transform: translateX(5px);
}

.future-features-v2 {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.future-feature-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
}

.future-feature-v2:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.feature-icon-v2 {
    font-size: 20px;
    animation: iconPulse-v2 2s ease-in-out infinite;
}

@keyframes iconPulse-v2 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-text-v2 {
    font-size: 16px;
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section-future-v2 {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .future-title-v2 {
        font-size: 2.5rem;
    }
    
    .future-description-v2 {
        font-size: 1.1rem;
    }
    
    .future-actions-v2 {
        flex-direction: column;
        align-items: center;
    }
    
    .future-btn-primary-v2,
    .future-btn-secondary-v2 {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .future-features-v2 {
        gap: 20px;
    }
    
    .orb-1-v2, .orb-2-v2, .orb-3-v2 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .future-title-v2 {
        font-size: 2rem;
    }
    
    .future-description-v2 {
        font-size: 1rem;
    }
    
    .future-features-v2 {
        flex-direction: column;
        gap: 15px;
    }
}