/* Variables CSS - Baseado no sistema de cores do React original */
:root {
    --background: 220 14% 6%;
    --foreground: 220 9% 95%;
    --card: 220 14% 8%;
    --card-foreground: 220 9% 95%;
    --popover: 220 14% 8%;
    --popover-foreground: 220 9% 95%;
    
    --primary: 45 93% 51%;
    --primary-foreground: 220 14% 6%;
    
    --secondary: 220 14% 12%;
    --secondary-foreground: 220 9% 95%;
    
    --muted: 220 14% 12%;
    --muted-foreground: 220 9% 65%;
    
    --accent: 220 14% 12%;
    --accent-foreground: 220 9% 95%;
    
    --destructive: 0 62% 51%;
    --destructive-foreground: 220 9% 95%;
    
    --border: 220 14% 18%;
    --input: 220 14% 18%;
    --ring: 45 93% 51%;
    
    --radius: 0.75rem;
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: hsl(var(--border));
}

body {
    font-family: 'Inter', sans-serif;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    scroll-behavior: smooth;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animations - Baseado no sistema do React original */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes pulseSlow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.05);
    }
}

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-30px);
    }
    70% {
        transform: translateX(-50%) translateY(-15px);
    }
    90% {
        transform: translateX(-50%) translateY(-4px);
    }
}

@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulseSlow 4s ease-in-out infinite;
}

/* Text Gradients */
.gradient-text, .text-gradient-premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

/* Glass Effects */
.glass-nav {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.neon-border {
    border: 1px solid hsl(var(--primary));
    box-shadow: 0 0 10px hsl(var(--primary) / 0.3);
}

.glow-effect {
    box-shadow: 0 0 40px hsl(var(--primary) / 0.4);
}

/* Patterns */
.dot-pattern {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.grid-pattern {
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
}

/* Navigation */
.floating-nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.5s ease;
}

.nav-container {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: fit-content;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

.nav-menu-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: hsl(var(--primary));
}

.btn-primary-nav {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: hsl(var(--primary-foreground));
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
	text-decoration: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: hsl(var(--foreground));
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.close-icon {
    display: none;
}

.mobile-menu-btn.open .menu-icon {
    display: none;
}

.mobile-menu-btn.open .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: hsl(var(--primary));
}

.mobile-nav-link:last-of-type {
    border-bottom: none;
}

.mobile-login-btn {
    margin-top: 1rem;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 6rem;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    animation: float 6s ease-in-out infinite;
}

.hero-bg-1 {
    top: 5rem;
    left: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 215, 0, 0.1);
    animation: pulseSlow 4s ease-in-out infinite;
}

.hero-bg-2 {
    bottom: 5rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 215, 0, 0.05);
    animation: pulseSlow 4s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-bg-3 {
    top: 50%;
    left: 33.33%;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 215, 0, 0.2);
    filter: blur(32px);
    animation: float 6s ease-in-out infinite;
}

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

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: left;
}

.hero-subtitle p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    text-align: left;
    max-width: 32rem;
}

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

.btn-primary-hero, .btn-ghost-hero {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    border-radius: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
	text-decoration: none;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: hsl(var(--primary-foreground));
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.btn-primary-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.4);
}

.btn-ghost-hero {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: hsl(var(--primary));
    padding: 1.5rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-ghost-hero:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.arrow-icon {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.group:hover .arrow-icon {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}

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

.stat-number {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 3rem;
    background: rgba(255, 215, 0, 0.2);
}

/* Hero Image */
.hero-right {
    position: relative;
}

.hero-image-container {
    position: relative;
}

.hero-image-bg {
    position: absolute;
    inset: -1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 1.5rem;
    filter: blur(32px);
    opacity: 0.8;
    animation: pulseSlow 4s ease-in-out infinite;
}

.hero-image-frame {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(0, 0, 0, 0.95));
    border-radius: 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-image-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(255, 215, 0, 0.05));
    border-radius: 1rem;
    padding: 0.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    object-cover: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent, rgba(255, 215, 0, 0.05));
}

.hero-decorative-corners {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.corner {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border: 3px solid rgba(255, 215, 0, 0.5);
}

.corner-tl {
    top: 0.5rem;
    left: 0.5rem;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 0.75rem;
}

.corner-tr {
    top: 0.5rem;
    right: 0.5rem;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 0.75rem;
}

.corner-bl {
    bottom: 0.5rem;
    left: 0.5rem;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 0.75rem;
}

.corner-br {
    bottom: 0.5rem;
    right: 0.5rem;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 0.75rem;
}

.hero-decorative-edges {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.edge {
    position: absolute;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.4), transparent);
}

.edge-left {
    top: 50%;
    left: 0.25rem;
    width: 0.5rem;
    height: 2rem;
    transform: translateY(-50%);
    border-radius: 9999px;
}

.edge-right {
    top: 50%;
    right: 0.25rem;
    width: 0.5rem;
    height: 2rem;
    transform: translateY(-50%);
    border-radius: 9999px;
}

.edge-top {
    top: 0.25rem;
    left: 50%;
    width: 2rem;
    height: 0.5rem;
    transform: translateX(-50%);
    border-radius: 9999px;
}

.edge-bottom {
    bottom: 0.25rem;
    left: 50%;
    width: 2rem;
    height: 0.5rem;
    transform: translateX(-50%);
    border-radius: 9999px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
}

.scroll-indicator-dot {
    width: 0.25rem;
    height: 0.75rem;
    background: hsl(var(--primary));
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

/* Common Section Styles */
.section-background {
    position: absolute;
    inset: 0;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.section-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 48rem;
    margin: 0 auto;
}

/* Dashboard Section */
.dashboard-section {
    padding: 8rem 0;
    position: relative;
    background: hsl(var(--background));
}

.dashboard-container {
    position: relative;
    z-index: 10;
}

.dashboard-mockup {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.browser-chrome {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.browser-buttons {
    display: flex;
    gap: 0.5rem;
}

.browser-button {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.browser-button.red {
    background: #ff5f56;
}

.browser-button.yellow {
    background: #ffbd2e;
}

.browser-button.green {
    background: #27ca3f;
}

.browser-url {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    margin-left: 1rem;
}

.dashboard-content {
    position: relative;
    overflow: hidden;
}

.dashboard-image {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

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

.feature-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary));
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.feature-card p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 8rem 0;
    position: relative;
    background: hsl(var(--background));
}

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

.benefit-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.1);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary));
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.benefit-card p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.trust-indicator {
    width: 0.75rem;
    height: 0.75rem;
    background: hsl(var(--primary));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.trust-badge span {
    color: hsl(var(--foreground));
    font-weight: 500;
}

/* How It Works Section */
.how-it-works-section {
    padding: 8rem 0;
    position: relative;
    background: hsl(var(--background));
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 5rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 215, 0, 0.1);
}

.floating-2 {
    bottom: 5rem;
    left: 5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 215, 0, 0.2);
    filter: blur(32px);
    animation-delay: 2s;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    align-items: center;
}

.how-it-works-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.how-it-works-card:hover {
    transform: scale(1.05);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.1);
}

.how-it-works-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-primary-cta {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 9999px;
    border: none;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px hsl(var(--primary) / 0.4);
	text-decoration: none;
}

.btn-primary-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px hsl(var(--primary) / 0.6);
}

/* Technology Section */
.technology-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(to bottom, rgba(249, 250, 251, 1), rgba(255, 255, 255, 1));
}

.radial-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
}

.radial-1 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(251, 192, 38, 0.1) 0%, transparent 50%);
}

.radial-2 {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 75%, rgba(251, 192, 38, 0.05) 0%, transparent 50%);
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.technology-left {
    color: #1f2937;
}

.technology-left .section-title {
    color: #1f2937;
    text-align: left;
}

.technology-left .section-subtitle {
    color: #6b7280;
    text-align: left;
    margin-bottom: 3rem;
}

.technology-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.tech-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #fef3c7;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.tech-feature:hover .tech-icon {
    background: #fde68a;
}

.tech-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #d97706;
}

.tech-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.tech-feature p {
    color: #6b7280;
    line-height: 1.6;
}

.tech-stack {
    margin-top: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.tech-stack h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-stack h4 svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    padding: 0.25rem 0.75rem;
    background: #f3f4f6;
    color: #374151;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.technology-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.tech-feature-card .tech-feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #fef3c7;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.tech-feature-card:hover .tech-feature-icon {
    transform: scale(1.1);
}

.tech-feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #f59e0b;
}

.tech-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.tech-feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.tech-stats .stat-item {
    text-align: center;
}

.tech-stats .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.tech-stats .stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    position: relative;
    background: white;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    inset: 0;
}

.testimonials-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 16rem;
    background: linear-gradient(to bottom, #f9fafb, transparent);
}

.testimonials-bg-circle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: #fffbeb;
    border-radius: 50%;
    opacity: 0.5;
    transform: translate(8rem, 8rem);
}

.testimonials-section .section-title {
    color: #1f2937;
}

.testimonials-section .section-subtitle {
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

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

.testimonial-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    position: absolute;
    top: -1rem;
    left: 2rem;
}

.testimonial-quote svg {
    width: 2rem;
    height: 2rem;
    background: #fbbf24;
    border-radius: 50%;
    padding: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: #1f2937;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
}

.testimonial-card p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.testimonial-growth {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: #dcfce7;
    border-radius: 0.5rem;
    border: 1px solid #bbf7d0;
}

.testimonial-growth svg {
    width: 1rem;
    height: 1rem;
    color: #16a34a;
}

.testimonial-growth span {
    color: #15803d;
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info h4 {
    font-weight: 700;
    color: #1f2937;
}

.author-info p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.social-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.social-proof-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.social-proof-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.social-proof-label {
    color: #6b7280;
    font-weight: 500;
}

.trust-final {
    text-align: center;
}

.trust-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    margin-left: -0.5rem;
}

.trust-avatar {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-weight: 700;
    font-size: 0.75rem;
    margin-left: -0.5rem;
}

.trust-final span {
    color: #374151;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    position: relative;
    background: hsl(var(--background));
}

.faq-accordion {
    max-width: 4xl;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    transition: color 0.3s ease;
    padding: 1.5rem 0;
}

.faq-question:hover {
    color: hsl(var(--primary));
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    position: relative;
    background: hsl(var(--background));
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
}

.cta-gradient {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), hsl(var(--background)), rgba(255, 215, 0, 0.1));
}

.cta-floating-1 {
    position: absolute;
    top: 5rem;
    left: 5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(48px);
    animation: float 6s ease-in-out infinite;
}

.cta-floating-2 {
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 50%;
    filter: blur(48px);
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 4xl;
    margin: 0 auto;
    text-align: center;
}

.cta-header {
    margin-bottom: 4rem;
}

.cta-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
}

.cta-header p {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 32rem;
    margin: 0 auto;
}

.cta-box {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 2rem;
}

.btn-cta-dark {
    background: #000;
    color: white;
    font-weight: 700;
    padding: 1.5rem 3rem;
    border-radius: 1rem;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
	text-decoration: none;
}

.btn-cta-dark:hover {
    background: #1f2937;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

/* Footer */
.footer {
    background: hsl(var(--background));
    border-top: 1px solid hsl(var(--border));
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 2.5rem;
    width: auto;
    margin: 0 auto;
}

.footer-description {
    margin-bottom: 2rem;
}

.footer-description p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    max-width: 28rem;
    font-size: 1.125rem;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-email {
    color: hsl(var(--primary));
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: hsl(var(--primary) / 0.8);
}

.footer-bottom {
    border-top: 1px solid hsl(var(--border));
    padding-top: 2rem;
    width: 100%;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.footer-copyright {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: hsl(var(--primary));
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 28rem;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-close {
    background: none;
    border: none;
    color: hsl(var(--foreground));
    cursor: pointer;
    padding: 0.5rem;
}

.modal-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.register-fields {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    color: hsl(var(--foreground));
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.form-label svg {
    width: 1rem;
    height: 1rem;
}

.form-input {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.form-input::placeholder {
    color: hsl(var(--muted-foreground));
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: hsl(var(--muted-foreground));
    cursor: pointer;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: hsl(var(--foreground));
}

.password-toggle svg {
    width: 1rem;
    height: 1rem;
}

.eye-closed {
    display: none;
}

.btn-primary-auth {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    margin-top: 0.5rem;
}

.btn-primary-auth:hover {
    background: hsl(var(--primary) / 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: hsl(var(--border));
}

.auth-divider span {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.auth-switch {
    text-align: center;
}

.auth-switch p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.switch-btn {
    background: none;
    border: none;
    color: hsl(var(--primary));
    font-weight: 500;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.switch-btn:hover {
    color: hsl(var(--primary) / 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .technology-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tech-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .benefits-grid,
    .how-it-works-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-bottom-content {
        text-align: center;
    }
    
    .social-proof {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dashboard-features {
        grid-template-columns: 1fr;
    }
    
    .cta-header h2 {
        font-size: 2rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-section {
        padding-top: 5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title h1 {
        font-size: 1.75rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
}