/* Base Styles */
:root {
    --primary-blue: #818CF8;
    --primary-purple: #C084FC;
    --primary-green: #34D399;
    --primary-yellow: #FBBF24;
    --secondary-blue: #6366F1;
    --secondary-purple: #7C3AED;
    --secondary-green: #10B981;
    --secondary-yellow: #F59E0B;
    
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    
    --bg-primary: #FFFFFF;
    --bg-accent: #F3F4F6;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1280px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 8px;
}

.navbar-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.navbar-wrapper:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.98);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 0 8px;
}

.nav-brand .logo {
    width: 32px;
    height: 32px;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(2, 132, 199, 0.1));
    color: #0284C7;
}

.dropdown-toggle {
    position: relative;
}

.chevron {
    transition: transform 0.2s ease;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(2, 132, 199, 0.08));
    color: #0284C7;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icons {
    display: flex;
    gap: 8px;
    padding-right: 8px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    margin-right: 4px;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
    background: white;
    border-color: rgba(14, 165, 233, 0.3);
}

.btn-signin {
    padding: 8px 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.btn-signin:hover {
    background: rgba(0, 0, 0, 0.05);
}

.btn-demo {
    padding: 10px 24px;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-demo:hover {
    background: linear-gradient(135deg, #0284C7, #0369A1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    box-shadow: 0 4px 12px rgba(129, 140, 248, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(129, 140, 248, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--bg-accent);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-xlarge {
    padding: 20px 40px;
    font-size: 20px;
    border-radius: var(--border-radius-lg);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #E0F2FE 0%, #BAE6FD 25%, #7DD3FC 50%, #38BDF8 75%, #0EA5E9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

/* Cloud shapes */
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(ellipse 600px 300px at 10% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 40%),
        radial-gradient(ellipse 500px 200px at 85% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 40%),
        radial-gradient(ellipse 400px 250px at 50% 60%, rgba(255, 255, 255, 0.4) 0%, transparent 35%),
        radial-gradient(ellipse 700px 300px at 30% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 45%),
        radial-gradient(ellipse 450px 200px at 70% 75%, rgba(255, 255, 255, 0.35) 0%, transparent 40%);
    pointer-events: none;
    animation: floatClouds 60s ease-in-out infinite;
}

@keyframes floatClouds {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(30px) translateY(-20px); }
    50% { transform: translateX(-20px) translateY(10px); }
    75% { transform: translateX(20px) translateY(-10px); }
}

/* Stars */
.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.star-large {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.star:nth-child(odd) {
    animation-delay: 1s;
}

.star:nth-child(even) {
    animation-delay: 2s;
}

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

/* Cloud container */
.cloud-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.cloud {
    position: absolute;
    opacity: 0.7;
}

.cloud-1 {
    width: 150px;
    top: 10%;
    left: 5%;
    animation: driftCloud 45s ease-in-out infinite;
}

.cloud-2 {
    width: 200px;
    top: 25%;
    right: 10%;
    animation: driftCloud 55s ease-in-out infinite reverse;
    animation-delay: -5s;
}

.cloud-3 {
    width: 120px;
    top: 60%;
    left: 15%;
    animation: driftCloud 50s ease-in-out infinite;
    animation-delay: -10s;
}

.cloud-4 {
    width: 180px;
    top: 45%;
    right: 20%;
    animation: driftCloud 60s ease-in-out infinite reverse;
    animation-delay: -15s;
}

@keyframes driftCloud {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(40px) translateY(-10px);
    }
    50% {
        transform: translateX(-30px) translateY(15px);
    }
    75% {
        transform: translateX(20px) translateY(-5px);
    }
}

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

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.float-icon img,
.float-icon svg {
    width: 32px;
    height: 32px;
}

.float-icon.discord {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-icon.github {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.float-icon.jira {
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
}

.float-icon.prometheus {
    bottom: 25%;
    right: 12%;
    animation-delay: 3s;
}

.float-icon.server {
    top: 40%;
    right: 8%;
    animation-delay: 4s;
}

.float-icon.bell {
    top: 35%;
    left: 25%;
    animation-delay: 2.5s;
}

.float-icon.chart {
    bottom: 35%;
    right: 30%;
    animation-delay: 3.5s;
}

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

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 40px;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 24px;
    color: #1F2937;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8), 0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    color: #374151;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #9333EA, #7C3AED);
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.4);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(147, 51, 234, 0.5);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #1F2937;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.hero-illustration {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.6s both;
    position: relative;
    z-index: 2;
}

.discord-window {
    background: #36393F;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-header {
    background: #2F3136;
    padding: 16px 20px;
    border-bottom: 1px solid #202225;
}

.discord-channel {
    color: #8E9297;
    font-size: 16px;
    font-weight: 600;
}

.discord-messages {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.message {
    display: flex;
    gap: 16px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #5865F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.username {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.alert-box {
    background: rgba(237, 66, 69, 0.1);
    border: 1px solid #ED4245;
    border-radius: var(--border-radius);
    padding: 12px 16px;
    color: #FFFFFF;
}

.alert-box.critical {
    border-left: 4px solid #ED4245;
}

.alert-details {
    margin-top: 8px;
    font-size: 14px;
    color: #B9BBBE;
}

.suggestion-box {
    background: rgba(87, 242, 135, 0.1);
    border: 1px solid #57F287;
    border-radius: var(--border-radius);
    padding: 12px 16px;
    color: #FFFFFF;
}

.action-buttons {
    margin-top: 12px;
    display: flex;
    gap: 12px;
}

.approve-btn, .details-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.approve-btn {
    background: #57F287;
    color: #1E1F22;
}

.approve-btn:hover {
    background: #4AE271;
}

.details-btn {
    background: #5865F2;
    color: white;
}

.details-btn:hover {
    background: #4752C4;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.wave-divider svg {
    width: 100%;
    height: auto;
    display: block;
}

.wave-divider.bottom {
    top: -1px;
    bottom: auto;
    transform: rotate(180deg);
}

/* Logo Carousel Section */
.logo-carousel-section {
    padding: 5px 0;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    margin-top: -2px;
}

.logo-carousel-container {
    width: 100%;
    position: relative;
}

/* Gradient masks for fade effect on edges */
.logo-carousel-container::before,
.logo-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-container::before {
    left: 0;
    background: linear-gradient(90deg, #F9FAFB 0%, transparent 100%);
}

.logo-carousel-container::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #F9FAFB 100%);
}

.logo-carousel {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logo-track {
    display: inline-flex;
    animation: scrollLogos 40s linear infinite;
    gap: 48px;
    align-items: center;
    padding: 10px 0;
}

/* Pause on hover */
.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: fit-content;
    white-space: nowrap;
}

.logo-item:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #D1D5DB;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    transition: all 0.3s ease;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: #6B7280;
    transition: all 0.3s ease;
}

/* Individual logo colors */
.logo-icon.buffer { background: #F3F4F6; }
.logo-icon.buffer svg { color: #1FB6FF; }

.logo-icon.relevance { background: #FEF3C7; }
.logo-icon.relevance svg { color: #F59E0B; }

.logo-icon.wati { background: #DCFCE7; }
.logo-icon.wati svg { color: #22C55E; }

.logo-icon.circular { background: #E9D5FF; }
.logo-icon.circular svg { color: #9333EA; }

.logo-icon.i3cabs { background: #FEE2E2; }
.logo-icon.i3cabs svg { color: #EF4444; }

.logo-icon.smokeball { background: #DBEAFE; }
.logo-icon.smokeball svg { color: #3B82F6; }

.logo-icon.madpaws { background: #F3E8FF; }
.logo-icon.madpaws svg { color: #A855F7; }

.logo-icon.figma { background: #FEE4E2; }
.logo-icon.figma svg { color: #FB7185; }

.logo-item:hover .logo-icon {
    transform: scale(1.05);
}

.logo-name {
    font-weight: 600;
    font-size: 15px;
    color: #374151;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.logo-item:hover .logo-name {
    color: #111827;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-carousel-section {
        padding: 30px 0;
    }
    
    .logo-carousel-container::before,
    .logo-carousel-container::after {
        width: 100px;
    }
    
    .logo-track {
        gap: 40px;
        animation-duration: 25s;
    }
    
    .logo-item {
        padding: 10px 16px;
    }
    
    .logo-img {
        width: 28px;
        height: 28px;
    }
    
    .logo-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo-carousel-container::before,
    .logo-carousel-container::after {
        width: 60px;
    }
    
    .logo-track {
        gap: 30px;
        animation-duration: 20s;
    }
    
    .logo-item {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .logo-img {
        width: 24px;
        height: 24px;
    }
}

/* Problem Section */
.problem-section {
    padding: 120px 0 100px;
    background: linear-gradient(180deg, #E0F2FE 0%, #BAE6FD 25%, #7DD3FC 50%, #38BDF8 75%, #0EA5E9 100%);
    position: relative;
    margin-top: -2px;
    overflow: hidden;
}

/* Features Section */
.features-section {
    padding: 120px 0 100px;
    background: linear-gradient(180deg, #E0F2FE 0%, #BAE6FD 25%, #7DD3FC 50%, #38BDF8 75%, #0EA5E9 100%);
    position: relative;
    overflow: hidden;
}

/* Badge above heading */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(14, 165, 233, 0.2);
    border-radius: 50px;
    color: #0284C7;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
    margin-bottom: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.2);
}

/* Features section specific badge */
.features-section .section-badge {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #0EA5E9;
    color: #0EA5E9;
    box-shadow: 0 4px 12px #0EA5E9;
}
.features-section .section-badge:hover {
    box-shadow: 0 6px 20px #0EA5E9;
}

/* Testimonials section specific badge */
.testimonials-section .section-badge {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(251, 251, 251, 0.3);
    color: #000000;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}
.testimonials-section .section-badge:hover {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}
.badge-icon {
    font-size: 16px;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80" preserveAspectRatio="none"><path d="M0,40 C360,80 720,0 1080,40 C1260,60 1380,70 1440,70 L1440,0 L0,0 Z" fill="white"/></svg>');
    background-size: 100% 100%;
    z-index: 1;
}

/* Layout: centered content */
.problem-section .container {
    position: relative;
    z-index: 2;
}

.section-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-lead {
    margin-top: 16px;
    font-size: 22px;
    font-weight: 600;
    color: white;
    font-style: italic;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.section-description {
    margin-top: 24px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Floating pills visual */
.floating-pills {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(255, 255, 255, 0.2);
    color: #0F172A;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    animation: gentleFloat 6s ease-in-out infinite;
}

/* hover effect */
.pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(255, 255, 255, 0.3);
    border-color: rgba(14, 165, 233, 0.3);
    background: white;
}

/* Icon for pills */
.pill .pill-icon {
    font-size: 20px;
    filter: grayscale(0%);
}

/* Individual pill animations */
.pill:nth-child(1) { animation-delay: 0s; }
.pill:nth-child(2) { animation-delay: 0.3s; }
.pill:nth-child(3) { animation-delay: 0.6s; }
.pill:nth-child(4) { animation-delay: 0.9s; }
.pill:nth-child(5) { animation-delay: 1.2s; }
.pill:nth-child(6) { animation-delay: 1.5s; }
.pill:nth-child(7) { animation-delay: 1.8s; }
.pill:nth-child(8) { animation-delay: 2.1s; }

/* Blue chip inside first 2 pills */
.pill-chip {
    padding: 4px 12px;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 4px;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

/* Decorative bubbles */
.decoration-circles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.circle { position: absolute; width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(15, 23, 42, 0.08); background: rgba(255,255,255,0.5); animation: bubble 14s linear infinite; }
.circle-1 { top: 8%; left: 6%; animation-delay: -2s; }
.circle-2 { top: 22%; right: 8%; width: 8px; height: 8px; animation-delay: -6s; }
.circle-3 { top: 48%; left: 12%; width: 6px; height: 6px; animation-delay: -10s; }
.circle-4 { bottom: 18%; right: 12%; animation-delay: -4s; }
.circle-5 { bottom: 6%; left: 20%; width: 8px; height: 8px; animation-delay: -8s; }

@keyframes bubble { 0% { transform: translateY(0); opacity: .8; } 100% { transform: translateY(-30px); opacity: .3; } }

/* Legacy problem cards (kept for backwards compatibility) */
.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card.highlight {
    background: linear-gradient(135deg, #EDE9FE 0%, #E9D5FF 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.card-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
}

.problem-card h3 {
    font-size: 20px;
    color: #1F2937;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* Solution Section */
.solution-section {
    padding: 100px 0 80px;
    background: white;
    position: relative;
}

.solution-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-section .section-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.solution-section .section-subtitle {
    font-size: 20px;
    color: #64748B;
    font-weight: 500;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.chat-demo {
    background: #2F3136;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-message {
    display: flex;
    gap: 14px;
}

.chat-message .avatar {
    width: 40px;
    height: 40px;
    background: #5865F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.message-bubble {
    background: transparent;
    padding: 0;
    flex: 1;
    color: #DCE0E4;
    font-size: 15px;
}

.code-snippet {
    background: #1E1F22;
    color: #34D399;
    padding: 14px 16px;
    border-radius: 8px;
    margin: 12px 0;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    border: 1px solid rgba(52, 211, 153, 0.2);
    line-height: 1.5;
}

.fix-suggestion {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    padding: 14px 16px;
    border-radius: 8px;
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-btn {
    background: #34D399;
    color: #1E1F22;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.mini-btn:hover {
    background: var(--secondary-green);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EDE9FE, #F3E8FF);
    border-radius: 12px;
}

.feature-item h4 {
    font-size: 18px;
    color: #1F2937;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.feature-item p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.agent-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.agent-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.agent-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.agent-card.watcher:hover {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.05), rgba(99, 102, 241, 0.05));
}

.agent-card.triage:hover {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.05), rgba(16, 185, 129, 0.05));
}

.agent-card.fixer:hover {
    border-color: var(--primary-yellow);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(245, 158, 11, 0.05));
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.agent-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-card h3 {
    font-size: 24px;
    color: var(--text-primary);
}

.agent-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-details {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.detail-tag {
    padding: 6px 12px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
}

.testimonial blockquote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial cite {
    color: var(--text-secondary);
    font-style: normal;
}

/* Integration Section */
.integration-section {
    padding: 80px 0;
    background: white;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-4px);
}

.integration-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.integration-icon:hover {
    box-shadow: var(--shadow-lg);
}

.integration-icon img {
    width: 48px;
    height: 48px;
}

.integration-item span {
    font-weight: 600;
    color: var(--text-secondary);
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.05));
}

.security-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.security-icon {
    margin-bottom: 32px;
}

.security-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.security-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.security-features {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.security-badge {
    padding: 12px 24px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    color: var(--text-primary);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-illustration {
    margin-bottom: 40px;
}

.cta-title {
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-tagline {
    text-align: center;
}

.footer-tagline p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.powered-by {
    font-size: 14px;
}

.adk-badge {
    color: var(--primary-yellow);
    font-weight: 600;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    cursor: pointer;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.chat-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--text-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.chat-widget:hover .chat-tooltip {
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 280px;
    height: 100%;
    background: white;
    padding: 80px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-content a {
    display: block;
    padding: 16px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--bg-accent);
}

.mobile-menu-content button {
    width: 100%;
    margin-top: 24px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Features Section - Garden Theme */
.features-section {
    padding: 100px 0;
    background: 0EA5E9;
    position: relative;
    overflow: hidden;
}

/* Grass pattern at bottom */
.features-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120" preserveAspectRatio="none"><path d="M0,60 C144,90 288,30 432,60 C576,90 720,30 864,60 C1008,90 1152,30 1296,60 C1440,90 1440,120 1440,120 L0,120 Z" fill="%233B82F6" opacity="0.3"/><path d="M0,80 C144,100 288,60 432,80 C576,100 720,60 864,80 C1008,100 1152,60 1296,80 C1440,100 1440,120 1440,120 L0,120 Z" fill="%231D4ED8" opacity="0.5"/></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 1;
}

/* Garden elements animations */
.garden-trees {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tree {
    animation: gentleSway 8s ease-in-out infinite;
    transform-origin: bottom center;
}

.tree-1 { animation-delay: 0s; }
.tree-2 { animation-delay: 2s; }
.tree-3 { animation-delay: 1s; }

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

.garden-flowers {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flower {
    animation: flowerBounce 4s ease-in-out infinite;
}

@keyframes flowerBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.garden-butterflies {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.butterfly {
    position: absolute;
    animation: butterflyFly 15s ease-in-out infinite;
}

.butterfly-1 {
    top: 30%;
    left: 10%;
    animation-delay: 0s;
}

.butterfly-2 {
    top: 40%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes butterflyFly {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, -30px) rotate(10deg); }
    50% { transform: translate(150px, 20px) rotate(-5deg); }
    75% { transform: translate(50px, -10px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.garden-birds {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bird {
    animation: birdFly 20s linear infinite;
}

.bird-1 { animation-delay: 0s; }
.bird-2 { animation-delay: 5s; }

@keyframes birdFly {
    0% { transform: translateX(0); }
    100% { transform: translateX(200px); }
}

.features-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.features-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #0EA5E9;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.features-section .section-subtitle {
    font-size: 20px;
    color: #0EA5E9;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.4);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0EA5E9, #0284C7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(14, 165, 233, 0.2);
}

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

.feature-card.highlight {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    color: #1F2937;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tags .tag {
    padding: 6px 12px;
    background: #F1F5F9;
    color: #475569;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-card:hover .tag {
    background: #E2E8F0;
}

/* Testimonials Section - Cityscape/Sunset Theme */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #E0F2FE 0%, #BAE6FD 20%, #7DD3FC 30%, #38bff8b3 48%, #ffffff 80%, #ffffff 100%);

    position: relative;
    overflow: hidden;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-section .section-title {
    color: #000000;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonials-section .section-subtitle {
    color: #000000;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
}

/* Cityscape silhouette */
.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 250" preserveAspectRatio="none"><rect x="50" y="120" width="80" height="130" fill="%231E3A8A" opacity="0.6"/><rect x="150" y="80" width="100" height="170" fill="%232563EB" opacity="0.7"/><rect x="270" y="140" width="60" height="110" fill="%233B82F6" opacity="0.5"/><rect x="350" y="60" width="120" height="190" fill="%2360A5FA" opacity="0.6"/><rect x="490" y="110" width="90" height="140" fill="%2393C5FD" opacity="0.5"/><rect x="600" y="70" width="80" height="180" fill="%23BFDBFE" opacity="0.6"/><rect x="700" y="130" width="70" height="120" fill="%23DBEAFE" opacity="0.5"/><rect x="790" y="50" width="110" height="200" fill="%23EFF6FF" opacity="0.7"/><rect x="920" y="90" width="85" height="160" fill="%23E0F2FE" opacity="0.5"/><rect x="1030" y="115" width="95" height="135" fill="%23BAE6FD" opacity="0.6"/><rect x="1150" y="75" width="100" height="175" fill="%237DD3FC" opacity="0.5"/><rect x="1270" y="105" width="80" height="145" fill="%2338BDF8" opacity="0.4"/></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 1;
}

/* Cityscape animations */
.city-lights {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.window-light {
    animation: windowFlicker 4s ease-in-out infinite;
}

@keyframes windowFlicker {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.sunset-birds {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.bird-sunset-1 {
    animation: birdSunsetFly 25s linear infinite;
}

.bird-sunset-2 {
    animation: birdSunsetFly 30s linear infinite;
    animation-delay: 5s;
}

.bird-sunset-3 {
    animation: birdSunsetFly 35s linear infinite;
    animation-delay: 10s;
}

@keyframes birdSunsetFly {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(400px) translateY(-20px); }
}

.sunset-sun {
    animation: sunPulse 6s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 60px rgba(251, 191, 36, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(251, 191, 36, 0.7);
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
}

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

.testimonial-card.featured {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-color: #86EFAC;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: #64748B;
}

.testimonial-rating {
    font-size: 14px;
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-metrics {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

.testimonial-metrics .metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #10B981;
}

.metric-label {
    font-size: 13px;
    color: #64748B;
}

/* Pricing Section - Ocean/Beach Theme */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #CFFAFE 0%, #A5F3FC 20%, #67E8F9 40%, #22D3EE 60%, #0EA5E9 80%, #0284C7 100%);
    position: relative;
    overflow: hidden;
}

/* Wave pattern at bottom */
.pricing-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 150" preserveAspectRatio="none"><path d="M0,50 C320,150 420,0 720,50 C1020,100 1140,0 1440,40 L1440,150 L0,150 Z" fill="%230369A1" opacity="0.3"/><path d="M0,80 C320,180 420,30 720,80 C1020,130 1140,30 1440,70 L1440,150 L0,150 Z" fill="%230C4A6E" opacity="0.5"/><path d="M0,110 C320,160 420,60 720,110 C1020,160 1140,60 1440,100 L1440,150 L0,150 Z" fill="%23164E63" opacity="0.7"/></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 1;
    animation: waveMotion 10s ease-in-out infinite;
}

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.pricing-section .section-title {
    color: #075985;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.pricing-section .section-subtitle {
    color: #0C4A6E;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
}

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

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

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #10B981;
}

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

.discount-badge {
    padding: 4px 8px;
    background: #10B981;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
    border-color: #0EA5E9;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.plan-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.plan-description {
    color: #64748B;
    margin-bottom: 20px;
}

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

.currency {
    font-size: 24px;
    color: #64748B;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #1F2937;
}

.period {
    font-size: 16px;
    color: #64748B;
}

.custom-price {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #374151;
    border-bottom: 1px solid #F3F4F6;
}

.plan-features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #10B981;
    flex-shrink: 0;
}

.btn-block {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #F9FAFB;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #F9FAFB;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: #64748B;
    line-height: 1.6;
}

/* Video Demo Section */
.video-demo-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #E0F2FE 0%, #BAE6FD 25%, #7DD3FC 50%, #38BDF8 75%, #0EA5E9 100%);
    position: relative;
    overflow: hidden;
}

.video-demo-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 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,96C1248,96,1344,128,1392,144L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.video-demo-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.video-demo-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(46, 46, 46, 0.3);
    color: rgb(0, 0, 0);
}

.video-demo-section .section-title {
    font-size: 56px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin-bottom: 16px;
}

.video-demo-section .section-subtitle {
    font-size: 22px;
    color: rgba(0, 0, 0, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.video-container {
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    background: #000;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.video-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.video-feature svg {
    flex-shrink: 0;
}

.video-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.video-cta-text {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    font-weight: 500;
}

.video-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.video-cta-buttons .btn-primary {
    background: white;
    color: #0284C7;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.video-cta-buttons .btn-primary:hover {
    background: #F9FAFB;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.4);
}

.video-cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.video-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive adjustments for video */
@media (max-width: 768px) {
    .video-demo-section {
        padding: 80px 0;
    }
    
    .video-demo-section .section-title {
        font-size: 36px;
    }
    
    .video-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .video-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .video-cta-buttons button {
        width: 250px;
    }
}

/* Updated Footer */
.footer {
    background: #0F172A;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.footer-description {
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-tagline {
    color: #94A3B8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .agent-cards {
        grid-template-columns: 1fr;
    }

    /* Stack problem section on tablet */
    .problem-section .container { grid-template-columns: 1fr; }
    .floating-pills { min-height: 420px; }
    .pill { right: auto; left: 0; }
    .pill-1 { top: 0; left: 10px; }
    .pill-2 { top: 90px; left: 40px; }
    .pill-3 { top: 180px; left: 0; }
    .pill-4 { top: 270px; left: 50px; }
    .pill-5 { top: 360px; left: 20px; }
}

@media (max-width: 768px) {
    .navbar {
        top: 8px;
        width: calc(100% - 16px);
    }
    
    .navbar-wrapper {
        border-radius: 24px;
        padding: 8px;
    }
    
    .nav-center,
    .nav-icons,
    .btn-signin {
        display: none;
    }
    
    .nav-right {
        gap: 8px;
    }
    
    .btn-demo {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
.section-title {
    font-size: 48px;
    margin-bottom: 16px;
}

/* Larger headline for problem section */
.problem-section .section-title {
    font-size: 52px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}
    .problem-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}