:root {
    --primary-color: #eeff56;
    --primary-dark: #d4e63a;
    --secondary-color: #0000ee;
    --text-dark: #333333;
    --text-light: #555555;
    --text-muted: #666666;
    --bg-light: #fbfaf9;
    --bg-white: #ffffff;
    --bg-section: #f5f8fa;
    --border-light: #e5e5e5;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-link {
    font-weight: 500;
    color: var(--text-light) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-primary {
    background-color: var(--text-dark);
    border-color: var(--text-dark);
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--text-light);
    border-color: var(--text-light);
    transform: translateY(-1px);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f0ff8a 100%);
}

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

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

.shape {
    position: absolute;
    border-radius: 20px;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.4);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
    top: 40%;
    right: 40%;
    animation-delay: 1s;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 68px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: -0.8px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn-hero {
    background-color: var(--text-dark);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero:hover {
    background-color: var(--text-light);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-note {
    margin-top: 1rem;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.hero-demo {
    position: relative;
    z-index: 2;
}

.demo-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.demo-header {
    background: #f8f9fa;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
}

.demo-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.control:nth-child(1) { background: #ff5f57; }
.control:nth-child(2) { background: #ffbd2e; }
.control:nth-child(3) { background: #28ca42; }

.demo-title {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.demo-content {
    display: flex;
    height: 300px;
}

.demo-sidebar {
    width: 60px;
    background: var(--text-dark);
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    gap: 12px;
}

.sidebar-item {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-item.active {
    background: var(--primary-color);
    color: var(--text-dark);
}

.demo-main {
    flex: 1;
    padding: 20px;
    background: white;
}

.agent-card {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.agent-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.agent-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.lead-insights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.insight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 12px;
}

.insight-label {
    color: var(--text-muted);
    font-weight: 500;
}

.insight-value {
    color: var(--text-dark);
    font-weight: 600;
}

.generating-badge {
    background: var(--secondary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-section {
    background: white;
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: left;
}

.testimonial-section {
    background: var(--bg-section);
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.testimonial-text p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--text-dark);
}

.author-title {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.company-logo {
    margin-top: 8px;
    font-size: 20px;
}

.trust-section {
    background: white;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-title {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.logo-item i {
    font-size: 20px;
}

.awards-section {
    background: var(--bg-section);
}

.award-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
}

.award-badge i {
    font-size: 24px;
}

.award-text {
    text-align: left;
}

.award-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.award-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.features-section {
    background: white;
    padding: 100px 0;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 32px;
    color: var(--text-dark);
}

.feature-demo {
    padding: 40px;
}

.demo-categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.category-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.feature-video {
    padding: 40px;
}

.video-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-button {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.cta-section {
    background: var(--primary-color);
    padding: 100px 0;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-primary {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    background: transparent;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--text-dark);
    color: white;
}

.footer {
    background: var(--text-dark);
    color: white;
}

.footer-brand .logo-icon {
    background: var(--primary-color);
    color: var(--text-dark);
}

.footer-brand .logo-text {
    color: white;
}

.footer-description {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 2rem 0;
}

.footer-copyright,
.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
        line-height: 52px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .trust-logos {
        gap: 20px;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-container {
        max-width: 100%;
    }
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.testimonial-card,
.award-badge,
.feature-demo,
.cta-section {
    opacity: 0;
    transform: translateY(30px);
}
