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

:root {
    --primary-dark: #0E1E34;
    --primary-aqua: #00E5D4;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-aqua) 0%, #0088ff 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-dark) 0%, #1a2332 100%);
    --gradient-accent: linear-gradient(135deg, rgba(0, 229, 212, 0.1) 0%, rgba(0, 136, 255, 0.1) 100%);
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--white);
    background: var(--primary-dark);
    overflow-x: hidden;
    position: relative;
    cursor: auto;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        var(--primary-dark) 0%, 
        #1a2332 25%, 
        var(--primary-dark) 50%, 
        #0f1924 75%, 
        var(--primary-dark) 100%);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    z-index: -100;
    opacity: 0.8;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2332 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    max-width: 300px;
}

.loading-logo {
    margin-bottom: 30px;
    position: relative;
}

.loading-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    animation: logoFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 229, 212, 0.3));
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-aqua);
    animation: dotPulse 1.4s ease-in-out infinite both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }
.dot:nth-child(3) { animation-delay: 0s; }

.loading-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.8;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0%;
    animation: loadingProgress 3s ease-in-out forwards;
    position: relative;
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1s infinite;
}

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

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    20% { width: 30%; }
    40% { width: 60%; }
    80% { width: 90%; }
    100% { width: 100%; }
}

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

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9998;
    backdrop-filter: blur(10px);
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(0, 229, 212, 0.5);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6));
    animation: progressShimmer 2s ease-in-out infinite;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(14, 30, 52, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 229, 212, 0.1);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}



.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-aqua);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-nav-btn {
    padding: 12px 24px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.cta-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

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

/* Particles.js */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}

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

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

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 229, 212, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.2) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 229, 212, 0.1) 0%, transparent 70%);
    top: 50%;
    right: 30%;
    animation-delay: 4s;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
    padding-top: 80px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 32px;
    margin-top: 40px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-aqua) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    white-space: normal;
    word-break: normal;
    overflow: visible;
}



.highlight {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--primary-aqua) !important;
    background-clip: unset !important;
    color: var(--primary-aqua);
    position: relative;
    display: inline;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.secondary-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(0, 229, 212, 0.3);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(0, 229, 212, 0.1);
    border-color: var(--primary-aqua);
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-text {
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    gap: 16px;
}

.trust-logo {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Test Demo Section */
.test-demo {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 229, 212, 0.03) 0%, rgba(0, 136, 255, 0.03) 100%);
    border-top: 1px solid rgba(0, 229, 212, 0.1);
    border-bottom: 1px solid rgba(0, 229, 212, 0.1);
}

.test-demo-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.test-demo-header {
    margin-bottom: 50px;
}

.test-demo-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-aqua) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.test-demo-subtitle {
    font-size: 1.3rem;
    color: var(--gray-300);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.test-demo-form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-2xl);
}

.demo-input-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.phone-input-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 229, 212, 0.2);
    border-radius: 15px;
    padding: 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.phone-input-container:focus-within {
    border-color: var(--primary-aqua);
    box-shadow: 0 0 20px rgba(0, 229, 212, 0.3);
}

.country-code {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 20px;
    font-weight: 600;
    font-size: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-phone-input {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 16px;
    padding: 18px 20px;
    width: 200px;
    outline: none;
    font-weight: 500;
}

.demo-phone-input::placeholder {
    color: var(--gray-400);
}

.demo-call-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 15px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 18px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    min-width: 140px;
}

.demo-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.demo-call-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

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

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

.demo-info {
    margin-top: 30px;
}

.demo-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-aqua);
    font-size: 14px;
    font-weight: 500;
}

.demo-feature i {
    font-size: 16px;
}

.demo-disclaimer {
    color: var(--gray-400);
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.demo-status {
    background: rgba(0, 229, 212, 0.1);
    border: 1px solid rgba(0, 229, 212, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.status-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    animation: pulse 1.5s ease-in-out infinite;
}

.status-text {
    text-align: left;
    flex: 1;
    min-width: 200px;
}

.status-text h4 {
    color: var(--primary-aqua);
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.status-text p {
    color: var(--gray-300);
    margin: 0;
    font-size: 14px;
}

.status-timer {
    width: 50px;
    height: 50px;
    background: var(--primary-aqua);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    animation: timerPulse 1s ease-in-out infinite;
}

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

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

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 40px;
    padding: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    box-shadow: var(--shadow-2xl);
    transition: all 0.3s ease;
    cursor: pointer;
}

.phone-mockup:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg) scale(1.02);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(0, 229, 212, 0.2);
    border: 1px solid rgba(0, 229, 212, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

/* Interactive Conversation */
.conversation-area {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.conversation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.call-status {
    color: var(--primary-aqua);
    font-size: 12px;
    font-weight: 600;
    animation: statusPulse 2s ease-in-out infinite;
}

.call-timer {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

.conversation-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
    max-height: 200px;
}

.message {
    margin-bottom: 15px;
    animation: messageSlideIn 0.5s ease-out;
}

.ai-message {
    text-align: left;
}

.user-message {
    text-align: right;
}

.ai-message span {
    background: rgba(0, 229, 212, 0.1);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 15px 15px 15px 5px;
    font-size: 11px;
    line-height: 1.4;
    display: inline-block;
    max-width: 80%;
    border: 1px solid rgba(0, 229, 212, 0.2);
}

.user-message span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 15px 15px 5px 15px;
    font-size: 11px;
    line-height: 1.4;
    display: inline-block;
    max-width: 80%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-avatar {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

.avatar-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid var(--primary-aqua);
    border-radius: 50%;
    animation: spin 3s linear infinite;
    opacity: 0.5;
}

.avatar-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary-aqua);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s ease-in-out infinite;
}

.voice-waves {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
    align-items: end;
}

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

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

.ai-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.avatar-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid var(--primary-aqua);
    border-radius: 50%;
    animation: spin 3s linear infinite;
    opacity: 0.5;
}

.avatar-pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--primary-aqua);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s ease-in-out infinite;
}

.voice-waves {
    display: flex;
    gap: 4px;
    align-items: end;
}

.wave {
    width: 4px;
    background: var(--primary-aqua);
    border-radius: 2px;
    animation: wave-animation 1.5s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 229, 212, 0.3);
}

.wave:hover {
    background: var(--white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transform: scaleY(1.2);
}

.wave-1 { height: 20px; animation-delay: 0s; }
.wave-2 { height: 35px; animation-delay: 0.2s; }
.wave-3 { height: 50px; animation-delay: 0.4s; }
.wave-4 { height: 35px; animation-delay: 0.6s; }
.wave-5 { height: 20px; animation-delay: 0.8s; }

/* Enhanced Voice Visualization */
.voice-waves.speaking .wave {
    animation: speakingWave 0.8s ease-in-out infinite;
}

.voice-waves.listening .wave {
    animation: listeningWave 2s ease-in-out infinite;
}

@keyframes speakingWave {
    0%, 100% { transform: scaleY(1); }
    25% { transform: scaleY(1.8); }
    50% { transform: scaleY(0.5); }
    75% { transform: scaleY(1.5); }
}

@keyframes listeningWave {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.3); opacity: 0.5; }
}

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

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

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

@keyframes wave-animation {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-aqua) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Solution Section */
.problem-solution {
    background: linear-gradient(135deg, rgba(0, 229, 212, 0.02) 0%, rgba(0, 136, 255, 0.02) 100%);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 229, 212, 0.1);
    border: 1px solid rgba(0, 229, 212, 0.2);
}

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

.problem-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.problem-card p {
    color: var(--gray-300);
    line-height: 1.6;
}

.solution-statement {
    display: flex;
    justify-content: center;
}

.solution-box {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    max-width: 800px;
    box-shadow: var(--shadow-2xl);
}

.solution-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--white);
}

.solution-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
}

.feature i {
    color: rgba(255, 255, 255, 0.9);
}

/* How It Works Section */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.step-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(3deg);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 229, 212, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 229, 212, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.step-content p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 24px;
}

.step-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-aqua);
    font-size: 24px;
}

/* Sectors Section */
.sectors {
    background: linear-gradient(135deg, rgba(0, 229, 212, 0.02) 0%, rgba(0, 136, 255, 0.02) 100%);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.sector-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sector-card:hover {
    transform: translateY(-12px) rotateX(3deg) rotateY(2deg);
    box-shadow: var(--shadow-xl), 0 0 25px rgba(0, 229, 212, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 229, 212, 0.2);
}

.sector-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
}

.sector-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.sector-card > p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 24px;
}

.sector-details {
    margin-bottom: 30px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.sector-card.active .sector-details {
    opacity: 1;
    max-height: 200px;
}

.sector-details ul {
    list-style: none;
    padding: 0;
}

.sector-details li {
    color: var(--gray-300);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.sector-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-aqua);
    font-weight: bold;
}

.sector-btn {
    background: transparent;
    border: 2px solid var(--primary-aqua);
    color: var(--primary-aqua);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.sector-btn:hover, .sector-card.active .sector-btn {
    background: var(--primary-aqua);
    color: var(--white);
}

/* ROI Section */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.kpi-card:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(1deg) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 25px rgba(0, 229, 212, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 229, 212, 0.2);
}

.kpi-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.kpi-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-aqua);
    line-height: 1;
}

.kpi-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.kpi-label {
    color: var(--gray-300);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, rgba(0, 229, 212, 0.02) 0%, rgba(0, 136, 255, 0.02) 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-card.active {
    display: block;
}

.quote-icon {
    color: var(--primary-aqua);
    font-size: 32px;
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--gray-400);
    font-weight: 500;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.testimonial-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-btn.active {
    background: var(--primary-aqua);
}

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

/* Final CTA Section */
.final-cta {
    background: var(--gradient-primary);
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mega-cta-btn {
    padding: 24px 48px;
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-2xl);
}

.mega-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.3);
}

/* Contact Form Section */
.contact-form {
    background: var(--primary-dark);
    padding: 120px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-2xl);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.form-header p {
    color: var(--gray-300);
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-aqua);
    background: rgba(255, 255, 255, 0.08);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 20px;
    color: var(--gray-400);
    font-weight: 500;
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    left: 16px;
    font-size: 12px;
    color: var(--primary-aqua);
    background: var(--primary-dark);
    padding: 0 8px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.form-group select option {
    background: var(--primary-dark);
    color: var(--white);
}

.form-submit-btn {
    width: 100%;
    padding: 20px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2xl);
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.success-icon {
    font-size: 48px;
    color: #22c55e;
    margin-bottom: 20px;
}

.success-message h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.success-message p {
    color: var(--gray-300);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 40px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-300);
    line-height: 1.8;
}

.footer-section h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary-aqua);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(14, 30, 52, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        border-top: 1px solid rgba(0, 229, 212, 0.2);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 90%;
        text-align: center;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(0, 229, 212, 0.1);
        transform: translateY(-2px);
    }
    
    .cta-nav-btn {
        margin-top: 20px;
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero-text {
        padding-top: 20px;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        line-height: 1.15;
        margin-top: 20px;
        white-space: normal;
        word-break: normal;
        overflow: visible;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .solution-features {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .test-demo {
        padding: 60px 0;
    }
    
    .test-demo-title {
        font-size: 2.2rem;
    }
    
    .test-demo-subtitle {
        font-size: 1.1rem;
    }
    
    .test-demo-form {
        padding: 30px 20px;
    }
    
    .demo-input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .phone-input-container {
        width: 100%;
        max-width: 300px;
    }
    
    .demo-phone-input {
        width: 180px;
    }
    
    .demo-call-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .demo-features {
        gap: 20px;
    }
    
    .status-content {
        flex-direction: column;
        text-align: center;
    }
    
    .status-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .form-container {
        padding: 40px 24px;
    }
    
    .solution-box {
        padding: 30px 24px;
    }
    
    .step-card,
    .sector-card,
    .kpi-card {
        padding: 30px 24px;
    }
    
    .kpi-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading animation for number counters */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* WhatsApp and Call FAB */
.whatsapp-fab, .call-fab {
    position: fixed;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-fab {
    bottom: 30px;
}

.call-fab {
    bottom: 100px;
}



.whatsapp-fab.show, .call-fab.show {
    opacity: 1;
    transform: translateY(0);
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-2xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp-fab .fab-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.call-fab .fab-button {
    background: var(--gradient-primary);
}



.fab-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-2xl);
}

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

.fab-button:hover::before {
    width: 100%;
    height: 100%;
}

.fab-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 229, 212, 0.2);
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-dark);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-fab:hover .fab-tooltip,
.call-fab:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-10px);
}

/* FAB Pulse Animation */
@keyframes fabPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-fab .fab-button {
    animation: fabPulse 2s infinite;
}

@keyframes fabPulseCall {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 229, 212, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 229, 212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 212, 0);
    }
}

.call-fab .fab-button {
    animation: fabPulseCall 2s infinite 1s;
}

/* Advanced Micro-interactions */
.magnetic-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Icon Animations */
.nav-link:hover {
    animation: linkBounce 0.6s ease;
}

.step-icon i,
.kpi-icon,
.sector-icon {
    transition: all 0.3s ease;
}

.step-card:hover .step-icon i {
    transform: scale(1.2) rotate(10deg);
    color: var(--white);
}

.sector-card:hover .sector-icon {
    animation: iconFloat 0.6s ease;
}

.kpi-card:hover .kpi-icon {
    animation: iconPulse 0.8s ease;
}

/* Button Glow Effects */
.primary-btn, .secondary-btn, .mega-cta-btn {
    position: relative;
    overflow: hidden;
}

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

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

.secondary-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.secondary-btn:hover::after {
    opacity: 0.1;
}

/* Keyframe Animations */
@keyframes linkBounce {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    80% { transform: translateY(-1px); }
}

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

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

/* Hover Shadow Effects */
.testimonial-card:hover {
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 229, 212, 0.1);
    border: 1px solid rgba(0, 229, 212, 0.1);
}

.form-container:hover {
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(0, 229, 212, 0.05);
    border: 1px solid rgba(0, 229, 212, 0.1);
}

/* Text Selection */
::selection {
    background: var(--primary-aqua);
    color: var(--primary-dark);
}

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



/* Social Proof Notifications */
.social-proof-notifications {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 9999;
    pointer-events: none;
}

.social-proof-notification {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 229, 212, 0.2);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 300px;
    animation: slideInLeft 0.5s ease-out, fadeOut 0.5s ease-in 4.5s;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.social-proof-notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
}

.social-proof-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.social-proof-content {
    flex: 1;
}

.social-proof-name {
    font-weight: 600;
    font-size: 13px;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.social-proof-action {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.3;
}

.social-proof-time {
    font-size: 11px;
    color: var(--primary-aqua);
    font-weight: 500;
}

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

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

 