/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ED1C24;
    --primary-dark: #C41E3A;
    --primary-light: #FF4444;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 12px 0;
}

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

.logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.nav-cta {
    display: flex;
    gap: 12px;
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 4px 20px rgba(237, 28, 36, 0.35);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

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

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(237, 28, 36, 0.45);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(237, 28, 36, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Gradient Orbs Background */
.gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea, var(--primary-light));
    top: 50%;
    right: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -150px;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 998;
    animation: slideInRight 0.5s ease-out 2s backwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 40px rgba(237, 28, 36, 0.4);
    transition: all 0.3s;
    animation: float-btn 3s ease-in-out infinite;
}

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

.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(237, 28, 36, 0.5);
}

.floating-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
}

.floating-text {
    font-size: 16px;
}

/* Particles Background */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(237, 28, 36, 0.3);
    border-radius: 50%;
    animation: float-particle 20s infinite;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Hero Section */
.hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.6;
    }
}

/* Hero Announcement */
.hero-announcement {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.1), rgba(255, 68, 68, 0.05));
    border: 2px solid rgba(237, 28, 36, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    animation: slideInDown 0.8s ease-out, glow-pulse 3s ease-in-out infinite 0.8s;
    cursor: pointer;
    transition: all 0.3s;
}

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

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(237, 28, 36, 0);
    }
}

.hero-announcement:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: var(--primary-color);
}

.announcement-icon {
    font-size: 20px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.announcement-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.announcement-arrow {
    font-size: 18px;
    color: var(--primary-color);
    animation: bounce-right 1s ease-in-out infinite;
}

@keyframes bounce-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

/* Animated Commands */
.animated-commands {
    position: relative;
    height: 50px;
    margin-bottom: 40px;
}

.command-bubble {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(237, 28, 36, 0.1);
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.command-bubble.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-title {
    font-size: 76px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text-dark);
    letter-spacing: -0.04em;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 3s ease-in-out infinite;
}

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

.typing-text {
    position: relative;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

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

@keyframes btn-glow-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(237, 28, 36, 0.35), 0 0 0 0 rgba(237, 28, 36, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(237, 28, 36, 0.45), 0 0 0 10px rgba(237, 28, 36, 0);
    }
}

.btn-arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.play-icon {
    display: inline-block;
    margin-right: 8px;
}

.hero-social-proof {
    margin-top: 48px;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.proof-avatars {
    display: flex;
}

.proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 3px solid white;
    margin-left: -12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: popIn 0.5s ease-out backwards;
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-avatar:nth-child(1) { animation-delay: 0.9s; background: linear-gradient(135deg, #FF6B6B, #FF8E8E); }
.proof-avatar:nth-child(2) { animation-delay: 1.0s; background: linear-gradient(135deg, #4ECDC4, #70D8D0); }
.proof-avatar:nth-child(3) { animation-delay: 1.1s; background: linear-gradient(135deg, #95E1D3, #B1E8DE); }
.proof-avatar:nth-child(4) { animation-delay: 1.2s; background: linear-gradient(135deg, #F38181, #F5A5A5); }
.proof-avatar:nth-child(5) { 
    animation-delay: 1.3s; 
    background: var(--text-dark);
    font-size: 11px;
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.proof-text span {
    font-size: 14px;
    color: var(--text-medium);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-trust {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 48px;
}

.trusted-by {
    margin-top: 60px;
}

.trusted-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-logos {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.company-logo {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-medium);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-logo i {
    font-size: 20px;
    color: var(--text-light);
    transition: opacity 0.3s;
}

.company-logo:hover {
    opacity: 1;
}

/* iPhone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 700px;
}

.iphone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.iphone-frame {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    padding-top: 32px;
    font-size: 12px;
    font-weight: 600;
}

.time {
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 4px;
    font-size: 10px;
}

.app-content {
    flex: 1;
    padding: 20px;
    overflow: hidden;
}

.app-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.app-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

.app-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.chat-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.chat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.chat-item:hover {
    transform: translateX(4px) scale(1.02);
    box-shadow: 0 4px 16px rgba(237, 28, 36, 0.15);
    border-color: rgba(237, 28, 36, 0.1);
}

.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.chat-details {
    flex: 1;
    min-width: 0;
}

.chat-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.chat-message {
    font-size: 12px;
    color: var(--text-medium);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-time {
    font-size: 11px;
    color: var(--text-light);
    flex-shrink: 0;
}

.ai-suggestion-box {
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.12), rgba(255, 68, 68, 0.08));
    border: 1px solid rgba(237, 28, 36, 0.25);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.ai-suggestion-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.suggestion-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.suggestion-text {
    font-size: 11px;
    color: var(--text-dark);
    line-height: 1.4;
}

.suggestion-text strong {
    display: block;
    margin-bottom: 2px;
}

.app-navigation {
    display: flex;
    justify-content: space-around;
    padding: 12px 16px;
    background: white;
    border-top: 1px solid var(--border-color);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--text-light);
    transition: color 0.2s;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item span:first-child {
    font-size: 20px;
}

/* Hero Features */
.hero-features {
    padding: 60px 0;
    background: white;
}

.quick-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.quick-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    padding: 20px;
    border-radius: 16px;
    background: transparent;
}

.quick-feature:hover {
    transform: translateY(-6px);
    background: rgba(237, 28, 36, 0.05);
}

.feature-emoji {
    font-size: 36px;
    transition: transform 0.3s;
}

.quick-feature:hover .feature-emoji {
    transform: scale(1.1) rotate(-5deg);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUp 0.6s ease-out backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
    animation: bounce 2s ease-in-out infinite;
}

.stat-card:nth-child(2) .stat-icon { animation-delay: 0.2s; }
.stat-card:nth-child(3) .stat-icon { animation-delay: 0.4s; }
.stat-card:nth-child(4) .stat-icon { animation-delay: 0.6s; }

.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Demo Section */
.demo-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.demo-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.demo-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.demo-tab {
    padding: 14px 28px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.demo-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s;
}

.demo-tab span {
    position: relative;
    z-index: 1;
}

.demo-tab:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.demo-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(237, 28, 36, 0.3);
}

.demo-content {
    position: relative;
    min-height: 400px;
}

.demo-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.demo-panel.active {
    position: relative;
    opacity: 1;
        transform: translateY(0);
    pointer-events: all;
}

.demo-visual {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.message-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.platform-icon {
    padding: 20px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    animation: float 3s ease-in-out infinite;
}

.platform-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.platform-icon.buzzz {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 8px 32px rgba(237, 28, 36, 0.3);
    animation-delay: 0.5s;
}

.platform-icon.slack {
    background: linear-gradient(135deg, #4A154B, #611f69);
    color: white;
    animation-delay: 1s;
}

.flow-arrow {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
    animation: pulse-arrow 2s ease-in-out infinite;
}

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

.ai-demo-box {
    max-width: 600px;
    margin: 0 auto 32px;
}

.user-query {
    background: var(--bg-light);
    padding: 20px 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    border-left: 4px solid var(--primary-color);
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ai-response {
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.1), rgba(255, 68, 68, 0.05));
    padding: 20px 24px;
    border-radius: 16px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    border: 2px solid rgba(237, 28, 36, 0.2);
    animation: slideInRight 0.6s ease-out 0.3s backwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.personas-demo {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.persona-preview-card {
    padding: 24px 32px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.persona-preview-card:nth-child(1) { animation-delay: 0.1s; }
.persona-preview-card:nth-child(2) { animation-delay: 0.2s; }
.persona-preview-card:nth-child(3) { animation-delay: 0.3s; }
.persona-preview-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Button Styles */
.btn-primary,
.btn-secondary,
.floating-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:active,
.btn-secondary:active,
.floating-btn:active {
    transform: scale(0.95);
}

/* Smooth Card Transitions */
.stat-card,
.use-case-card,
.security-badge-item,
.integration-logo-item,
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Hover Effects Enhancement */
.feature-card:hover,
.demo-tab:hover,
.persona-card:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

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

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Live Demo Section */
.live-demo-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.demo-video-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-top: 60px;
}

.demo-video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s;
}

.demo-video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.play-button-large {
    margin-bottom: 24px;
    transition: all 0.3s;
    animation: pulse-play 2s ease-in-out infinite;
}

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

.video-placeholder:hover .play-button-large {
    transform: scale(1.15);
}

.video-overlay h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 8px;
}

.video-overlay p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.demo-features-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.demo-feature-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.demo-feature-item:hover {
    border-color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(237, 28, 36, 0.1);
}

.demo-feature-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.demo-feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.demo-feature-text p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Success Stories Section */
.success-stories-section {
    padding: 120px 0;
    background: white;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.success-story-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.success-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.success-story-card:hover::before {
    transform: scaleX(1);
}

.success-story-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(237, 28, 36, 0.15);
    border-color: var(--primary-color);
}

.story-metric {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-symbol {
    font-size: 48px;
    margin-left: 8px;
}

.success-story-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.success-story-card > p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: bounce 2s ease-in-out infinite;
}

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

.newsletter-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.newsletter-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
}

.newsletter-input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.newsletter-input:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 18px 36px;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #000;
    transform: scale(1.05);
}

.newsletter-privacy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.scroll-to-top svg {
    color: inherit;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 180px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(237, 28, 36, 0.4);
    transition: all 0.3s;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(237, 28, 36, 0.5);
}

.chat-toggle svg {
    width: 28px;
    height: 28px;
    stroke: white;
    transition: all 0.3s;
}

.chat-icon {
    display: block;
}

.close-icon {
    display: none;
}

.chat-widget.active .chat-icon {
    display: none;
}

.chat-widget.active .close-icon {
    display: block;
}

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    max-height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s;
}

.chat-widget.active .chat-window {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.chat-header {
    padding: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 20px 20px 0 0;
}

.chat-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.chat-header p {
    font-size: 14px;
    opacity: 0.9;
}

.chat-body {
    padding: 24px;
    max-height: 380px;
    overflow-y: auto;
}

.chat-message {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.message-content p {
    background: var(--bg-light);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-reply {
    padding: 10px 16px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-reply:hover {
    border-color: var(--primary-color);
    background: rgba(237, 28, 36, 0.05);
    transform: translateX(4px);
}

.persona-preview-card:hover {
    transform: scale(1.1) rotate(-5deg);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(237, 28, 36, 0.2);
}

.voice-wave-animation {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: flex-end;
    height: 120px;
    margin-bottom: 32px;
}

.voice-bar {
    width: 12px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    border-radius: 6px;
    animation: voice-wave 1s ease-in-out infinite;
}

.voice-bar:nth-child(1) { animation-delay: 0s; }
.voice-bar:nth-child(2) { animation-delay: 0.1s; }
.voice-bar:nth-child(3) { animation-delay: 0.2s; }
.voice-bar:nth-child(4) { animation-delay: 0.3s; }
.voice-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes voice-wave {
    0%, 100% {
        height: 30px;
    }
    50% {
        height: 100px;
    }
}

.demo-description {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-track {
    overflow: hidden;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 16px rgba(237, 28, 36, 0.2);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    background: var(--primary-light);
}

/* Security Section */
.security-section {
    padding: 100px 0;
    background: white;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.security-badge-item {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out backwards;
}

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

.security-badge-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(237, 28, 36, 0.15);
}

.security-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.security-badge-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.security-badge-item p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

.press-mentions {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px;
}

.press-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.press-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.press-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-medium);
    opacity: 0.6;
    transition: all 0.3s;
    cursor: pointer;
}

.press-logo:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(237, 28, 36, 0.08);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(237, 28, 36, 0.15);
    border-color: var(--primary-color);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.stars {
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Comparison Section */
.comparison-section {
    padding: 120px 0;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 700px;
}

.comparison-table thead {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.comparison-table th {
    padding: 24px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.comparison-table th:first-child {
    text-align: left;
}

.highlight-col {
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.05), rgba(255, 68, 68, 0.05)) !important;
    position: relative;
}

.highlight-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.table-logo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.table-logo span:first-child {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
}

.badge-new {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table td:first-child {
    text-align: left;
}

.comparison-table tbody tr:hover {
    background: rgba(237, 28, 36, 0.02);
}

.check {
    color: #10b981;
    font-size: 24px;
    font-weight: 700;
}

.cross {
    color: #ef4444;
    font-size: 24px;
    font-weight: 700;
}

.partial {
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 600;
}

/* Integration Showcase */
.integrations-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.integration-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
    animation: popIn 0.6s ease-out backwards;
}

.integration-logo-item:nth-child(1) { animation-delay: 0.1s; }
.integration-logo-item:nth-child(2) { animation-delay: 0.2s; }
.integration-logo-item:nth-child(3) { animation-delay: 0.3s; }
.integration-logo-item:nth-child(4) { animation-delay: 0.4s; }
.integration-logo-item:nth-child(5) { animation-delay: 0.5s; }
.integration-logo-item:nth-child(6) { animation-delay: 0.6s; }
.integration-logo-item:nth-child(7) { animation-delay: 0.7s; }
.integration-logo-item:nth-child(8) { animation-delay: 0.8s; }
.integration-logo-item:nth-child(9) { animation-delay: 0.9s; }
.integration-logo-item:nth-child(10) { animation-delay: 1.0s; }
.integration-logo-item:nth-child(11) { animation-delay: 1.1s; }
.integration-logo-item:nth-child(12) { animation-delay: 1.2s; }

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

.logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 400;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.logo-circle i {
    font-size: 40px;
}

.integration-logo-item:hover .logo-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.whatsapp-bg { background: linear-gradient(135deg, #25D366, #128C7E); }
.telegram-bg { background: linear-gradient(135deg, #0088cc, #006699); }
.slack-bg { background: linear-gradient(135deg, #4A154B, #611f69); }
.discord-bg { background: linear-gradient(135deg, #5865F2, #4752C4); }
.signal-bg { background: linear-gradient(135deg, #3A76F0, #2E5EBF); }
.messenger-bg { background: linear-gradient(135deg, #00B2FF, #0084FF); }
.teams-bg { background: linear-gradient(135deg, #6264A7, #4B4D8A); }
.instagram-bg { background: linear-gradient(135deg, #E1306C, #C13584); }
.twitter-bg { background: linear-gradient(135deg, #1DA1F2, #0C85D0); }
.linkedin-bg { background: linear-gradient(135deg, #0077B5, #005885); }
.wechat-bg { background: linear-gradient(135deg, #09B83E, #078C2E); }
.viber-bg { background: linear-gradient(135deg, #7360F2, #5B4ADB); }

.logo-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.integration-cta {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.integration-cta p {
    font-size: 16px;
    color: var(--text-medium);
}

.integration-cta strong {
    color: var(--primary-color);
}

/* Roadmap Section */
.roadmap-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--border-color) 100%);
}

.roadmap-item {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
    animation: slideInLeft 0.6s ease-out backwards;
}

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

.roadmap-marker {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.roadmap-item.completed .roadmap-marker {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
}

.roadmap-item.active .roadmap-marker {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.roadmap-item.upcoming .roadmap-marker {
    background: white;
    border-color: var(--border-color);
}

.marker-icon {
    font-size: 32px;
    color: white;
    font-weight: 700;
}

.roadmap-item.upcoming .marker-icon {
    color: var(--text-light);
}

.pulse-dot {
    display: block;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.roadmap-content {
    flex: 1;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.roadmap-item:hover .roadmap-content {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(237, 28, 36, 0.1);
    transform: translateX(8px);
}

.roadmap-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    background: var(--bg-light);
    color: var(--text-medium);
}

.roadmap-badge.current {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.roadmap-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.roadmap-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}

.roadmap-date {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Use Cases Section */
.use-cases-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.use-case-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case-card:hover::before {
    transform: scaleX(1);
}

.use-case-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(237, 28, 36, 0.15);
}

.use-case-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.use-case-card:nth-child(even) .use-case-icon {
    animation-delay: 0.5s;
}

.use-case-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.use-case-description {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}

.use-case-features {
    list-style: none;
    padding: 0;
}

.use-case-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    font-size: 14px;
    transition: color 0.3s;
}

.use-case-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

.use-case-card:hover .use-case-features li {
    color: var(--text-dark);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 24px 28px;
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(237, 28, 36, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 16px;
}

/* Scroll Reveal */
.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-description {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-medium);
    font-size: 15px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-medium);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.badge-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
}

.badge-pill {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.badge-pill.b2b {
    background: linear-gradient(135deg, #2596be, #3aabce);
    color: white;
}

.badge-pill.synergy {
    background: linear-gradient(135deg, #9333ea, #c084fc);
    color: white;
}

.consumer-card {
    border-left: 4px solid var(--primary-color);
}

.b2b-card {
    border-left: 4px solid #2596be;
}

.synergy-card {
    border-left: 4px solid #9333ea;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.02), rgba(192, 132, 252, 0.02));
}

/* Buzz Personas Section */
.buzz-personas {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.buzz-personas::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.personas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.personas-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
}

.personas-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.persona-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.persona-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.persona-feature h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.persona-feature p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

.persona-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.persona-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.persona-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(237, 28, 36, 0.2);
    border-color: var(--primary-color);
}

.persona-avatar {
    font-size: 64px;
    margin-bottom: 16px;
    filter: grayscale(0.3);
    transition: filter 0.3s;
}

.persona-card:hover .persona-avatar {
    filter: grayscale(0);
}

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

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.workflow-example {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.workflow-card {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.workflow-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.workflow-step {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
}

.workflow-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.workflow-description {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.workflow-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consumer-tag {
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.1), rgba(255, 68, 68, 0.1));
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.b2b-tag {
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.1), rgba(58, 171, 206, 0.1));
    color: #2596be;
    border: 1px solid #2596be;
}

.synergy-tag {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(192, 132, 252, 0.1));
    color: #9333ea;
    border: 1px solid #9333ea;
}

.workflow-arrow {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
}

/* Integrations Section */
.integrations {
    padding: 100px 0;
    background: white;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.text-link:hover {
    text-decoration: underline;
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.integration-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.integration-description {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.integration-list {
    list-style: none;
}

.integration-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.list-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.integration-list strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 16px;
}

.integration-list p {
    color: var(--text-medium);
    font-size: 14px;
}

.integration-diagram {
    position: relative;
    height: 400px;
    background: var(--bg-light);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.diagram-node {
    background: white;
    border-radius: 12px;
    padding: 20px 32px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.main-node {
    border: 2px solid var(--primary-color);
}

.ai-node {
    margin-top: 40px;
    border: 2px solid var(--primary-light);
}

.node-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.node-label {
    font-weight: 600;
    color: var(--text-dark);
}

.diagram-connection {
    width: 2px;
    height: 40px;
    background: var(--primary-color);
    margin: 0 auto;
}

.diagram-apps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 40px;
}

.app-node {
    background: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    border: 1px solid var(--border-color);
}

.supported-platforms {
    text-align: center;
}

.platforms-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.platforms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.platform-badge {
    background: var(--bg-light);
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.platform-badge:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-plan {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 16px;
    color: var(--text-medium);
}

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

.pricing-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    font-size: 15px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* Waitlist Section */
.waitlist-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.waitlist-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.waitlist-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.1), rgba(255, 68, 68, 0.05));
    border: 2px solid rgba(237, 28, 36, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 32px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(237, 28, 36, 0);
    }
}

.waitlist-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

.waitlist-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 48px;
    line-height: 1.6;
}

.waitlist-form {
    margin-bottom: 60px;
}

.form-group {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 16px;
}

.waitlist-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: white;
}

.waitlist-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.1);
}

.waitlist-input::placeholder {
    color: var(--text-light);
}

.form-note {
    font-size: 14px;
    color: var(--text-medium);
}

.waitlist-benefits {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.benefit-item {
    text-align: center;
    transition: transform 0.3s;
    animation: fadeInUp 0.6s ease-out backwards;
}

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

.benefit-item:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.countdown-timer {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(237, 28, 36, 0.1);
}

.countdown-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-numbers {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 100px;
}

.countdown-value {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(237, 28, 36, 0.2);
    animation: countPulse 1s ease-in-out infinite;
}

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

.countdown-unit {
    display: block;
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Get the App Section */
.get-app {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.get-app-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.get-app-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.1), rgba(255, 68, 68, 0.05));
    border-radius: 30px;
    color: var(--primary-color);
    animation: float-rotate 4s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(237, 28, 36, 0.15);
}

.get-app-icon svg {
    width: 64px;
    height: 64px;
}

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

.get-app-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.get-app-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.get-app-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.btn-cta {
    background: white !important;
    color: var(--primary-color) !important;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-cta:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

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

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

.footer-logo {
    margin-bottom: 16px;
}

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

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

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

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

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

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-link {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .animated-commands {
        justify-content: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-cta {
        justify-content: center;
    }

    .trusted-by {
        text-align: center;
        margin-top: 40px;
    }

    .company-logos {
        justify-content: center;
    }

    .hero-visual {
        height: 600px;
    }

    .iphone-frame {
        width: 280px;
        height: 560px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-tabs {
        gap: 8px;
    }

    .demo-tab {
        padding: 12px 20px;
        font-size: 14px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .waitlist-title {
        font-size: 40px;
    }

    .countdown-numbers {
        gap: 20px;
    }

    .countdown-item {
        min-width: 80px;
    }

    .countdown-value {
        font-size: 36px;
    }

    .form-group {
        flex-direction: column;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .integration-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .carousel-btn {
        display: none;
    }

    .hero-title {
        font-size: 58px;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        padding: 14px 24px;
    }
    
    .chat-widget {
        right: 90px;
        bottom: 20px;
    }

    .scroll-to-top {
        right: 160px;
        bottom: 20px;
    }

    .personas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .personas-features {
        grid-template-columns: 1fr;
    }

    .workflow-example {
        flex-direction: column;
        gap: 24px;
    }

    .workflow-arrow {
        transform: rotate(90deg);
    }

    .integration-content {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .quick-features {
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .iphone-frame {
        width: 260px;
        height: 520px;
    }

    .hero-visual {
        height: 520px;
    }

    .quick-features {
        gap: 24px;
    }

    .quick-feature {
        font-size: 14px;
    }

    .feature-emoji {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .waitlist-title {
        font-size: 32px;
    }

    .waitlist-benefits {
        gap: 32px;
    }

    .countdown-numbers {
        gap: 16px;
    }

    .countdown-item {
        min-width: 70px;
    }

    .countdown-value {
        font-size: 28px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-announcement {
        font-size: 13px;
        padding: 10px 20px;
    }

    .proof-avatars {
        transform: scale(0.9);
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .integration-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .press-logos {
        gap: 24px;
    }

    .press-logo {
        font-size: 16px;
    }

    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-marker {
        width: 60px;
        height: 60px;
    }

    .marker-icon {
        font-size: 24px;
    }

    .floating-cta {
        bottom: 15px;
        right: 15px;
    }

    .floating-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .floating-icon {
        font-size: 20px;
    }

    .demo-video-wrapper {
        grid-template-columns: 1fr;
    }

    .success-stories-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .chat-widget {
        right: 20px;
        bottom: 100px;
    }

    .scroll-to-top {
        right: 20px;
        bottom: 180px;
    }

    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;
        bottom: 120px;
    }
}

