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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: #374151;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    font-weight: 400;
}

.navbar {
    background: white;
    padding: 1.25rem 0;
    box-shadow: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.01em;
    position: relative;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2dd4bf;
    transition: all 0.3s ease;
    transform-origin: center center;
    position: relative;
}

.logo-icon svg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

/* Wave Hand Component */
.wave-hand {
    position: absolute;
    top: -5px;
    right: -35px;
    opacity: 0;
    transform: scale(0.8) rotate(15deg);
    transition: all 0.3s ease;
    pointer-events: none;
    transform-origin: bottom center;
    z-index: 10;
}

.wave-hand img {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 8px rgba(20, 184, 166, 0.4));
    object-fit: contain;
}

/* Hover Animation - Friendly Bounce */
.logo:hover .logo-icon {
    color: #14b8a6;
    animation: logoWave 0.8s ease-in-out;
}

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

.logo:hover .wave-hand {
    opacity: 1;
    transform: scale(1) rotate(15deg);
    animation: handWave 0.8s ease-in-out;
}

/* Mobile touch handling - disable hover on mobile */
@media (hover: none) and (pointer: coarse) {
    .logo:hover:not(.mobile-wave-active) .wave-hand {
        opacity: 0;
        animation: none;
    }
}

/* Mobile wave active class */
.logo.mobile-wave-active .wave-hand {
    opacity: 1;
    transform: scale(1) rotate(15deg);
    animation: handWaveMobile 1.2s ease-in-out;
}

.logo.mobile-wave-active .logo-icon {
    color: #14b8a6;
    animation: logoWave 0.8s ease-in-out;
}

.logo.mobile-wave-active .logo-icon svg {
    transform: scale(1.05);
}

/* Focus Animation */
.logo:focus-within .logo-icon {
    animation: logoWave 0.8s ease-in-out;
}

.logo:focus-within .wave-hand {
    opacity: 1;
    transform: scale(1);
    animation: handWave 0.8s ease-in-out;
}

/* Scroll-triggered Animation */
.logo-icon.scroll-wave {
    animation: logoScrollWave 1.2s ease-in-out;
}

.logo-icon.scroll-wave + .wave-hand {
    opacity: 1;
    transform: scale(1);
    animation: handWaveScroll 1.2s ease-in-out;
}

/* Keyframe Animations */
@keyframes logoGlow {
    0% {
        color: #2dd4bf;
        filter: drop-shadow(0 0 2px rgba(45, 212, 191, 0.2));
    }
    50% {
        color: #14b8a6;
        filter: drop-shadow(0 0 6px rgba(20, 184, 166, 0.3));
    }
    100% {
        color: #2dd4bf;
        filter: drop-shadow(0 0 2px rgba(45, 212, 191, 0.2));
    }
}

@keyframes logoWave {
    0% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-8deg) scale(1.08);
    }
    50% {
        transform: rotate(5deg) scale(1.12);
    }
    75% {
        transform: rotate(-3deg) scale(1.05);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes logoScrollWave {
    0% {
        transform: rotate(0deg) scale(1);
    }
    15% {
        transform: rotate(-6deg) scale(1.1);
    }
    30% {
        transform: rotate(4deg) scale(1.15);
    }
    45% {
        transform: rotate(-3deg) scale(1.08);
    }
    60% {
        transform: rotate(2deg) scale(1.05);
    }
    75% {
        transform: rotate(-1deg) scale(1.02);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

/* Hand Wave Animations */
@keyframes handWave {
    0% {
        transform: scale(0.8) rotate(15deg);
        opacity: 0;
    }
    25% {
        transform: scale(1) rotate(5deg);
        opacity: 1;
    }
    50% {
        transform: scale(0.95) rotate(35deg);
        opacity: 1;
    }
    75% {
        transform: scale(0.9) rotate(10deg);
        opacity: 1;
    }
    100% {
        transform: scale(0.85) rotate(15deg);
        opacity: 1;
    }
}

@keyframes handWaveScroll {
    0% {
        transform: scale(0.8) rotate(15deg);
        opacity: 0;
    }
    15% {
        transform: scale(1.1) rotate(0deg);
        opacity: 1;
    }
    30% {
        transform: scale(1.05) rotate(40deg);
        opacity: 1;
    }
    45% {
        transform: scale(1) rotate(5deg);
        opacity: 1;
    }
    60% {
        transform: scale(0.95) rotate(30deg);
        opacity: 1;
    }
    75% {
        transform: scale(0.9) rotate(10deg);
        opacity: 1;
    }
    100% {
        transform: scale(0.85) rotate(15deg);
        opacity: 1;
    }
}

/* Mobile-specific animation that auto-hides */
@keyframes handWaveMobile {
    0% {
        transform: scale(0.8) rotate(15deg);
        opacity: 0;
    }
    15% {
        transform: scale(1.1) rotate(0deg);
        opacity: 1;
    }
    30% {
        transform: scale(1.05) rotate(40deg);
        opacity: 1;
    }
    45% {
        transform: scale(1) rotate(5deg);
        opacity: 1;
    }
    60% {
        transform: scale(0.95) rotate(30deg);
        opacity: 1;
    }
    75% {
        transform: scale(0.9) rotate(10deg);
        opacity: 1;
    }
    90% {
        transform: scale(0.85) rotate(15deg);
        opacity: 1;
    }
    100% {
        transform: scale(0.8) rotate(15deg);
        opacity: 0;
    }
}

.logo-text {
    font-weight: 700;
    background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.language-toggle {
    display: flex;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    padding: 0.25rem;
    gap: 0.25rem;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn.active {
    background: #3b82f6;
    color: white;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.lang-btn:hover:not(.active) {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.nav-links a {
    text-decoration: none;
    color: #9ca3af;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2563eb;
}

main {
    margin-top: 80px;
    position: relative;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.animated-background svg {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

/* Animation performance optimizations */
.floating-shapes circle,
.floating-shapes rect,
.floating-shapes polygon {
    will-change: transform, opacity;
}

.network-lines path {
    will-change: stroke-dasharray, opacity;
}

.particles circle {
    will-change: transform, opacity;
}

.hero {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 25%, #ecfdf5 50%, #f0fdfa 75%, #e6fffa 100%);
    background-size: 400% 400%;
    animation: subtleGradient 12s ease-in-out infinite;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(45, 212, 191, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(94, 234, 212, 0.025) 0%, transparent 50%),
                      radial-gradient(circle at 50% 10%, rgba(153, 246, 228, 0.02) 0%, transparent 60%);
    background-size: 200% 200%;
    animation: subtleOverlay 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.4;
}

.hero-visual {
    margin: 2rem 0 1.5rem;
    display: flex;
    justify-content: center;
}

.hero-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(229, 231, 235, 0.5);
    overflow: hidden;
}

.hero-placeholder::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(45deg, #f3f4f6 25%, transparent 25%), 
                linear-gradient(-45deg, #f3f4f6 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f3f4f6 75%), 
                linear-gradient(-45deg, transparent 75%, #f3f4f6 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    border-radius: 16px;
    opacity: 0.3;
}

.hero-placeholder::after {
    content: 'Property Search Interface';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6b7280;
    font-size: 1.2rem;
    font-weight: 500;
    z-index: 1;
}

.search-container {
    margin: 2rem 0 1.5rem;
    display: flex;
    justify-content: center;
}

.search-box {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    border: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.search-box:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(59, 130, 246, 0.3);
}

.search-box:focus-within {
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15), 0 6px 20px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.search-input-wrapper {
    position: relative;
    padding: 2rem 2rem 1.25rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
}

.search-input-container {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 400;
    color: #374151;
    resize: none;
    min-height: 24px;
    max-height: 120px;
    line-height: 1.5;
    font-family: inherit;
}

.search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.search-submit {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    order: 3;
    flex-shrink: 0;
}

.search-submit:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.search-submit:active {
    transform: translateY(0);
}

.search-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.search-attachment {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.search-attachment:hover {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    transform: translateY(-1px);
}

.search-attachment:active {
    transform: translateY(0);
}

.search-footer {
    padding: 0.5rem 2rem;
    min-height: 0.5rem;
}

.search-hint {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 400;
}

.prompt-examples {
    margin-top: 2rem;
    padding-bottom: 1rem;
    text-align: center;
}

.prompt-title {
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.prompt-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
}

.prompt-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0.6rem 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: left;
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    white-space: normal;
    min-height: 40px;
    flex: 0 1 auto;
    max-width: 700px;
}

.prompt-item:nth-child(1) { order: 1; }
.prompt-item:nth-child(2) { order: 3; }
.prompt-item:nth-child(3) { order: 5; }
.prompt-item:nth-child(4) { order: 2; }
.prompt-item:nth-child(5) { order: 4; }
.prompt-item:nth-child(6) { order: 8; }

.prompt-item:nth-child(7) { order: 6; }
.prompt-item:nth-child(8) { order: 7; }
.prompt-item:nth-child(9) { order: 10; }
.prompt-item:nth-child(10) { order: 9; }
.prompt-item:nth-child(11) { order: 12; }
.prompt-item:nth-child(12) { order: 11; }

.prompt-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    transform: translateY(-1px);
}

.prompt-item span {
    color: #4b5563;
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 1.2;
    font-style: italic;
}

.conversational-search {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
}

.smart-matching {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.notifications {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.section-content.reverse .text-content {
    order: 2;
}

.section-content.reverse .feature-visual {
    order: 1;
}

.text-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.text-content p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    font-weight: 400;
    max-width: 480px;
}

.feature-visual {
    display: flex;
    justify-content: center;
}

.chat-interface {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    width: 100%;
    max-width: 650px;
    height: 500px;
    border: 1px solid rgba(229, 231, 235, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
}

.chat-bubble {
    margin-bottom: 1rem;
    padding: 0.9rem 1.2rem;
    border-radius: 18px;
    max-width: 85%;
    position: relative;
    animation: messageSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    line-height: 1.4;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.chat-bubble:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.chat-bubble.user {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 6px;
    box-shadow: 0 3px 12px rgba(59, 130, 246, 0.3);
}

.chat-bubble.user::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -6px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-bottom-color: #2563eb;
    border-left-color: #2563eb;
    border-bottom-left-radius: 4px;
}

.chat-bubble.ai {
    background: rgba(248, 250, 252, 0.9);
    color: #334155;
    border-bottom-left-radius: 6px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.chat-bubble.ai::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-bottom-color: rgba(248, 250, 252, 0.9);
    border-right-color: rgba(248, 250, 252, 0.9);
    border-bottom-right-radius: 4px;
}

@keyframes messageSlideIn {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
}

.chat-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    animation: onlinePulse 2s infinite;
}

.chat-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-header h4::after {
    content: '• En línea';
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 500;
}

@keyframes onlinePulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1);
    }
}

.typing-indicator {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b82f6;
    animation: typing 1.4s infinite ease-in-out;
}

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

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

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

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    /* Hide scrollbars while maintaining scroll functionality */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.chat-messages::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

.property-result {
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.property-result.visible {
    opacity: 1;
    transform: translateY(0);
}

.property-card-mini {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.property-card-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.property-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    border-radius: 8px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.property-image::before {
    content: '🏠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
}

.property-details h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.25rem 0;
}

.property-details p {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0 0 0.5rem 0;
}

.property-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #059669;
}

.conversational-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-highlight {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon-large {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-highlight h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.feature-highlight p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .conversational-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .feature-highlight {
        padding: 1rem;
    }
    
    .feature-icon-large {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
}

.matching-interface {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-interface {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 350px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
}

.dashboard-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f59e0b, #10b981);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.dashboard-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.dashboard-status.warning {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.lead-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.lead-card.declining {
    border-left: 4px solid #ef4444;
    background: rgba(254, 242, 242, 0.5);
}

.lead-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.lead-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.lead-details h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.25rem 0;
}

.lead-details p {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

/* Interest Graph Component */
.interest-graph-container {
    margin-bottom: 1rem;
    background: rgba(254, 242, 242, 0.3);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.graph-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
}

.graph-value {
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.graph-value.declining {
    color: #ef4444;
}

.interest-graph {
    height: 60px;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.graph-svg {
    width: 100%;
    height: 100%;
}

.graph-area {
    animation: graphFadeIn 2s ease-out;
}

.graph-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 2s ease-out forwards;
}

.graph-point {
    opacity: 0;
    animation: pointFadeIn 0.3s ease-out forwards;
}

.graph-point:nth-child(7) { animation-delay: 0.5s; }
.graph-point:nth-child(8) { animation-delay: 0.7s; }
.graph-point:nth-child(9) { animation-delay: 0.9s; }
.graph-point:nth-child(10) { animation-delay: 1.1s; }
.graph-point:nth-child(11) { animation-delay: 1.3s; }
.graph-point.active { animation-delay: 1.5s; }

.graph-trend {
    font-size: 0.7rem;
    color: #ef4444;
    font-weight: 500;
    text-align: center;
}

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

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

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

.last-contact {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* Enhanced Alert Notification Component */
.alert-notification {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    animation: alertPulse 2s ease-in-out infinite;
}

.alert-notification.critical {
    border-color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.08));
}

.alert-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    animation: iconBounce 2s ease-in-out infinite;
}

.alert-content {
    flex: 1;
    min-width: 0;
}

.alert-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.alert-message {
    font-size: 0.7rem;
    color: #991b1b;
    line-height: 1.3;
    font-weight: 500;
}

.alert-pulse {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: criticalPulse 1.5s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
    }
}

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

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

.dashboard-interface-3d {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    
    /* Natural floating effect */
    transform: translateY(0) rotate(0deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Subtle glow effect */
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(239, 68, 68, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
        
    /* Animation keyframes for floating */
    animation: dashboardFloat 6s ease-in-out infinite;
}


.dashboard-interface-3d::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.dashboard-interface-3d:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-10px);
    box-shadow: 
        0 35px 70px -12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

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

/* Natural floating animation for dashboard */
@keyframes dashboardFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(2deg) rotateY(-2deg);
    }
    33% {
        transform: translateY(-8px) rotateX(-1deg) rotateY(1deg);
    }
    66% {
        transform: translateY(4px) rotateX(1deg) rotateY(-1deg);
    }
}

/* 3D Interface Transition */
.interface-transition-container {
    perspective: 1000px;
    width: 100%;
    max-width: 400px;
    height: 400px;
    position: relative;
    margin: 0 auto;
}

.interface-card {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(229, 231, 235, 0.5);
    overflow: hidden;
}

.old-interface {
    transform: rotateY(0deg);
    z-index: 2;
}

.new-interface {
    transform: rotateY(-180deg);
    z-index: 1;
}

.interface-transition-container:hover .old-interface {
    transform: rotateY(180deg);
}

.interface-transition-container:hover .new-interface {
    transform: rotateY(0deg);
}

/* Automatic rotation when scrolling into view */
.interface-transition-container.auto-rotate .old-interface {
    transform: rotateY(180deg);
    transition: transform 2s ease-in-out;
}

.interface-transition-container.auto-rotate .new-interface {
    transform: rotateY(0deg);
    transition: transform 2s ease-in-out;
}

/* Old Filter Interface Styling */
.old-filter-interface {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.old-filter-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f59e0b, #dc2626);
    border-radius: 16px 16px 0 0;
}

.old-filter-interface h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    text-align: center;
    padding-top: 0.5rem;
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    flex-grow: 1;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-item label {
    font-size: 0.7rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.filter-item select {
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.75rem;
    background: white;
    color: #374151;
    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 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 2rem;
}

.filter-item select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.search-more {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
    font-style: italic;
    padding: 0.5rem;
    background: rgba(107, 114, 128, 0.05);
    border-radius: 8px;
    border: 1px dashed #d1d5db;
}

/* Enhanced Chat Interface for the flip */
.new-interface .chat-interface {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.new-interface .chat-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    border-radius: 16px 16px 0 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .interface-transition-container {
        height: 350px;
        max-width: 320px;
    }
    
    .old-filter-interface {
        padding: 1rem;
    }
    
    .filter-grid {
        gap: 0.5rem;
    }
    
    .filter-item label {
        font-size: 0.65rem;
    }
    
    .filter-item select {
        padding: 0.4rem;
        font-size: 0.7rem;
    }
    
    .new-interface .chat-interface {
        padding: 1rem;
    }
}

.agent-card {
    max-width: 320px;
    margin: 0 auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.agent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
}

.agent-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.3s ease;
}

.agent-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.4), 0 0 0 6px rgba(255, 255, 255, 0.9);
}

.agent-avatar::before {
    content: 'MR';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.agent-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.agent-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.match-score {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.match-score:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.match-score::before {
    content: '';
    font-size: 1rem;
    font-weight: 700;
}

/* Phone Mockup for Notifications */
.phone-mockup {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border-radius: 35px;
    padding: 8px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    border-radius: 27px;
    overflow: hidden;
    position: relative;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 8px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.phone-time {
    color: white;
}

.phone-signal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.signal-bars {
    display: flex;
    gap: 2px;
    align-items: end;
}

.signal-bars span {
    width: 3px;
    background: white;
    border-radius: 1px;
}

.signal-bars span:nth-child(1) { height: 4px; }
.signal-bars span:nth-child(2) { height: 6px; }
.signal-bars span:nth-child(3) { height: 8px; }
.signal-bars span:nth-child(4) { height: 10px; }

.battery {
    font-size: 0.75rem;
    color: white;
}

.notifications-container {
    padding: 20px 16px;
    height: calc(100% - 60px);
    overflow-y: auto;
}

.push-notification {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    margin-bottom: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.push-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
}

.push-notification.property-alert::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.push-notification.price-drop::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.push-notification.viewing-scheduled::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.push-notification:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(40, 40, 40, 0.95);
}

.notification-app {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.app-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.propu-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.app-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e5e7eb;
}

.notification-time {
    font-size: 0.75rem;
    color: #9ca3af;
}

.notification-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
    line-height: 1.3;
}

.notification-content p {
    font-size: 0.8rem;
    color: #d1d5db;
    line-height: 1.4;
    margin: 0;
}

.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Animation for notifications sliding in */
@keyframes slideInNotification {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.push-notification.animate-in {
    animation: slideInNotification 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.pricing-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pricing-header p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(229, 231, 235, 0.8);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 380px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.pricing-card.featured {
    border: 2px solid #3b82f6;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15), 0 8px 16px rgba(59, 130, 246, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5), 0 0 0 2px rgba(16, 185, 129, 0.2);
    z-index: 10;
    white-space: nowrap;
    text-transform: uppercase;
    animation: popularPulse 3s ease-in-out infinite;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    gap: 0.2rem;
}

.currency {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.currency-code {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
}

.amount.dynamic-price {
    font-size: 1.5rem;
}

.period {
    font-size: 0.875rem;
    color: #6b7280;
    margin-left: 0.2rem;
}

.plan-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
}

.plan-features {
    margin-bottom: 2rem;
    flex-grow: 1;
    text-align: left;
}

.feature-category {
    margin-bottom: 1rem;
}

.feature-category-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.feature-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
    margin: 1.25rem 0;
}

.feature-item.limitation {
    opacity: 0.75;
}

.feature-item.premium {
    position: relative;
}


.feature-item.enterprise {
    position: relative;
}


.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #374151;
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 1.3;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.feature-icon {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

/* Removed ::before rule to prevent duplicate checkmarks */

.plan-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.025em;
    margin-top: auto;
}

/* Add responsive grid styles */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 1rem;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-card h3 {
        font-size: 1.125rem;
    }
    
    .amount {
        font-size: 1.75rem;
    }
}

.plan-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.plan-button.primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.plan-button.secondary {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.plan-button.secondary:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.cta-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #374151 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #d1d5db;
    font-weight: 400;
    line-height: 1.5;
}

.email-signup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-signup .form-group {
    display: flex;
    flex-direction: column;
}

.email-signup input {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.email-signup input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.email-signup button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.email-signup button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.feedback-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.feedback-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.feedback-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background: white;
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-modal {
    transform: scale(1) translateY(0);
}

.popup-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.popup-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.popup-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(107, 114, 128, 0.1);
    border-radius: 8px;
    color: #6b7280;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: rgba(107, 114, 128, 0.2);
    color: #374151;
}

.popup-content {
    padding: 1.5rem 2rem 2rem;
}

.popup-content > p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.popup-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: #374151;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.25rem;
    width: 2rem;
    text-align: center;
}

.popup-signup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.popup-signup .form-group {
    display: flex;
    flex-direction: column;
}

.popup-signup input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
}

.popup-signup input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.popup-signup button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 0;
    flex-shrink: 0;
}

.popup-signup button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.popup-feedback {
    padding: 1rem 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    color: #374151;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.popup-feedback::placeholder {
    color: #9ca3af;
}

.popup-feedback:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.popup-note {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.footer {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid #e5e7eb;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.footer-section ul li a {
    text-decoration: none;
    color: #6b7280;
    font-size: 0.875rem;
    transition: color 0.2s;
    line-height: 1.6;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

/* Responsive adjustments for animated background */
@media (max-width: 768px) {
    .animated-background svg {
        opacity: 0.4;
    }
    
    .floating-shapes {
        transform: scale(0.8);
    }
    
    .network-lines {
        opacity: 0.5;
    }
    
    .particles {
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .search-container {
        margin: 2rem 0 1.5rem;
    }
    
    .search-box {
        margin: 0 1rem;
    }
    
.search-input-wrapper {
        padding: 1.25rem 1.25rem 0.75rem;
    }
    
    .search-input-container {
        padding-left: 2.5rem;
    }
    
    .search-input {
        font-size: 1rem;
    }
    
    .search-submit {
        width: 36px;
        height: 36px;
    }
    
    .search-attachment {
        width: 32px;
        height: 32px;
    }
    
    .popup-overlay {
        padding: 1rem;
    }
    
    .popup-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .popup-content {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .popup-signup {
        flex-direction: column;
        gap: 1rem;
    }
    
    .popup-signup input {
        margin-bottom: 0;
    }
    
    .popup-signup button {
        padding: 1rem;
    }
    
    .hero {
        padding: 3rem 1.5rem 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
    
    .hero-visual {
        margin: 2rem 0 3rem;
    }
    
    .hero-placeholder {
        height: 250px;
    }
    
    .prompt-grid {
        gap: 0.4rem;
        justify-content: center;
    }
    
    .prompt-item {
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
        min-height: 26px;
        max-width: calc(100vw - 3rem);
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        line-height: 1.2;
        flex: 0 1 auto;
        word-break: break-word;
        hyphens: auto;
    }
    
    .prompt-item span {
        font-size: 0.6rem !important;
        line-height: 1.2;
    }
    
    .prompt-item span:last-child {
        font-size: 0.6rem !important;
    }
    
    .prompt-icon {
        font-size: 0.8rem;
        min-width: 14px;
    }
    
    .conversational-search,
    .smart-matching,
    .notifications,
    .pricing-section,
    .problem-section {
        padding: 4rem 1.5rem;
    }
    
    .problem-section h2 {
        font-size: 2.25rem;
    }
    
    .problem-section p {
        font-size: 1.125rem;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .pricing-header p {
        font-size: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .section-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .section-content.reverse .text-content {
        order: 1;
    }
    
    .section-content.reverse .feature-visual {
        order: 2;
    }
    
    .text-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .text-content p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
    }
    
    .email-signup {
        flex-direction: column;
        gap: 1rem;
    }
    
    .email-signup input,
    .email-signup button {
        border-radius: 8px;
        padding: 1rem 1.5rem;
    }
    
    .footer {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 25%, #ecfdf5 50%, #f0fdfa 75%, #e6fffa 100%);
    background-size: 400% 400%;
    animation: subtleGradient 12s ease-in-out infinite;
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: #1e293b;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(45, 212, 191, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(94, 234, 212, 0.025) 0%, transparent 50%),
                      radial-gradient(circle at 50% 10%, rgba(153, 246, 228, 0.02) 0%, transparent 60%);
    background-size: 200% 200%;
    animation: subtleOverlay 8s ease-in-out infinite;
    pointer-events: none;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #171111;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.about-hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 2px;
}

.about-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-mission {
    padding: 5rem 0;
    background: #f8fafc;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
}

.mission-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.founders-section {
    padding: 5rem 0;
}

.founders-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.founders-intro {
    font-size: 1.125rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.founder-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.founder-avatar {
    text-align: center;
    margin-bottom: 2rem;
}

.avatar-placeholder {
    display: inline-block;
    border-radius: 50%;
    border: 4px solid #f1f5f9;
}

.founder-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #ffffff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.founder-avatar img:hover {
    transform: scale(1.08);
    border-color: #f8fafc;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.founder-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1rem;
    color: #3b82f6;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}

.founder-education {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 1.5rem;
}

.founder-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1.5rem;
}

.founder-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.skill-tag {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.founder-links {
    text-align: center;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0077b5;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.entrepreneurial-journey {
    padding: 5rem 0;
    background: #f8fafc;
}

.entrepreneurial-journey h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.journey-content {
    display: grid;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.journey-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.journey-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.journey-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}

.trust-building {
    padding: 5rem 0;
}

.trust-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
}

.trust-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 1rem 3rem;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content p {
        font-size: 1.125rem;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-card {
        padding: 2rem;
    }
    
    .journey-item {
        flex-direction: column;
        text-align: center;
    }
    
    .journey-icon {
        margin: 0 auto;
    }
    
    .trust-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .nav-links a {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .language-toggle {
        padding: 0.15rem;
        gap: 0.15rem;
        margin-left: 0.5rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
        border-radius: 12px;
    }
}

/* Problem-Solution Hero Structure */
.problem-statement, .solution-statement {
    margin-bottom: 3rem;
}

.problem-badge, .solution-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.problem-badge {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
}

.solution-badge {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #047857;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Problem Section */
.problem-section {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
}

.problem-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.problem-section p {
    font-size: 1.375rem;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 400;
}

.customers-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.customers-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.customers-header p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

.customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.customer-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.customer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.customer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
}

.customer-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-icon.searcher {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.customer-icon.agent {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.customer-icon.enterprise {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.customer-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.customer-problem, .customer-solution {
    margin-bottom: 1.5rem;
}

.customer-problem h4, .customer-solution h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.customer-problem h4 {
    color: #dc2626;
}

.customer-solution h4 {
    color: #059669;
}

.customer-problem p, .customer-solution p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Responsive adjustments for customer cards */
@media (max-width: 768px) {
    .target-customers {
        padding: 4rem 1.5rem;
    }
    
    .customer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .customer-card {
        padding: 1.5rem;
    }
    
    .customers-header h2 {
        font-size: 2rem;
    }
    
    .problem-statement h1 {
        font-size: 2.5rem;
    }
    
    .solution-statement h2 {
        font-size: 2rem;
    }
}

/* Section badges */
.section-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.agent-badge {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #047857;
}

/* Subtle animations */
@keyframes subtleGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 50% 100%;
    }
    75% {
        background-position: 100% 0%;
    }
}

@keyframes subtleOverlay {
    0%, 100% {
        background-position: 0% 0%;
        opacity: 0.6;
    }
    33% {
        background-position: 100% 100%;
        opacity: 0.8;
    }
    66% {
        background-position: 0% 100%;
        opacity: 0.4;
    }
}

/* Popular badge animation */
@keyframes popularPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5), 0 0 0 2px rgba(16, 185, 129, 0.2);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.7), 0 0 0 4px rgba(16, 185, 129, 0.3);
    }
}

/* Contact Section Styling */
.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

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

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-content > p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    text-align: left;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(229, 231, 235, 0.8);
    backdrop-filter: blur(20px);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    background: white;
    color: #374151;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form 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 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 3rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

/* Responsive contact section */
@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1rem;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
}

/* Legal Pages Styling */
.legal-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.last-updated {
    color: #6b7280;
    font-size: 0.9rem;
}

.legal-text {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.legal-section-item {
    margin-bottom: 2.5rem;
}

.legal-section-item:last-child {
    margin-bottom: 0;
}

.legal-section-item h2 {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-section-item h3 {
    color: #374151;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-section-item p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section-item li {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.subscription-details {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.subscription-details h3 {
    color: #3b82f6;
    margin-top: 1rem;
}

.subscription-details h3:first-child {
    margin-top: 0;
}

.subscription-details ul {
    margin: 0.5rem 0 1rem 0;
}

.subscription-details li {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #374151;
    margin: 2px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #e5e7eb;
        color: #374151;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .nav-links a:hover {
        color: #3b82f6;
        background: rgba(59, 130, 246, 0.05);
        padding-left: 1rem;
    }
    
    .language-toggle {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        padding: 0.5rem;
    }
    
    .lang-btn {
        padding: 0.75rem 1.5rem;
    }
    
    /* Mobile Menu Overlay */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: -280px;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: -1;
    }
    
    .nav-links.active::before {
        opacity: 1;
        visibility: visible;
    }
}

/* Responsive styling for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 0 1rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-text {
        padding: 2rem 1.5rem;
    }
    
    .legal-section-item h2 {
        font-size: 1.1rem;
    }
}