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

:root {
    --primary-blue: #0B9FD8;
    --dark-blue: #0D5E7D;
    --light-blue: #4FC3F7;
    --light-bg: #FFFFFF;
    --lighter-bg: #F8FAFB;
    --card-bg: #FFFFFF;
    --text-primary: #1A1A2E;
    --text-secondary: #5A5A6B;
    --border-color: #E5E7EB;
    --gradient: linear-gradient(135deg, #0B9FD8 0%, #0D5E7D 100%);
    --gradient-hover: linear-gradient(135deg, #4FC3F7 0%, #0B9FD8 100%);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    font-family: var(--font-primary);
    background-color: var(--light-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

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

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    padding: 4px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    pointer-events: auto;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.logo {
    display: block;
    cursor: pointer;
    z-index: 1000;
}

.logo img {
    height: 50px;
    width: 50px;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(11, 159, 216, 0.3));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    position: relative;
    z-index: 1000;
}

.nav-links li {
    position: relative;
    z-index: 1000;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 8px 0;
    font-size: 15px;
    letter-spacing: -0.01em;
    cursor: pointer;
    z-index: 1000;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0B9FD8, #0D5E7D);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(11, 159, 216, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.nav-links a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px) scale(1.5);
    text-shadow: 0 0 20px rgba(11, 159, 216, 0.3);
}

.nav-links a:hover::before {
    width: 100%;
    box-shadow: 0 2px 10px rgba(11, 159, 216, 0.4);
}

.nav-links a:hover::after {
    width: 120px;
    height: 120px;
}

/* Dropdown Navigation */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    margin-top: 16px;
    border: 1px solid var(--border-color);
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
}

.nav-links .dropdown-menu li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    white-space: nowrap;
}

.nav-links .dropdown-menu a::before,
.nav-links .dropdown-menu a::after {
    display: none;
}

.nav-links .dropdown-menu a:hover {
    background: var(--lighter-bg);
    color: var(--primary-blue);
    transform: translateX(4px);
    padding-left: 28px;
}

.cta-button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 14px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.01em;
    font-family: var(--font-primary);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(11, 159, 216, 0.4);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

/* Brand Name Above Social Icons */
.hero-brand-name {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #0B9FD8 0%, #0A4A5E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    text-align: left;
    margin-top: -20px;
}

/* Social Media Links in Hero */
.social-links-hero {
    display: flex;
    gap: 10px;
    margin-bottom: 35px;
    margin-top: -10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(26, 26, 46, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background: rgba(11, 159, 216, 1);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(11, 159, 216, 0.5);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(11, 159, 216, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(13, 94, 125, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.hero-text {
    position: relative;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}



.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: justify;
}

.ai-chat-icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
    animation: bounceChat 2s ease-in-out infinite;
    flex-shrink: 0;
}

.ai-chat-icon svg {
    width: 100%;
    height: 100%;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

/* Demo Dropdown Styles */
.demo-dropdown-container {
    position: relative;
    z-index: 100;
}

.demo-main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 100;
}

.demo-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 8px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.demo-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.demo-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.demo-option:hover {
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.08), rgba(13, 94, 125, 0.08));
    transform: translateX(4px);
}

.demo-icon {
    font-size: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.1), rgba(13, 94, 125, 0.1));
    border-radius: 8px;
}

.demo-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.demo-info p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.btn-primary, .btn-secondary {
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(11, 159, 216, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: rgba(11, 159, 216, 0.1);
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 32px;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.watch-demo-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #0B9FD8, #0D5E7D);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(11, 159, 216, 0.4);
    position: relative;
    z-index: 10;
    pointer-events: all;
    overflow: visible;
}

.watch-demo-button::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        0 0 8px 1px rgba(255, 255, 255, 0.6),
        15px -10px 0 0px white,
        15px -10px 8px 1px rgba(255, 255, 255, 0.5),
        -18px 8px 0 0px white,
        -18px 8px 8px 1px rgba(255, 255, 255, 0.5),
        12px 15px 0 0px white,
        12px 15px 8px 1px rgba(255, 255, 255, 0.5),
        -15px -15px 0 0px white,
        -15px -15px 8px 1px rgba(255, 255, 255, 0.5),
        22px 4px 0 0px white,
        22px 4px 8px 1px rgba(255, 255, 255, 0.5);
    animation: sparkle 2s infinite;
    pointer-events: none;
}

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

.watch-demo-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(11, 159, 216, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.stat h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 4px;
    font-weight: 700;
}

.stat p {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    min-height: 600px;
    height: auto;
    z-index: 1;
}

.hero-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient);
    animation: pulse 4s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient);
    animation: pulse 4s ease-in-out infinite 1s;
}

.circle-3 {
    width: 400px;
    height: 400px;
    border: 3px solid var(--primary-blue);
    background: transparent;
    animation: rotate 20s linear infinite;
}

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

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

.chat-interface {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    overflow: visible;
}

.chat-bubble {
    position: relative;
    padding: 18px 22px;
    border-radius: 20px;
    max-width: 92%;
    animation: slideIn 0.6s ease-out;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.user-bubble {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    align-self: flex-end;
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(11, 159, 216, 0.15);
    border-bottom-right-radius: 5px;
}

.ai-bubble {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    align-self: flex-start;
    background: var(--card-bg);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 8px 30px rgba(11, 159, 216, 0.2);
    animation: slideIn 0.6s ease-out 0.8s backwards;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 24px 32px;
    max-width: 95%;
}

.title-floating-keywords {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 800px;
    pointer-events: none;
    z-index: 10;
}

.title-keyword {
    position: absolute;
    padding: 6px 12px;
    background: var(--gradient);
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(11, 159, 216, 0.3);
    animation: floatKeyword 4s ease-in-out infinite;
    white-space: nowrap;
}

.title-keyword:nth-child(1) { animation-delay: 0s; }
.title-keyword:nth-child(2) { animation-delay: 0.5s; }
.title-keyword:nth-child(3) { animation-delay: 1s; }
.title-keyword:nth-child(4) { animation-delay: 1.5s; }
.title-keyword:nth-child(5) { animation-delay: 2s; }
.title-keyword:nth-child(6) { animation-delay: 2.5s; }
.title-keyword:nth-child(7) { animation-delay: 3s; }
.title-keyword:nth-child(8) { animation-delay: 3.5s; }
.title-keyword:nth-child(9) { animation-delay: 4s; }
.title-keyword:nth-child(10) { animation-delay: 4.5s; }
.title-keyword:nth-child(11) { animation-delay: 5s; }
.title-keyword:nth-child(12) { animation-delay: 5.5s; }
.title-keyword:nth-child(13) { animation-delay: 6s; }
.title-keyword:nth-child(14) { animation-delay: 6.5s; }
.title-keyword:nth-child(15) { animation-delay: 7s; }
.title-keyword:nth-child(16) { animation-delay: 7.5s; }

.ai-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.message-content {
    flex: 1;
    min-width: 380px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.typing-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    animation: fadeOut 0.3s ease-out 1.0s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        display: none;
    }
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: typingDot 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.ai-response {
    color: var(--text-primary);
    line-height: 1.9;
    animation: fadeIn 0.6s ease-out 1.2s backwards;
    font-size: 14.5px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    text-align: justify;
}

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

/* Typing Dots Animation */
.typing-dots {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #64748b;
    animation: typingDot 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    30% {
        opacity: 1;
        transform: scale(1);
    }
}

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

.keyword {
    position: absolute;
    padding: 8px 16px;
    background: var(--gradient);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(11, 159, 216, 0.3);
    animation: floatKeyword 4s ease-in-out infinite;
    white-space: nowrap;
}

.keyword:nth-child(1) { animation-delay: 0s; }
.keyword:nth-child(2) { animation-delay: 0.8s; }
.keyword:nth-child(3) { animation-delay: 1.6s; }
.keyword:nth-child(4) { animation-delay: 2.4s; }
.keyword:nth-child(5) { animation-delay: 3.2s; }

@keyframes floatKeyword {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) scale(1.05);
        opacity: 1;
    }
}

.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    animation: particleFlow 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 0.6s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 1.2s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 1.8s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 2.4s;
}

@keyframes particleFlow {
    0% {
        top: 0%;
        opacity: 0;
        transform: scale(0);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
        transform: scale(0);
    }
}

/* Section Styles */
section {
    padding: 40px 0;
}

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: justify;
}

.trial-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.trial-item {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 15px;
}

/* Services Section */
.services {
    background: var(--lighter-bg);
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 44px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-blue);
    box-shadow: 0 25px 50px rgba(11, 159, 216, 0.15);
}

.service-card.featured {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.05) 0%, rgba(13, 94, 125, 0.05) 100%);
    box-shadow: 0 10px 30px rgba(11, 159, 216, 0.1);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: justify;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

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

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
}

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

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: justify;
}

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

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

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 44px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-blue);
    box-shadow: 0 25px 50px rgba(11, 159, 216, 0.15);
}

.pricing-card.popular {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.05) 0%, rgba(13, 94, 125, 0.05) 100%);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(11, 159, 216, 0.1);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 30px 60px rgba(11, 159, 216, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(11, 159, 216, 0.4);
    animation: glowPulse 2s ease-in-out infinite, floatBadge 3s ease-in-out infinite;
}

.popular-badge-inline {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 10px;
    vertical-align: middle;
    box-shadow: 0 0 15px rgba(11, 159, 216, 0.4);
    animation: glowPulse 2s ease-in-out infinite;
}

.popular-badge::before,
.popular-badge::after {
    content: '✨';
    position: absolute;
    font-size: 16px;
    animation: sparkle 1.5s ease-in-out infinite;
}

.popular-badge::before {
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.3s;
}

.popular-badge::after {
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.6s;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(11, 159, 216, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 60px rgba(11, 159, 216, 0.6);
    }
}

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

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-50%) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

.plan-name {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-family: var(--font-heading);
}

.plan-price {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency {
    font-size: 24px;
    color: var(--text-secondary);
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

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

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    min-height: 48px;
    line-height: 1.7;
    font-size: 15px;
    letter-spacing: -0.01em;
    text-align: justify;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.plan-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    text-align: justify;
}

.plan-button {
    width: 100%;
    padding: 16px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: var(--gradient-hover);
    box-shadow: 0 10px 30px rgba(11, 159, 216, 0.3);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--lighter-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(11, 159, 216, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    padding: 16px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--gradient-hover);
    box-shadow: 0 10px 30px rgba(11, 159, 216, 0.3);
}

/* Footer */
.footer {
    background: var(--lighter-bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

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

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


/* Feature Badges */
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    justify-content: flex-start;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.08) 0%, rgba(13, 94, 125, 0.08) 100%);
    border: 1px solid rgba(11, 159, 216, 0.25);
    border-radius: 18px;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.badge:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(11, 159, 216, 0.3);
}

.badge:nth-child(odd) {
    animation: badgePulse 3s ease-in-out infinite;
}

.badge:nth-child(even) {
    animation: badgePulse 3s ease-in-out infinite 1.5s;
}

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

/* Updated Feature Badges - Smaller */
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    justify-content: flex-start;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.08) 0%, rgba(13, 94, 125, 0.08) 100%);
    border: 1px solid rgba(11, 159, 216, 0.25);
    border-radius: 14px;
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.badge:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 159, 216, 0.3);
}

.badge:nth-child(odd) {
    animation: badgePulse 3s ease-in-out infinite;
}

.badge:nth-child(even) {
    animation: badgePulse 3s ease-in-out infinite 1.5s;
}

/* Fix hero section spacing */
.hero-text {
    margin-bottom: 0;
}

.hero-stats {
    margin-top: 20px;
}

/* Tighter spacing between hero text and visual */
.hero-content {
    gap: 40px;
}

.hero-text {
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero-title {
    margin-bottom: 15px;
}

.hero-subtitle {
    margin-bottom: 20px;
}

.hero-buttons {
    margin-bottom: 20px;
}

/* Adjust hero layout to close gap */
.hero-content {
    gap: 20px;
    align-items: flex-start;
}

.hero-text {
    padding-left: 40px;
}

.hero-visual {
    margin-left: -20px;
}

/* Restore tight spacing like original */
.hero {
    padding: 80px 5% 60px 5%;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    padding-left: 0;
    margin-bottom: 0;
}

.hero-visual {
    flex: 1;
    max-width: 600px;
    margin-left: 0;
}

/* Move feature badges down for better alignment */
.feature-badges {
    margin-top: 35px !important;
}

/* Move feature badges further down */
.feature-badges {
    margin-top: 50px !important;
}

/* Dynamic floating animation for badges */
.badge {
    animation: floatBadge 4s ease-in-out infinite;
}

.badge:nth-child(1) { animation-delay: 0s; }
.badge:nth-child(2) { animation-delay: 0.3s; }
.badge:nth-child(3) { animation-delay: 0.6s; }
.badge:nth-child(4) { animation-delay: 0.9s; }
.badge:nth-child(5) { animation-delay: 1.2s; }
.badge:nth-child(6) { animation-delay: 1.5s; }
.badge:nth-child(7) { animation-delay: 1.8s; }
.badge:nth-child(8) { animation-delay: 2.1s; }
.badge:nth-child(9) { animation-delay: 2.4s; }
.badge:nth-child(10) { animation-delay: 2.7s; }
.badge:nth-child(11) { animation-delay: 3s; }

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

.badge:hover {
    animation-play-state: paused;
}

/* Updated badge hover - no color change, just subtle glow */
.badge:hover {
    animation-play-state: running !important;
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.12) 0%, rgba(13, 94, 125, 0.12) 100%) !important;
    border-color: rgba(11, 159, 216, 0.4) !important;
    color: var(--primary-blue) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(11, 159, 216, 0.2) !important;
}

/* More visible floating animation */
@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-6px) rotate(1deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

.badge {
    animation: floatBadge 3s ease-in-out infinite !important;
}

/* Remove floating animation */
.badge {
    animation: none !important;
}

/* Sparkle effect on hover */
.badge {
    position: relative;
    overflow: visible;
}

.badge::before,
.badge::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.badge:hover::before {
    opacity: 1;
    animation: sparkle1 0.6s ease-out;
}

.badge:hover::after {
    opacity: 1;
    animation: sparkle2 0.6s ease-out 0.1s;
}

@keyframes sparkle1 {
    0% {
        top: 50%;
        left: 10%;
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        top: -10px;
        left: 20%;
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes sparkle2 {
    0% {
        top: 50%;
        right: 10%;
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        top: -10px;
        right: 20%;
        transform: scale(0);
        opacity: 0;
    }
}

/* Add more sparkles using pseudo elements on wrapper */
.feature-badges {
    position: relative;
}

.badge:hover {
    animation-play-state: running !important;
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.15) 0%, rgba(13, 94, 125, 0.15) 100%) !important;
    border-color: rgba(11, 159, 216, 0.5) !important;
    color: var(--primary-blue) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3), 0 0 20px rgba(11, 159, 216, 0.2) !important;
}

/* Continuous sparkles while hovering */
.badge:hover::before {
    opacity: 1;
    animation: sparkle1 0.8s ease-out infinite !important;
}

.badge:hover::after {
    opacity: 1;
    animation: sparkle2 0.8s ease-out 0.2s infinite !important;
}

@keyframes sparkle1 {
    0% {
        top: 50%;
        left: 15%;
        transform: scale(0);
        opacity: 0;
    }
    30% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        top: -15px;
        left: 25%;
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes sparkle2 {
    0% {
        top: 50%;
        right: 15%;
        transform: scale(0);
        opacity: 0;
    }
    30% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        top: -15px;
        right: 25%;
        transform: scale(0);
        opacity: 0;
    }
}

/* Sparkle particle animation */
@keyframes sparkleRise {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    20% {
        opacity: 1;
        transform: translateY(-5px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px) scale(0.5);
    }
}

.sparkle-particle {
    animation: sparkleRise 1s ease-out forwards;
}

/* Sparkles moving horizontally left and right */
@keyframes sparkleRise {
    0% {
        opacity: 0;
        transform: translateX(0) scale(0) rotate(0deg);
    }
    20% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translateX(var(--direction)) scale(0.3) rotate(360deg);
    }
}

.sparkle-particle {
    --direction: 40px;
}

.sparkle-particle:nth-child(even) {
    --direction: -40px;
}

/* Allow sparkles to overflow outside badges */
.badge {
    overflow: visible !important;
    position: relative;
}

.feature-badges {
    overflow: visible !important;
}

/* Cute animated robot emoji */
.cute-robot {
    display: inline-block;
    font-size: 1.3em;
    margin-left: 8px;
    animation: robotWave 2s ease-in-out infinite;
    transform-origin: center;
}

/* Chatbot Speech Bubble */
.chatbot-speech-bubble {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%) translateX(10px);
    background: white;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    opacity: 0.7;
    pointer-events: none;
}

.chatbot-speech-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid white;
}

@keyframes robotWave {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    10% {
        transform: rotate(14deg) scale(1.1);
    }
    20% {
        transform: rotate(-8deg) scale(1.1);
    }
    30% {
        transform: rotate(14deg) scale(1.1);
    }
    40% {
        transform: rotate(-4deg) scale(1.1);
    }
    50% {
        transform: rotate(10deg) scale(1);
    }
    60% {
        transform: rotate(0deg) scale(1);
    }
}

.cute-robot:hover {
    animation: robotBounce 0.5s ease infinite;
}

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

/* Keep robot inline with text */
.cute-robot {
    display: inline-block !important;
    vertical-align: middle;
    margin-left: 6px;
    line-height: 1;
}

.hero-subtitle {
    display: inline;
}

/* Add space above buttons */
.hero-buttons {
    margin-top: 35px !important;
}

/* Animated SVG chatbot */
.cute-robot {
    width: 28px !important;
    height: 28px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin-left: 6px;
    animation: none !important;
}

.cute-robot:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Animated robot.png */
.cute-robot {
    width: 32px !important;
    height: 32px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin-left: 8px;
    animation: robotFloat 2.5s ease-in-out infinite !important;
}

@keyframes robotFloat {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
    }
    25% {
        transform: translateY(-4px) rotate(3deg);
    }
    50% {
        transform: translateY(-8px) rotate(-3deg);
    }
    75% {
        transform: translateY(-4px) rotate(3deg);
    }
}

.cute-robot:hover {
    animation: robotSpin 0.6s ease-in-out !important;
}

@keyframes robotSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.3);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Footer improvements */
.footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: var(--text-primary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 14px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(11, 159, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(11, 159, 216, 0.4);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--light-blue);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Footer alignment improvements - removed duplicates */

/* Chatbot positioning and animation */
.cute-robot {
    width: 35px !important;
    height: 35px !important;
    margin-left: 4px !important;
    position: relative;
}

/* Chatbot hover rotation */
.cute-robot:hover {
    animation: chatbotSpin 0.6s ease-in-out !important;
}

@keyframes chatbotSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.15);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Chatbot continuous rotation and scale on hover */
.cute-robot:hover {
    animation: chatbotRotate 1.5s linear infinite !important;
    transform: scale(2) !important;
    transition: transform 0.3s ease !important;
}

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

/* Fix chatbot rotation on hover */
.cute-robot:hover {
    animation: chatbotRotate 1.5s linear infinite !important;
    transition: none !important;
}

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

/* Speech bubble animation */
@keyframes speechPop {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Increased rain sparkles on chat bubbles */
.ai-bubble::before,
.ai-bubble::after,
.user-bubble::before,
.user-bubble::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: rainFall 2s linear infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.ai-bubble::before { animation-delay: 0s; left: 20%; }
.ai-bubble::after { animation-delay: 0.4s; left: 60%; }
.user-bubble::before { animation-delay: 0.8s; left: 30%; }
.user-bubble::after { animation-delay: 1.2s; left: 70%; }

@keyframes rainFall {
    0% {
        top: -20px;
        opacity: 0;
        transform: scale(1);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 120%;
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Move pricing cards down to avoid overlap with "no credit card" text */
.pricing-card {
    margin-top: 80px !important;
}

/* Footer text styling */
.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-column ul li a:hover {
    color: #0B9FD8 !important;
}

.footer-bottom p {
    color: #5a6c7d !important;
    font-size: 16px !important;
}

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

/* Blog Card Hover Effects */
.blog-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.05), rgba(13, 94, 125, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: 1;
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

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

.blog-card > div {
    position: relative;
    z-index: 2;
}

.blog-card a {
    transition: all 0.3s ease;
    position: relative;
}

.blog-card:hover a {
    color: #0D5E7D !important;
    transform: translateX(5px);
}

/* Navbar scroll effect */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Advanced AI-themed Interactive Effects */

/* Neural network lines effect on hover */
.nav-links li {
    position: relative;
}

.nav-links li::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, transparent, #0B9FD8, transparent);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    transition: height 0.3s ease;
    opacity: 0;
}

.nav-links li:hover::before {
    height: 15px;
    opacity: 0.6;
}

/* Glowing border effect for cards */
.blog-card {
    border: 1px solid transparent;
    background-clip: padding-box;
}

.blog-card:hover {
    border-color: rgba(11, 159, 216, 0.3);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #0B9FD8, #0D5E7D) border-box;
}

/* Scan line effect */
@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: scanline 2s ease-in-out infinite;
}

/* Matrix-style data stream on section hover */
section {
    overflow: hidden;
}

/* Pulse effect for important elements */
@keyframes aiPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(11, 159, 216, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(11, 159, 216, 0);
    }
}

.btn-primary:hover {
    animation: aiPulse 1.5s ease-in-out infinite;
}

/* Holographic text effect */
.gradient-text {
    background: linear-gradient(45deg, #0B9FD8, #0D5E7D, #0B9FD8);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* Particle connection lines */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(11, 159, 216, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(11, 159, 216, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(11, 159, 216, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Neon glow text on hover */
.hero-title:hover {
    text-shadow: 0 0 10px rgba(11, 159, 216, 0.5),
                 0 0 20px rgba(11, 159, 216, 0.3),
                 0 0 30px rgba(11, 159, 216, 0.1);
}

/* Interactive border animation */
@keyframes borderRotate {
    0% {
        border-image-source: linear-gradient(0deg, #0B9FD8, #0D5E7D);
    }
    25% {
        border-image-source: linear-gradient(90deg, #0B9FD8, #0D5E7D);
    }
    50% {
        border-image-source: linear-gradient(180deg, #0B9FD8, #0D5E7D);
    }
    75% {
        border-image-source: linear-gradient(270deg, #0B9FD8, #0D5E7D);
    }
    100% {
        border-image-source: linear-gradient(360deg, #0B9FD8, #0D5E7D);
    }
}

/* Digital rain effect background */
.blog-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 159, 216, 0.02) 50%, transparent 100%);
    pointer-events: none;
    animation: digitalRain 10s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.blog-section:hover::after {
    opacity: 1;
}

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

/* Smooth page transitions */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* AI typing cursor effect */
.hero-subtitle::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #0B9FD8;
    margin-left: 3px;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

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

/* Blog Section Styles */
.blog-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.05) 0%, rgba(13, 94, 125, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(11, 159, 216, 0.25);
}

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

.blog-card-content {
    padding: 35px;
}

.blog-category {
    color: #0B9FD8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    text-transform: uppercase;
    display: inline-block;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-category {
    color: #0D5E7D;
}

.blog-card h3 {
    font-size: 22px;
    color: #0D5E7D;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: #0B9FD8;
}

.blog-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: justify;
}

.blog-card a {
    color: #0B9FD8;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.blog-card a::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-card:hover a::after {
    transform: translateX(5px);
}

.blog-card a:hover {
    color: #0D5E7D;
    gap: 12px;
}

/* ========================================
   MOBILE RESPONSIVE DESIGN
   ======================================== */

/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    /* Base container */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Navigation */
    .navbar {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 18px;
    }
    
    /* Mobile Dropdown Styles */
    .nav-links .dropdown {
        position: relative;
    }
    
    .nav-links .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 10px;
        padding: 10px 0;
        background: transparent;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links .dropdown-menu a {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .nav-links .dropdown-menu a:hover {
        background: var(--lighter-bg);
        transform: none;
        padding-left: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .hero-buttons .cta-button,
    .hero-buttons .secondary-button {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .watch-demo-button {
        font-size: 15px;
        padding: 12px 24px;
        width: auto;
        max-width: 280px;
        justify-content: center;
    }
    
    .demo-icon {
        font-size: 18px;
    }
    
    /* Services Section */
    .services {
        padding: 60px 0;
    }
    
    .services h2,
    .section-header h2 {
        font-size: 32px !important;
        margin-bottom: 15px !important;
    }
    
    .services p,
    .section-header p {
        font-size: 16px !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-card h3 {
        font-size: 22px;
    }
    
    /* Features Section */
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    /* Pricing Section */
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-card h3 {
        font-size: 24px;
    }
    
    .price {
        font-size: 36px;
    }
    
    /* Blog Section */
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-card {
        margin: 0 10px;
    }
    
    .blog-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .blog-card-content {
        padding: 25px;
    }
    
    .blog-card h3 {
        font-size: 20px;
    }
    
    /* Contact Section */
    .contact {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        max-width: 100%;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .contact-details {
        gap: 20px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    /* Adjust navigation hover effects for mobile */
    .nav-links a:hover {
        transform: translateY(-2px) scale(1.2);
    }
    
    /* Reduce neural network line height on mobile */
    .nav-links a::after {
        height: 10px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .services h2,
    .section-header h2 {
        font-size: 28px !important;
    }
    
    .service-card,
    .feature-card,
    .blog-card-content {
        padding: 20px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .price {
        font-size: 32px;
    }
    
    .blog-card h3 {
        font-size: 18px;
    }
    
    .contact-info h2 {
        font-size: 24px;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .blog-card:hover {
        transform: translateY(-6px);
    }
    
    .service-card:hover,
    .feature-card:hover,
    .pricing-card:hover {
        transform: translateY(-6px);
    }
    
    /* Ensure touch targets are large enough */
    .nav-links a,
    .cta-button,
    .blog-card a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Prevent text selection on interactive elements */
.blog-card,
.service-card,
.feature-card,
.pricing-card,
.cta-button {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0D5E7D;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar .cta-button {
        display: none;
    }
}

/* Sparkle Effect for Blog Cards */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

@keyframes sparkle-move {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(var(--tx), var(--ty)) rotate(360deg);
    }
}

.blog-card {
    position: relative;
    overflow: visible !important;
}

.blog-card .sparkle {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    z-index: 10;
}

.blog-card .sparkle::before {
    content: '✨';
    position: absolute;
    font-size: var(--size);
    animation: sparkle 1.5s ease-in-out infinite;
    animation-delay: var(--delay);
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}

/* Generate sparkles on hover */
.blog-card:hover .sparkle {
    animation: sparkle-move 2s ease-out forwards;
    animation-delay: var(--delay);
}

/* Page Hero Section */
.page-hero {
    padding: 140px 0 50px;
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.05) 0%, rgba(13, 94, 125, 0.05) 100%);
    text-align: left;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(11, 159, 216, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(13, 94, 125, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 40px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
}

/* Demo Modal Styles */
.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

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

.demo-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.demo-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.demo-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.demo-chat {
    display: flex;
    flex-direction: column;
    height: 70vh;
    max-height: 600px;
}

.demo-header {
    padding: 24px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.05), rgba(13, 94, 125, 0.05));
}

.demo-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.demo-header p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.demo-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-message {
    display: flex;
    gap: 12px;
    animation: messageSlide 0.3s ease;
}

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

.demo-message.bot {
    flex-direction: row;
}

.demo-message.user {
    flex-direction: row-reverse;
}

.demo-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.demo-message.user .demo-avatar {
    background: linear-gradient(135deg, #64748b, #475569);
}

.demo-text {
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 70%;
}

.demo-message.user .demo-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    color: white;
}

.demo-text p {
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.demo-text p:last-child {
    margin-bottom: 0;
}

.demo-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.demo-quick-replies button {
    padding: 10px 18px;
    border: 2px solid var(--primary-blue);
    background: white;
    color: var(--primary-blue);
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-quick-replies button:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 159, 216, 0.3);
}

/* Video Demo Styles */
.demo-video-container {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.demo-video-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    padding: 20px 24px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-video-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background: #f5f5f5;
    min-height: 400px;
    max-height: 500px;
}

.demo-video-controls {
    padding: 20px 24px;
    background: white;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 20px 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-control-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #0B9FD8, #0D5E7D);
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.demo-control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 159, 216, 0.4);
}

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

@media (max-width: 768px) {
    .demo-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .demo-chat {
        height: 80vh;
    }
    
    .demo-text {
        max-width: 85%;
    }
    
    .demo-quick-replies button {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .demo-video-container {
        width: 95%;
        max-height: 90vh;
    }
}

/* Demo Menu Styles */
.demo-menu-container {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.demo-menu-container-large {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 1000px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.demo-sector {
    margin-bottom: 40px;
}

.demo-sector:last-child {
    margin-bottom: 0;
}

.sector-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(11, 159, 216, 0.2);
}

.demo-menu-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.demo-menu-card {
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.05), rgba(13, 94, 125, 0.05));
    border: 2px solid rgba(11, 159, 216, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(11, 159, 216, 0.3);
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(11, 159, 216, 0.1), rgba(13, 94, 125, 0.1));
}

.demo-menu-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.demo-menu-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.demo-menu-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.demo-menu-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.demo-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.demo-menu-card:hover .demo-play-btn {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(11, 159, 216, 0.4);
}

@media (max-width: 768px) {
    .demo-menu-options {
        grid-template-columns: 1fr;
    }
    
    .demo-menu-container {
        padding: 30px 20px;
    }
    
    .demo-menu-container-large {
        padding: 30px 20px;
        max-height: 90vh;
    }
    
    .sector-title {
        font-size: 20px;
    }
    
    .demo-video-messages {
        min-height: 300px;
        max-height: 400px;
    }
    
    .demo-control-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

.demo-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.scenario-controls,
.playback-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.scenario-btn,
.play-btn,
.pause-btn,
.speed-btn,
.restart-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.scenario-btn {
    background: #3b82f6;
    color: white;
}

.scenario-btn.active {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.scenario-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.play-btn {
    background: #10b981;
    color: white;
}

.play-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

.pause-btn {
    background: #f59e0b;
    color: white;
}

.pause-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.speed-btn {
    background: #6b7280;
    color: white;
    padding: 10px 20px;
}

.speed-btn.active {
    background: #374151;
    box-shadow: 0 4px 12px rgba(55, 65, 81, 0.4);
}

.speed-btn:hover {
    background: #4b5563;
}

.restart-btn {
    background: #ef4444;
    color: white;
}

.restart-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.chat-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    padding: 20px 24px;
}

.messages-container {
    height: 400px;
    overflow-y: auto;
    padding: 20px;
    background: #f5f5f5;
}

.message {
    display: flex;
    margin-bottom: 16px;
    animation: fadeIn 0.5s ease;
}

.message.bot {
    justify-content: flex-start;
}

.message.user {
    justify-content: flex-end;
}

.message-content {
    max-width: 70%;
    padding: 12px 18px;
    border-radius: 18px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.message.bot .message-content {
    background: #e3f2fd;
    color: #1e293b;
}

.message.user .message-content {
    background: white;
    color: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.message-emoji {
    font-size: 20px;
    flex-shrink: 0;
}

.typing-indicator {
    display: block;
    line-height: 1.6;
}

.typing-indicator span {
    display: block;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

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

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

/* Responsive Demo Section */
@media (max-width: 768px) {
    .demo-section {
        padding: 60px 0;
    }

    .demo-controls {
        gap: 12px;
    }

    .scenario-controls,
    .playback-controls {
        flex-direction: column;
    }

    .scenario-btn,
    .play-btn,
    .pause-btn,
    .speed-btn,
    .restart-btn {
        width: 100%;
        padding: 12px 20px;
    }

    .messages-container {
        height: 350px;
    }

    .message-content {
        max-width: 85%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .chat-container {
        width: 90%;
    }
}
