

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #232628 0%, #2a2d30 100%);
    padding: 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 168, 138, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

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

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                letter-spacing 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-block;
    animation: fadeInUp 1s ease-out;
}

.hero-title:hover {
    transform: scale(1.02);
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
}

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

.hero-description {
    font-size: 19px;
    margin-bottom: 32px;
    line-height: 1.625;
    color: #e0e0e0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out 0.2s both;



}

.benefit-item:hover .download-circle {
    transform: none !important;
    animation: none !important;
}

.hero-description:hover {
    transform: translateY(-2px);
    color: rgba(255, 255, 255, 0.9);
}

.hero-subheadline {
    font-size: 16px !important;
    color: #b0b0b0 !important;
    margin-bottom: 32px;
    line-height: 1.625;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out 0.3s both;

}

.nav-pd {
    padding: 0px !important;
}

.navbar {
    background: #1F2425;
    width: 100%;
    padding-right: 50px !important;
    padding-left: 70px !important;
    height: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Chatbot Illustration */
.chatbot-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    min-height: 500px;
}

.chatbot-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    height: 100%;
    min-height: 500px;
}

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

.chatbot-svg-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 60px rgba(43, 168, 138, 0.3));
    animation: svg-glow 3s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes svg-glow {
    0%, 100% {
        filter: drop-shadow(0 20px 60px rgba(43, 168, 138, 0.3));
    }
    50% {
        filter: drop-shadow(0 25px 80px rgba(43, 168, 138, 0.5));
    }
}

.chatbot-container:hover .chatbot-svg {
    filter: drop-shadow(0 30px 100px rgba(43, 168, 138, 0.6));
}

/* Animate specific SVG elements */
.chatbot-svg path[fill="#AFE3F1"] {
    animation: eye-glow 2s ease-in-out infinite;
}

@keyframes eye-glow {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 5px rgba(175, 227, 241, 0.8));
    }
    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 15px rgba(175, 227, 241, 1));
    }
}

.chatbot-svg path[fill="#213853"] {
    transition: fill 0.3s ease;
}

.chatbot-container:hover .chatbot-svg path[fill="#213853"] {
    fill: #2BA88A;
}

/* Creative enhancements for SVG elements */
.chatbot-svg path[fill="#DD786D"],
.chatbot-svg path[fill="#EE9983"] {
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.chatbot-svg path[fill="#F9F2F5"] {
    animation: screen-glow 4s ease-in-out infinite;
}

@keyframes screen-glow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.1);
    }
}

/* Add particle effect background */
.chatbot-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(43, 168, 138, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: translate(-50%, -50%);
    animation: particle-move 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particle-move {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.floating-message {
    position: absolute;
    animation: float-message 4s ease-in-out infinite;
    z-index: 10;
    pointer-events: none;
}

.message-1 {
    top: 15%;
    left: -25%;
    animation-delay: 0s;
}

.message-2 {
    top: 45%;
    right: -15%;
    animation-delay: 1.3s;
}

.message-3 {
    bottom: 15%;
    left: -20%;
    animation-delay: 2.6s;
}

@keyframes float-message {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.85;
    }
    50% {
        transform: translateY(-20px) scale(1.08);
        opacity: 1;
    }
}

.message-bubble {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #232628;
    padding: 14px 20px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15),
                0 0 20px rgba(43, 168, 138, 0.2);
    position: relative;
    white-space: nowrap;
    border: 2px solid rgba(43, 168, 138, 0.1);
    transition: all 0.3s ease;
    animation: bubble-pulse 2s ease-in-out infinite;
}

@keyframes bubble-pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15),
                    0 0 20px rgba(43, 168, 138, 0.2);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
                    0 0 30px rgba(43, 168, 138, 0.4);
    }
}

.message-bubble::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right-color: #ffffff;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.1));
}

.message-2 .message-bubble::before {
    border-right-color: transparent;
    border-left-color: #ffffff;
    left: 100%;
    right: auto;
    filter: drop-shadow(2px 0 2px rgba(0, 0, 0, 0.1));
}

.message-3 .message-bubble::before {
    border-right-color: transparent;
    border-top-color: #ffffff;
    border-bottom-color: transparent;
    top: 100%;
    left: 25px;
    transform: translateY(0);
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.chatbot-container:hover .message-bubble {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2),
                0 0 40px rgba(43, 168, 138, 0.5);
}

/* New Premium AI Chatbot Hero Styles */
.hero-container-new {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 600px;
    margin: 0 auto;
    perspective: 1500px;
}

/* Animated gradient background */
.bg-gradient-new {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(43, 168, 138, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(66, 133, 244, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(66, 133, 244, 0.06) 0%, transparent 50%);
    animation: gradient-shift-new 20s ease infinite;
    top: 0;
    left: 0;
}

@keyframes gradient-shift-new {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* Grid pattern overlay */
.grid-overlay-new {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(43, 168, 138, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43, 168, 138, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    top: 0;
    left: 0;
}

/* Floating metrics/stats cards */
.metric-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 20;
}

.metric-card.card-1 {
    top: 80px;
    left: 20px;
}

.metric-card.card-2 {
    top: 250px;
    right: 20px;
}

.metric-card.card-3 {
    bottom: 150px;
    left: 20px;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #2BA88A 0%, #4285f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.metric-trend {
    display: inline-block;
    margin-left: 8px;
    color: #2BA88A;
    font-size: 14px;
}

@keyframes float-smooth-new {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-25px) translateX(15px); }
}

/* Central business person with laptop */
.business-scene-new {
    position: absolute;
    top: 50%;
    left: 39%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 560px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-laptop-new {
    position: relative;
    animation: person-float-new 4s ease-in-out infinite;
}

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

/* AI assistant hologram */
.ai-hologram {
    position: absolute;
    top: -80px;
    right: -120px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(43, 168, 138, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hologram-pulse-new 3s ease-in-out infinite;
}

@keyframes hologram-pulse-new {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

.ai-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2BA88A 0%, #4285f4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(43, 168, 138, 0.4);
    position: relative;
}

.ai-avatar::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px solid rgba(43, 168, 138, 0.3);
    border-radius: 50%;
    animation: ring-expand-new 2s ease-out infinite;
}

@keyframes ring-expand-new {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Chat bubbles flowing */
.chat-bubble-new {
    position: absolute;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 500;
    max-width: 180px;


    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: bubble-flow-new 8s ease-in-out infinite;
    opacity: 0;
}

.bubble-user-new {
    background: linear-gradient(135deg, #4285f4 0%, #2BA88A 100%);
    color: white;
    top: 45%;

    left: -3px !important;
    animation-delay: 0s;
}

.bubble-ai-1-new {
    background: rgba(43, 168, 138, 0.15);
    border: 1px solid rgba(43, 168, 138, 0.3);
    color: #2BA88A;
    top: 30%;
    right: -40px;
    animation-delay: 2s;
}

.bubble-ai-2-new {
    background: rgba(66, 133, 244, 0.15);
    border: 1px solid rgba(66, 133, 244, 0.3);
    color: #4285f4;
    bottom: 25%;
    right: -20px;
    animation-delay: 4s;
}

@keyframes bubble-flow-new {
    0% { opacity: 0; transform: translateX(30px) scale(0.8); }
    15% { opacity: 1; transform: translateX(0) scale(1); }
    85% { opacity: 1; transform: translateX(0) scale(1); }
    100% { opacity: 0; transform: translateX(-30px) scale(0.8); }
}

/* Connection particles */
.particle-line-new {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(43, 168, 138, 0.5), transparent);
    animation: particle-move-new 3s linear infinite;
}

.line-1-new {
    top: 35%;
    left: 25%;
    width: 150px;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.line-2-new {
    top: 55%;
    right: 20%;
    width: 120px;
    transform: rotate(25deg);
    animation-delay: 1s;
}

.line-3-new {
    bottom: 30%;
    left: 30%;
    width: 100px;
    transform: rotate(-35deg);
    animation-delay: 2s;
}

@keyframes particle-move-new {
    0% { opacity: 0; transform: translateX(-50px) rotate(var(--rotation, 0deg)); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(50px) rotate(var(--rotation, 0deg)); }
}

/* Success indicator */
.success-indicator-new {
    position: absolute;
    bottom: 80px;
    right: 80px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(43, 168, 138, 0.1);
    border: 1px solid rgba(43, 168, 138, 0.3);
    border-radius: 30px;
    padding: 10px 18px;
    animation: float-smooth-new 5s ease-in-out infinite;
    animation-delay: 1s;
    z-index: 20;
}

.success-dot-new {
    width: 8px;
    height: 8px;
    background: #2BA88A;
    border-radius: 50%;
    animation: pulse-dot-new 2s ease-in-out infinite;
}

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

.success-text-new {
    color: #2BA88A;
    font-size: 13px;
    font-weight: 600;
}

/* Ambient light effects */
.light-beam-new {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: light-pulse-new 8s ease-in-out infinite;
}

.light-1-new {
    top: 10%;
    left: 10%;
    background: #2BA88A;
    animation-delay: 0s;
}

.light-2-new {
    bottom: 10%;
    right: 10%;
    background: #4285f4;
    animation-delay: 4s;
}

.light-3-new {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2BA88A;
    animation-delay: 2s;
}

@keyframes light-pulse-new {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.3); opacity: 0.2; }
}

/* Feature icons floating */
.feature-icon-new {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: icon-orbit-new 20s linear infinite;
    z-index: 15;
}

.icon-1-new {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.icon-2-new {
    top: 25%;
    right: 20%;
    animation-delay: 5s;
}

.icon-3-new {
    bottom: 25%;
    right: 15%;
    animation-delay: 10s;
}

@keyframes icon-orbit-new {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(30px) rotate(-5deg); }
}

/* Responsive adjustments for new chatbot hero */
@media (max-width: 768px) {
    .hero-container-new {
        height: auto;
        min-height: 500px;
        max-width: 100%;
        padding-bottom: 40px;
        overflow: visible;
    }

    .business-scene-new {
        width: 100%;
        height: auto;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        overflow: visible;
    }

    .person-laptop-new {
        position: relative;
        margin-bottom: 30px;
        flex-shrink: 0;
    }

    .person-laptop-new svg {
        width: 250px;
        height: auto;
    }

    .chat-bubble-new {
        font-size: 11px;
        padding: 10px 14px;
        max-width: 200px;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 8px auto;
        opacity: 1;
        transform: none;
        animation: none;
        display: block;
    }

    .bubble-user-new {
        left: auto;

    }

    .bubble-ai-1-new {
        right: auto;
    }

    .bubble-ai-2-new {
        bottom: auto;
        right: auto;
    }

    .success-indicator-new {
        bottom: 40px;
        right: 40px;
        padding: 8px 14px;
    }

    .feature-icon-new {
        width: 40px;
        height: 40px;
    }

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

/* iPad Pro (1024x1366) specific adjustments */
@media (min-width: 1024px) and (max-width: 1024px) {
    .bubble-user-new {
        max-width: 100px !important;
        left: 84px !important;
        right: auto !important;
    }

    .chat-bubble-new {
        max-width: 180px;
    }

    .business-scene-new {
        overflow: visible;
        padding-left: 20px;
    }

    .hero-container-new {
        overflow: visible;
        padding-left: 20px;
    }
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2BA88A;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out 0.9s both;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(43, 168, 138, 0.1);
    border-color: #2BA88A;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 20px rgba(43, 168, 138, 0.3);
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    padding: 4px 0;
    animation: fadeInUp 1s ease-out both;
}

.feature-item:hover {
    transform: translateX(4px) scale(1.02);
    color: rgba(255, 255, 255, 0.95);
}

.feature-item:nth-child(1) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.7s;
}

.checkmark {
    color: #2BA88A;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(43, 168, 138, 0.5);
}

.btn-primary {
    display: inline-flex !important;
    padding: 8px 16px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    border-radius: 5px !important;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #2BA88A !important;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.40) !important;
    color: #2BA88A !important;
    font-family: 'Manrope' !important;
    font-size: 17.2px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: normal !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary:hover {
    background: #2BA88A !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.50) !important;
}

.btn-primary:hover svg path {
    stroke: #ffffff !important;
}

.btn-primary:active {
    background: #2BA88A !important;
    color: #ffffff !important;
    transform: translateY(0);
}

.btn-primary:active svg path {
    stroke: #ffffff !important;
}

.btn-primary svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.btn-primary svg path {
    stroke: currentColor;
    stroke-width: 2;
}

.statistics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.stat-item {
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    padding: 16px;
    border-radius: 8px;
    animation: fadeInUp 1s ease-out both;
}

.stat-item:hover {
    transform: scale(1.08) translateY(-4px);
    background-color: rgba(255, 255, 255, 0.05);
}

.stat-item:nth-child(1) {
    animation-delay: 1s;
}

.stat-item:nth-child(2) {
    animation-delay: 1.1s;
}

.stat-item:nth-child(3) {
    animation-delay: 1.2s;
}

.stat-item:nth-child(4) {
    animation-delay: 1.3s;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.95);
}

.stat-label {
    font-size: 16px;
    color: #e0e0e0;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Partners Section */
.partners {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    padding: 60px 0;
    color: #ffffff;
    overflow: hidden;
    border-top: 1px solid rgba(43, 168, 138, 0.2);
    border-bottom: 1px solid rgba(43, 168, 138, 0.2);
    position: relative;
}

.partners-tagline {
    text-align: center;
    font-size: 14px;
    margin-bottom: 32px;
    color: #e0e0e0;
}

.partners-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-carousel {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

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

.partner-logo {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Main Heading Section */
.main-heading-section {
    background: linear-gradient(135deg, #232628 0%, #2a2d30 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.main-heading {
    font-size: 42px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 24px !important;
    line-height: 1.3 !important;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-description {
    font-size: 18px;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 32px;
    line-height: 1.625;
}

/* Section Title Styles */
.section-title-center {
    font-size: 42px !important;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.3 !important;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing:0px !important;
}

.section-subtitle-center {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 32px;
    line-height: 1.625;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.section-intro {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.6;
}

.section-text {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.625;
}

.section-conclusion {
    font-size: 18px;
    color: #ffffff;
    margin-top: 32px;
    margin-bottom: 32px;
    line-height: 1.625;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Why AI Chatbots Matter Section */
.why-chatbots-section {
    background: #232628;
    padding: 60px 0;
}

.why-chatbots-section .section-intro {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-chatbots-section .section-text {
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.benefit-item {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    padding: 28px 20px;
    border-radius: 16px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 0.8s ease-out forwards;
}

.benefit-item[data-delay="0"] {
    animation-delay: 0.1s;
}

.benefit-item[data-delay="0.1"] {
    animation-delay: 0.2s;
}

.benefit-item[data-delay="0.2"] {
    animation-delay: 0.3s;
}

.benefit-item[data-delay="0.3"] {
    animation-delay: 0.4s;
}

.benefit-item[data-delay="0.4"] {
    animation-delay: 0.5s;
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(43, 168, 138, 0.8);
    box-shadow: 0 20px 50px rgba(43, 168, 138, 0.4);
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    overflow: visible;
}

.benefit-item:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.benefit-item:hover .icon-glow {
    opacity: 0;
    transform: scale(1.5);
}

.benefit-item:hover .benefit-hover-effect {
    opacity: 0;
}

.benefit-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(43, 168, 138, 0.6));
    transition: filter 0.3s;
}

.benefit-item:hover .benefit-icon svg {
    filter: drop-shadow(0 0 25px rgba(43, 168, 138, 0.9));
}

/* Gear Rotate Animation for Learns & Evolves */
.benefit-icon .gear-rotate {
    animation: rotateGear 8s linear infinite;
    transform-origin: 32px 32px;
}

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

/* Growth Pulse Animation for Learns & Evolves */
.benefit-icon .growth-pulse {
    animation: growPulse 2s ease-in-out infinite;
}

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

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(43, 168, 138, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: none;
}

.benefit-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 168, 138, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    border-radius: 16px;
    display: none;
}

/* Clock Animation */
.hour-hand {
    transform-origin: 32px 32px;
    animation: tick-hour 12s linear infinite;
}

.minute-hand {
    transform-origin: 32px 32px;
    animation: tick-minute 2s linear infinite;
}

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

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

/* Hourglass Animation */
.hourglass-icon {
    position: relative;
}

.sand-top {
    animation: sand-empty 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes sand-empty {
    0% {
        fill-opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        fill-opacity: 0.1;
        transform: translateY(2px);
    }
    100% {
        fill-opacity: 0.3;
        transform: translateY(0);
    }
}

.sand-flow {
    animation: sand-fall 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes sand-fall {
    0% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }
    50% {
        transform: translateY(5px) scaleY(0.4);
        opacity: 0.8;
    }
    100% {
        transform: translateY(10px) scaleY(0);
        opacity: 0;
    }
}

.sand-bottom {
    animation: sand-fill 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes sand-fill {
    0% {
        fill-opacity: 0.6;
        transform: translateY(0) scaleY(0.8);
    }
    50% {
        fill-opacity: 0.9;
        transform: translateY(-2px) scaleY(1);
    }
    100% {
        fill-opacity: 0.6;
        transform: translateY(0) scaleY(0.8);
    }
}

.download-circle {
    animation: download-pulse 2s ease-in-out infinite;
    transform-origin: center;
}

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

.download-arrow {
    animation: download-bounce 1.5s ease-in-out infinite;
    transform-origin: center;
}

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

.hourglass-top,
.hourglass-bottom {
    stroke-width: 3;
    transition: stroke-width 0.3s;
}

.benefit-item:hover .hourglass-top,
.benefit-item:hover .hourglass-bottom {
    stroke-width: 4;
}

.benefit-item:hover .sand-flow {
    animation: sand-fall-fast 1s ease-in-out infinite;
}

@keyframes sand-fall-fast {
    0% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }
    50% {
        transform: translateY(6px) scaleY(0.3);
        opacity: 0.9;
    }
    100% {
        transform: translateY(12px) scaleY(0);
        opacity: 0;
    }
}

.benefit-item:hover .download-circle {
    animation: download-active 0.8s ease-in-out infinite;
}

@keyframes download-active {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.benefit-item:hover .download-arrow {
    animation: download-bounce-fast 0.8s ease-in-out infinite;
}

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

/* Target & Arrow Animation */
.target-arrow-icon {
    position: relative;
}

.target-glow {
    animation: target-glow-pulse 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes target-glow-pulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.05);
    }
}

.target-ring-1,
.target-ring-2,
.target-ring-3 {
    animation: target-ring-pulse 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes target-ring-pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

.target-ring-2 {
    animation: target-ring-2-pulse 2s ease-in-out infinite;
}

@keyframes target-ring-2-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.target-dot {
    animation: target-dot-pulse 1.5s ease-in-out infinite;
    transform-origin: center;
}

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

.arrow-shaft {
    animation: arrow-extend 2s ease-in-out infinite;
    transform-origin: 32px 32px;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
}

@keyframes arrow-extend {
    0% {
        stroke-dashoffset: 20;
        opacity: 0.5;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.arrow-glow {
    animation: arrow-glow-pulse 2s ease-in-out infinite;
    transform-origin: 32px 32px;
}

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

.arrow-head {
    animation: arrow-head-appear 2s ease-in-out infinite;
    transform-origin: 48px 16px;
    opacity: 0;
}

@keyframes arrow-head-appear {
    0% {
        opacity: 0;
        transform: scale(0.5) translate(-8px, -8px);
    }
    50% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
}

/* Hover Effects for Target & Arrow */
.benefit-item:hover .target-glow {
    animation: target-glow-pulse-fast 1.5s ease-in-out infinite;
}

@keyframes target-glow-pulse-fast {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.08);
    }
}

.benefit-item:hover .target-ring-1,
.benefit-item:hover .target-ring-2,
.benefit-item:hover .target-ring-3 {
    animation: target-ring-pulse-fast 1s ease-in-out infinite;
}

@keyframes target-ring-pulse-fast {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.03);
    }
}

.benefit-item:hover .target-dot {
    animation: target-dot-pulse-fast 0.8s ease-in-out infinite;
}

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

.benefit-item:hover .arrow-shaft {
    animation: arrow-extend-fast 1s ease-in-out infinite;
}

.benefit-item:hover .arrow-glow {
    animation: arrow-glow-pulse-fast 1s ease-in-out infinite;
}

@keyframes arrow-extend-fast {
    0% {
        stroke-dashoffset: 20;
        opacity: 0.5;
    }
    30% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes arrow-glow-pulse-fast {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.benefit-item:hover .arrow-head {
    animation: arrow-head-appear-fast 1s ease-in-out infinite;
}

@keyframes arrow-head-appear-fast {
    0% {
        opacity: 0;
        transform: scale(0.5) translate(-8px, -8px);
    }
    30% {
        opacity: 1;
        transform: scale(1.2) translate(0, 0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
}

.impact-ripple-1 {
    animation: ripple-1 2s ease-out infinite;
    transform-origin: center;
}

.impact-ripple-2 {
    animation: ripple-2 2s ease-out infinite;
    transform-origin: center;
    animation-delay: 0.2s;
}

.impact-ripple-3 {
    animation: ripple-3 2s ease-out infinite;
    transform-origin: center;
    animation-delay: 0.4s;
}

@keyframes ripple-1 {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    30% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes ripple-2 {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    30% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(2.3);
        opacity: 0;
    }
}

@keyframes ripple-3 {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    30% {
        transform: scale(1);
        opacity: 0.2;
    }
    100% {
        transform: scale(2.25);
        opacity: 0;
    }
}

/* Hover Effects for Target & Arrow */
.benefit-item:hover .target-ring-outer,
.benefit-item:hover .target-ring-3 {
    animation: target-ring-pulse-fast 1s ease-in-out infinite;
}

@keyframes target-ring-pulse-fast {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.05);
    }
}

.benefit-item:hover .target-bullseye {
    animation: bullseye-pulse-fast 0.8s ease-in-out infinite;
}

@keyframes bullseye-pulse-fast {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(43, 168, 138, 0.8));
    }
}

.benefit-item:hover .arrow-shaft {
    animation: arrow-fly-fast 1.5s ease-in-out infinite;
}

.benefit-item:hover .arrow-head {
    animation: arrow-hit-fast 1.5s ease-in-out infinite;
}

.benefit-item:hover .arrow-head-outline {
    animation: arrow-hit-outline-fast 1.5s ease-in-out infinite;
}

@keyframes arrow-hit-outline-fast {
    0% {
        opacity: 0;
        transform: translateX(-12px) translateY(-1px) scale(0.8);
    }
    25% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

.benefit-item:hover .arrow-shaft {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 1)) drop-shadow(0 0 3px rgba(0, 0, 0, 0.4));
}

.benefit-item:hover .arrow-fletching {
    animation: arrow-fletching-move-fast 1.5s ease-in-out infinite;
}

@keyframes arrow-fly-fast {
    0% {
        stroke-dashoffset: 45;
        transform: translateX(-12px) translateY(-1px);
        opacity: 0.4;
    }
    25% {
        stroke-dashoffset: 0;
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
}

@keyframes arrow-hit-fast {
    0% {
        opacity: 0.4;
        transform: translateX(-12px) translateY(-1px) scale(0.8);
    }
    25% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

@keyframes arrow-fletching-move-fast {
    0% {
        opacity: 0.4;
        transform: translateX(-12px) translateY(-1px);
    }
    25% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

.benefit-item:hover .impact-ripple-1 {
    animation: ripple-1-fast 1.5s ease-out infinite;
}

.benefit-item:hover .impact-ripple-2 {
    animation: ripple-2-fast 1.5s ease-out infinite;
    animation-delay: 0.15s;
}

.benefit-item:hover .impact-ripple-3 {
    animation: ripple-3-fast 1.5s ease-out infinite;
    animation-delay: 0.3s;
}

@keyframes ripple-1-fast {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    25% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes ripple-2-fast {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    25% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(2.7);
        opacity: 0;
    }
}

@keyframes ripple-3-fast {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    25% {
        transform: scale(1);
        opacity: 0.2;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Globe Animation */
.globe-circle {
    animation: globe-rotate 8s linear infinite;
    transform-origin: 32px 32px;
}

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

/* Brain Animation */
.brain-path {
    animation: brain-pulse 3s ease-in-out infinite;
}

.brain-dot {
    animation: brain-dot-pulse 2s ease-in-out infinite;
}

.brain-dot:nth-child(2) {
    animation-delay: 0s;
}

.brain-dot:nth-child(3) {
    animation-delay: 0.3s;
}

.brain-dot:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes brain-pulse {
    0%, 100% {
        stroke-width: 3;
        opacity: 1;
    }
    50% {
        stroke-width: 4;
        opacity: 0.8;
    }
}

@keyframes brain-dot-pulse {
    0%, 100% {
        r: 3;
        opacity: 1;
    }
    50% {
        r: 4;
        opacity: 0.7;
    }
}

/* Gear & Graph Animation */
.gear-graph-icon {
    position: relative;
}

.gear-outer,
.gear-inner {
    animation: gear-rotate 4s linear infinite;
    transform-origin: center;
}

.gear-tooth {
    animation: gear-rotate 4s linear infinite;
    transform-origin: center;
}

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

.graph-line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: graph-draw 2s ease-in-out infinite;
}

@keyframes graph-draw {
    0% {
        stroke-dashoffset: 100;
        opacity: 0.5;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.graph-point {
    animation: point-pulse 2s ease-in-out infinite;
    transform-origin: center;
    opacity: 0;
}

.graph-point:nth-of-type(1) {
    animation-delay: 0.1s;
}

.graph-point:nth-of-type(2) {
    animation-delay: 0.2s;
}

.graph-point:nth-of-type(3) {
    animation-delay: 0.3s;
}

.graph-point:nth-of-type(4) {
    animation-delay: 0.4s;
}

.graph-point:nth-of-type(5) {
    animation-delay: 0.5s;
}

.graph-point:nth-of-type(6) {
    animation-delay: 0.6s;
}

.graph-point-final {
    animation: point-final-pulse 1.5s ease-in-out infinite;
    animation-delay: 0.7s;
}

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

@keyframes point-final-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        fill: #2BA88A;
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
        fill: #2BA88A;
        filter: drop-shadow(0 0 8px rgba(43, 168, 138, 0.8));
    }
}

.arrow-up {
    animation: arrow-bounce 1.5s ease-in-out infinite;
    transform-origin: center;
}

.arrow-line {
    animation: arrow-extend 1.5s ease-in-out infinite;
    transform-origin: left center;
}

@keyframes arrow-bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-4px);
        opacity: 0.9;
    }
}

@keyframes arrow-extend {
    0%, 100% {
        transform: scaleX(1);
        opacity: 1;
    }
    50% {
        transform: scaleX(1.2);
        opacity: 0.9;
    }
}

/* Hover Effects for Gear & Graph */
.benefit-item:hover .gear-outer,
.benefit-item:hover .gear-inner,
.benefit-item:hover .gear-tooth {
    animation: gear-rotate-fast 2s linear infinite;
}

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

.benefit-item:hover .graph-line {
    animation: graph-draw-fast 1s ease-in-out infinite;
    stroke-width: 3.5;
}

@keyframes graph-draw-fast {
    0% {
        stroke-dashoffset: 100;
        opacity: 0.5;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.benefit-item:hover .graph-point {
    animation: point-pulse-fast 1s ease-in-out infinite;
}

.benefit-item:hover .graph-point-final {
    animation: point-final-pulse-fast 0.8s ease-in-out infinite;
}

@keyframes point-pulse-fast {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
    100% {
        opacity: 0.9;
        transform: scale(1);
    }
}

@keyframes point-final-pulse-fast {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        fill: #2BA88A;
    }
    50% {
        opacity: 1;
        transform: scale(1.8);
        fill: #2BA88A;
        filter: drop-shadow(0 0 12px rgba(43, 168, 138, 1));
    }
}

.benefit-item:hover .arrow-up {
    animation: arrow-bounce-fast 0.8s ease-in-out infinite;
}

.benefit-item:hover .arrow-line {
    animation: arrow-extend-fast 0.8s ease-in-out infinite;
}

@keyframes arrow-bounce-fast {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

@keyframes arrow-extend-fast {
    0%, 100% {
        transform: scaleX(1);
        opacity: 1;
    }
    50% {
        transform: scaleX(1.4);
        opacity: 1;
    }
}

.benefit-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #ffffff;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    letter-spacing:0px !important;
}

.benefit-item:hover .benefit-title {
    color: #2BA88A;
    transform: translateY(-2px);
}

.benefit-desc {
    font-size: 14px !important;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.5 !important;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.benefit-item:hover .benefit-desc {
    color: #e0e0e0;
    transform: translateY(-2px);
}

/* Market Statistics Section */
.market-stats-section {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    padding: 60px 0;
    position: relative;
}

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

.stat-card {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 0.8s ease-out forwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(5) {
    animation-delay: 0.5s;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 168, 138, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

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

.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(43, 168, 138, 0.6);
    box-shadow: 0 20px 50px rgba(43, 168, 138, 0.3);
}

.stat-card-primary {
    border-color: rgba(43, 168, 138, 0.4);
    background: linear-gradient(135deg, rgba(43, 168, 138, 0.1) 0%, #2a2d30 100%);
}

.stat-card-featured {
    border-color: rgba(43, 168, 138, 0.4);
    background: linear-gradient(135deg, rgba(43, 168, 138, 0.1) 0%, #2a2d30 100%);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(43, 168, 138, 0.5));
    transition: all 0.5s;
}

.stat-card:hover .stat-icon svg {
    filter: drop-shadow(0 0 25px rgba(43, 168, 138, 0.8));
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2BA88A;
    margin-bottom: 12px;
    line-height: 1.2;
    background: linear-gradient(135deg, #2BA88A 0%, #4285f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.stat-description {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 16px;
}

.stat-source {
    font-size: 12px;
    color: #2BA88A;
    font-weight: 500;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(43, 168, 138, 0.2);
    opacity: 0.8;
}

.stat-card-primary .stat-number,
.stat-card-featured .stat-number {
    font-size: 48px;
}

/* Stats Point List */
.stats-point-list {
    list-style: none;
    padding: 0;
    margin: 48px 0 0 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stats-point-list li {
    font-family: 'Manrope' !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: #ffffff;
    margin-bottom: 24px;
    padding-left: 32px;
    position: relative;
}

.stats-point-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2BA88A;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.8;
}

.stat-number-gradient {
    background: linear-gradient(90deg, #2BA88A 0%, #4285f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1em;
    display: inline-block;
}

.stats-point-list .stat-source {
    font-size: 14px;
    color: #b0b0b0;
    font-weight: 400;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    opacity: 1;
    font-style: italic;
}

/* ROI & Impact Section */
.roi-impact-section {
    background: #232628;
    padding: 60px 0;
}

/* Key Benefits Section */
.key-benefits-section {
    background: #232628;
    padding: 60px 0;
}

.benefits-list {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
}

.benefit-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    border-radius: 12px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    transition: all 0.3s;
}

.benefit-point:hover {
    border-color: rgba(43, 168, 138, 0.5);
    transform: translateX(8px);
}

.benefit-point strong {
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.benefit-point div {
    color: #ffffff;
    line-height: 1.6;
}

/* Who We Serve Section */
.who-we-serve-section {
    background: linear-gradient(135deg, #232628 0%, #2a2d30 100%);
    padding: 60px 0;
}

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

.industry-item {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-item:hover {
    transform: translateY(-8px);
    border-color: rgba(43, 168, 138, 0.5);
    box-shadow: 0 8px 30px rgba(43, 168, 138, 0.3);
}

.industry-icon {
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(43, 168, 138, 0.5));
}

.industry-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #ffffff;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing:0px !important;
}

.industry-desc {
    font-size: 16px !important;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.625 !important;
}

/* Our Process Section */
.our-process-section {
    background: #232628;
    padding: 60px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 32px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(43, 168, 138, 0.5), transparent);
    z-index: 0;
}

.process-step {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(43, 168, 138, 0.5);
    box-shadow: 0 8px 30px rgba(43, 168, 138, 0.3);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2BA88A 0%, #2BA88A 100%);
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(43, 168, 138, 0.4);
}

.step-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #ffffff;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing:0px !important;
}

.step-desc {
    font-size: 14px !important;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.625 !important;
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: linear-gradient(135deg, #232628 0%, #2a2d30 100%);
    padding: 60px 0;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-item-card {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-item-card:hover {
    transform: translateX(8px);
    border-color: rgba(43, 168, 138, 0.5);
    box-shadow: 0 8px 30px rgba(43, 168, 138, 0.3);
}

.why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(43, 168, 138, 0.5));
}

.why-content {
    flex: 1;
}

.why-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: left;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing:0px !important;
}

.why-desc {
    font-size: 16px !important;
    color: #ffffff;
    text-align: left;
    margin-bottom: 32px;
    line-height: 1.625 !important;
}

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

.faq-list {
    max-width: 900px;
    margin: 48px auto 0;
}

.faq-item {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    margin-bottom: 24px;
    transition: all 0.3s;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(43, 168, 138, 0.5);
}

.faq-item.active {
    border-color: rgba(43, 168, 138, 0.6);
}

.faq-question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}

.faq-question-wrapper:hover {
    background: rgba(43, 168, 138, 0.05);
}

.faq-item.active .faq-question-wrapper {
    background: rgba(43, 168, 138, 0.1);
}

.faq-question {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #ffffff;
    margin: 0;
    flex: 1;
    padding-right: 20px;
    transition: color 0.3s;
    letter-spacing:1px !important;
}

.faq-item.active .faq-question {
    color: #2BA88A;
}

.faq-arrow {
    width: 24px;
    height: 24px;
    color: #2BA88A;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 32px;
}

.faq-item.active .faq-answer-wrapper {
    max-height: 500px;
    padding: 0 32px 32px 32px;
}

.faq-answer {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.625;
    margin: 0;
    padding-top: 16px;
}

/* CTA Section Updates */
.cta-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
    text-align: center;
}

.cta-contact-info {
    margin: 32px 0;
    text-align: center;
}

.cta-contact-info p {
    font-size: 16px;
    color: #b0b0b0;
}

.contact-link {
    color: #2BA88A;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #2BA88A;
    text-decoration: underline;
}

.cta-conclusion {
    font-size: 16px;
    color: #b0b0b0;
    text-align: center;
    margin-top: 24px;
    font-style: italic;
}

/* Feature Cards Section */
.feature-cards {
    background: #232628;
    padding: 60px 0;
    position: relative;
}

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

.card {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2BA88A, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.card:hover::before {
    transform: translateX(100%);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(43, 168, 138, 0.5);
    box-shadow: 0 8px 30px rgba(43, 168, 138, 0.3);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    display: flex;

}

.card-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(43, 168, 138, 0.5));

}

.card:hover .card-icon svg {
    filter: drop-shadow(0 0 15px rgba(43, 168, 138, 0.8));
}

.card-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3 !important;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing:0px !important;
}

.card-description {
    font-size: 16px;
    text-align: justify;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.625;

    text-justify: inter-word;
    hyphens: auto;
}



/* Suite Section */
.suite-section {
    background: #232628;
    padding: 60px 0;
    position: relative;
}

.suite-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.suite-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.suite-description {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 32px;
    line-height: 1.625;
}

.suite-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    transition: transform 0.3s;
}

.suite-feature:hover {
    transform: translateX(8px);
}

.suite-checkmark {
    color: #2BA88A;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #2BA88A;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(43, 168, 138, 0.5);
}

.suite-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.suite-feature-desc {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 32px;
    line-height: 1.625;
}

/* Solutions Section */
.solutions-section {
    background: linear-gradient(135deg, #232628 0%, #2a2d30 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.solutions-title {
    font-size: 42px !important;
    font-weight: 700 !important;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3 !important;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing:0px !important;
}

.solutions-subtitle {
    font-size: 18px !important;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 32px;
    line-height: 1.625 !important;
}

/* Customer Service Section */
.customer-service-section {
    background: #232628;
    padding: 60px 0;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.service-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}


.service-description {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 32px;
    line-height: 1.625;
}

.service-feature-card {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-feature-card:last-child {
    margin-bottom: 0;
}

.service-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(43, 168, 138, 0.5);
    box-shadow: 0 8px 30px rgba(43, 168, 138, 0.3);
}

.service-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-feature-icon svg {
    width: 100%;
    height: 100%;
}

.service-feature-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.service-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.service-feature-desc {
    font-size: 16px;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.625;
}

.service-image-placeholder {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    border-radius: 12px;
    padding: 0;
    border: 1px solid rgba(43, 168, 138, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.chatbot-interface {
    display: flex;
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(43, 168, 138, 0.2);
    width: 100%;
    max-width: 100%;
}

.interface-sidebar {
    background: #232628;
    width: 180px;
    padding: 16px;
    border-right: 1px solid rgba(43, 168, 138, 0.2);
}

.sidebar-item {
    padding: 10px 12px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #b0b0b0;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.sidebar-item:hover {
    background: rgba(43, 168, 138, 0.1);
    color: #ffffff;
}

.sidebar-item.active {
    background: linear-gradient(135deg, #2BA88A 0%, #2BA88A 100%);
    color: #0a0a0a;
}

.interface-main {
    flex: 1;
    padding: 16px;
    background: #232628;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-width: 100%;
    width: 100%;
}

.interface-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.interface-header {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.interface-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(43, 168, 138, 0.3);
    border-radius: 6px;
    padding: 6px 10px;
    min-width: 180px;
}

.search-bar svg {
    flex-shrink: 0;
}

.search-bar input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #ffffff;
    width: 100%;
}

.search-bar input::placeholder {
    color: #666;
}

.action-icons {
    display: flex;
    gap: 6px;
}

.icon-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(43, 168, 138, 0.3);
}

.icon-btn:hover {
    background: rgba(43, 168, 138, 0.2);
    transform: scale(1.1);
}

.settings-btn {
    background: linear-gradient(135deg, #2BA88A 0%, #2BA88A 100%);
    color: #0a0a0a;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(43, 168, 138, 0.3);
}

.settings-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(43, 168, 138, 0.5);
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    flex: 1;
}

.dashboard-tab-content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.dashboard-card {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: #e5e7eb;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardFadeIn 0.6s ease-out backwards;
}

.dashboard-card:nth-child(1) { animation-delay: 0.1s; }
.dashboard-card:nth-child(2) { animation-delay: 0.2s; }
.dashboard-card:nth-child(3) { animation-delay: 0.3s; }
.dashboard-card:nth-child(4) { animation-delay: 0.4s; }
.dashboard-card:nth-child(5) { animation-delay: 0.5s; }
.dashboard-card:nth-child(6) { animation-delay: 0.6s; }
.dashboard-card:nth-child(7) { animation-delay: 0.7s; }
.dashboard-card:nth-child(8) { animation-delay: 0.8s; }
.dashboard-card:nth-child(9) { animation-delay: 0.9s; }

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

.dashboard-card:hover {
    transform: translateY(-4px);
    border-color: rgba(43, 168, 138, 0.5);
    box-shadow: 0 8px 30px rgba(43, 168, 138, 0.3);
}

.dashboard-card .card-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-date {
    font-size: 11px;
    color: #666;
    font-weight: 400;
}

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

.chat-bubble {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.chat-bubble.user {
    flex-direction: row;
}

.chat-bubble.bot {
    flex-direction: row-reverse;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(43, 168, 138, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(43, 168, 138, 0.3);
}

.bubble-text {
    background: linear-gradient(135deg, #2BA88A 0%, #2BA88A 100%);
    color: #0a0a0a;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 11px;
    line-height: 1.4;
    max-width: 80%;
    animation: messageSlide 0.5s ease-out;
}

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

.card-description {
    font-size: 17px !important;
    color: #ffffff !important;
    line-height: 1.5 !important;
    margin: 0;
}

.text-sample {
    margin-bottom: 0;
}

.text-sample p {
    font-size: 11px;
    color: #b0b0b0;
    line-height: 1.5;
    margin: 0;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100px;
    margin-bottom: 8px;
    gap: 6px;
    padding: 0 4px;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, #2BA88A 0%, #2BA88A 100%);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: barGrow 1.5s ease-out backwards;
    position: relative;
    overflow: hidden;
}

.bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes barGrow {
    from {
        height: 0;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

.chart-stats {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #b0b0b0;
    align-items: center;
}

.trend-up {
    color: #2BA88A;
    font-size: 12px;
    animation: pulse 2s infinite;
}

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

.analytics-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #ffffff;
}

.stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: dotPulse 2s infinite;
}

.stat-dot.green {
    background-color: #2BA88A;
    box-shadow: 0 0 8px rgba(43, 168, 138, 0.8);
}

.stat-dot.blue {
    background-color: #4285f4;
    box-shadow: 0 0 8px rgba(66, 133, 244, 0.8);
}

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

.stat-value {
    margin-left: auto;
    font-weight: 600;
    color: #2BA88A;
    animation: numberCount 2s ease-out;
}

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

.stat-label-small {
    font-size: 10px;
    color: #666;
    margin-top: -8px;
    margin-left: 20px;
}

.line-chart {
    position: relative;
    height: 100px;
    margin-bottom: 4px;
}

.line-chart svg {
    width: 100%;
    height: 100%;
}

.line-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease-out forwards;
}

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

.chart-axis {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #666;
    margin-top: 2px;
    padding: 0 4px;
}

/* Sales Section */
.sales-section {
    background: linear-gradient(135deg, #232628 0%, #2a2d30 100%);
    padding: 60px 0;
}

.sales-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.sales-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.sales-description {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 32px;
    line-height: 1.6;
}

.sales-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.sales-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 168, 138, 0.2);
    border-radius: 50%;
    color: #2BA88A;
    box-shadow: 0 0 15px rgba(43, 168, 138, 0.3);
}

.sales-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.sales-feature-desc {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 32px;
    line-height: 1.625;
}

.sales-feature-right {
    margin-bottom: 32px;
}

.sales-icon-right {
    font-size: 32px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 168, 138, 0.2);
    border-radius: 50%;
    color: #2BA88A;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(43, 168, 138, 0.3);
}

.sales-feature-title-right {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.sales-feature-desc-right {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 32px;
    line-height: 1.625;
}

.sales-image-placeholder {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.laptop-mockup {
    background: #2a2d30;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(43, 168, 138, 0.2);
}

.laptop-screen {
    background: #232628;
    padding: 20px;
}

.chat-interface {
    border: 1px solid rgba(43, 168, 138, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(135deg, #2BA88A 0%, #2BA88A 100%);
    color: #0a0a0a;
    padding: 12px 16px;
    font-weight: 600;
}

.chat-messages {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    padding: 12px 16px;
    border-radius: 8px;
    max-width: 80%;
}

.message.bot {
    background: linear-gradient(135deg, #2BA88A 0%, #2BA88A 100%);
    color: #0a0a0a;
    align-self: flex-start;
}

.message.user {
    background: rgba(43, 168, 138, 0.3);
    color: #ffffff;
    align-self: flex-end;
    border: 1px solid rgba(43, 168, 138, 0.5);
}

/* Testimonial Hero Section */
.testimonial-hero {
    background: linear-gradient(135deg, #232628 0%, #2a2d30 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.testimonial-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.ai-highlight {
    background: linear-gradient(135deg, #2BA88A 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-hero-subtitle {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: #232628;
    padding: 60px 0;
}

.testimonial-card-large {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    padding: 60px;
    border-radius: 12px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    max-height: 400px;
    margin: 0 auto;
    position: relative;
}

.quote-icon {
    font-size: 80px;
    color: #2ba88a;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-slider {
    position: relative;
    min-height: 200px;
    margin-bottom: 40px;
}

.testimonial-slide {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #2ba88a;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;


    margin-top: 30px;
}

.carousel-btn {
    background: #3a3d40;
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: #2ba88a;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(43, 168, 138, 0.4);
}

.carousel-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4a4d50;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #a7dace;

    width: 35px;
    border-radius: 6px;
}

.dot:hover {
    background: #5a5d60;
}

.dot.active:hover {
    background: #a7dace;
}

.title-white {
    color: #ffffff;
}

.title-green {
    color: #2ba88a;
}

/* More Testimonials */
.more-testimonials {
    background: #232628;
    padding: 60px 0;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(43, 168, 138, 0.5);
    box-shadow: 0 8px 30px rgba(43, 168, 138, 0.3);
}

.testimonial-card .testimonial-text {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.625;
}

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

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2BA88A 0%, #2BA88A 100%);
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(43, 168, 138, 0.5);
}

.testimonial-card .author-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.testimonial-card .author-title {
    font-size: 14px;
    color: #b0b0b0;
}

.testimonial-company {
    font-size: 18px;
    font-weight: 600;
    color: #2BA88A;
    text-shadow: 0 0 10px rgba(43, 168, 138, 0.5);
}

/* Integration Section */
.integration-section {
    background: linear-gradient(135deg, #232628 0%, #2a2d30 100%);
    padding: 60px 0;
    position: relative;
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.integration-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.integration-description {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 32px;
    line-height: 1.625;
}

.btn-sales {
    background: linear-gradient(135deg, #2BA88A 0%, #2BA88A 100%);
    color: #0a0a0a;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(43, 168, 138, 0.4);
}

.btn-sales:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(43, 168, 138, 0.6);
}

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

.integration-item {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    border: 1px solid rgba(43, 168, 138, 0.2);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 82px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.integration-item::before {
    display: none;
}

.integration-item:hover {
    border-color: rgba(43, 168, 138, 0.5);
    box-shadow: 0 8px 25px rgba(43, 168, 138, 0.3);
}

.integration-item.highlighted {
    border-color: rgba(43, 168, 138, 0.8);
    box-shadow: 0 0 20px rgba(43, 168, 138, 0.6), 0 0 40px rgba(43, 168, 138, 0.4);
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
}

.integration-item.highlighted .integration-icon svg {
    filter: drop-shadow(0 0 8px rgba(43, 168, 138, 0.8));
}

.integration-icon {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
}

.integration-icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 4px rgba(43, 168, 138, 0.3));
}

.integration-label {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
}

/* Trust Section */
.trust-section {
    background: #232628;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.trust-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.3;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    font-size: 32px;
    color: #2BA88A;
    filter: drop-shadow(0 0 10px rgba(43, 168, 138, 0.5));
}

.badge-label {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2a2d30 0%, #232628 100%);
    padding: 60px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(43, 168, 138, 0.2);
    border-bottom: 1px solid rgba(43, 168, 138, 0.2);
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.cta-checkmark {
    color: #2BA88A;
    font-size: 20px;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    background: #232628;
    padding: 60px 0;
    position: relative;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #232628;
    padding: 60px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: left;
}

.contact-subtitle {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 40px;
    text-align: left;
}

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

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

.form-row:last-of-type {
    margin-bottom: 0;
}

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

.form-group input {
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ffffff;
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
    color: #ffffff;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-bottom-color: #ffffff;
}

.form-group input::placeholder {
    color: #b0b0b0;
}

.phone-input {
    display: flex;
    gap: 8px;
}

.country-code {
    width: 80px;
    padding: 12px;
    border: 1px solid rgba(43, 168, 138, 0.3);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: #232628;
    color: #ffffff;
}

.phone-input input {
    flex: 1;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}

.form-checkbox input[type="checkbox"]:checked {
    background: #ffffff;
}

.form-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #232628;
    font-size: 14px;
    font-weight: bold;
}

.form-checkbox label {
    font-size: 14px;
    color: #b0b0b0;
    cursor: pointer;
}

.btn-submit {
    display: inline-flex !important;
    padding: 8px 16px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    border-radius: 5px !important;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #2BA88A !important;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.40) !important;
    color: #2BA88A !important;
    font-family: 'Manrope' !important;
    font-size: 17.2px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: normal !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
    width: fit-content;
    position: relative;
}

.btn-submit:hover {
    background: #2BA88A !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.50) !important;
}

.btn-submit:hover svg path {
    stroke: #ffffff !important;
}

.btn-submit:active {
    background: #2BA88A !important;
    color: #ffffff !important;
    transform: translateY(0);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.40) !important;
}

.btn-submit:active svg path {
    stroke: #ffffff !important;
}

.btn-submit svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.btn-submit svg path {
    stroke: currentColor;
    stroke-width: 2;
    transition: stroke 0.3s;
}



/* Responsive Design */
@media (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1199px) and (min-width: 969px) {
    .benefits-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }

    .benefit-item {
        padding: 24px 16px;
    }

    .benefit-icon {
        width: 44px;
        height: 44px;
    }

    .benefit-title {
        font-size: 16px !important;
    }

    .benefit-desc {
        font-size: 13px !important;
    }
}

@media (max-width: 968px) {
    .hero-content,
    .suite-content,
    .service-content,
    .sales-content,
    .integration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .benefit-row {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-steps::before {
        display: none;
    }

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

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

    .btn-secondary {
        width: 100%;
    }

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

    .stat-card {
        padding: 32px 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-card-primary .stat-number,
    .stat-card-featured .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .hero-title,
    .main-heading,
    .suite-title,
    .solutions-title,
    .integration-title,
    .cta-title {
        font-size: 32px !important;
    }

    .nav {
        gap: 16px;
    }

    .nav-link {
        font-size: 14px;
    }

    .btn-get-started {
        padding: 8px 16px;
        font-size: 14px;
    }

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

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

    .contact-form-wrapper {
        padding: 40px 24px;
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    /* Chat bubbles below phone on small screens */
    .hero-container-new {
        height: auto;
        min-height: 500px;
        padding-bottom: 40px;
        overflow: visible;
    }

    .business-scene-new {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        height: auto;
        min-height: 500px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        overflow: visible;
    }

    .person-laptop-new {
        position: relative;
        margin-bottom: 30px;
        flex-shrink: 0;
    }

    .chat-bubble-new {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 8px auto;
        opacity: 1;
        transform: none;
        animation: none;
        display: block;
        max-width: 200px;
    }

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

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

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

    .stat-card {
        padding: 28px 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-card-primary .stat-number,
    .stat-card-featured .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }

    .stat-description {
        font-size: 14px;
    }
}
/* Tech Stack Section */
.tech-stack-section {
    background: #212529;
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.tech-stack-section .section-title {
    color: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.tech-category {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(18, 18, 18, 0.9) 100%);
    border-radius: 16px;
    padding: 10px;
    border: 1px solid rgba(43, 168, 138, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-category:hover {
    border-color: rgba(43, 168, 138, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(43, 168, 138, 0.15);
}

.tech-category:hover::before {
    opacity: 1;
}

.tech-category-title {
    font-size: 14px !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #ffffff 0%, #2BA88A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px !important;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(43, 168, 138, 0.3) 0%, transparent 100%);
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tech-item {
    background: rgba(43, 168, 138, 0.05);
    padding: 10px 16px 10px 4px;
    border-radius: 10px;
    border: 1px solid rgba(43, 168, 138, 0.15);
    display: flex;
    align-items: center;
    gap: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.tech-item:hover {
    background: rgba(43, 168, 138, 0.1);
    border-color: rgba(43, 168, 138, 0.4);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(43, 168, 138, 0.2);
}

.tech-item:hover::before {
    transform: scaleY(1);
}

.tech-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: scale(1.15) rotate(5deg);
}

.tech-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(140deg) opacity(1);
    transform: scale(1.1);
}

.tech-name {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

/* Responsive Styles for Tech Stack */

/* Tablet (max-width: 968px) */
@media (max-width: 968px) {
    .tech-categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* Mobile (max-width: 640px) */
@media (max-width: 640px) {
    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tech-item {
        padding: 20px 16px;
    }

    .tech-icon {
        width: 48px;
        height: 48px;
    }

    .tech-icon img {
        width: 32px;
        height: 32px;
    }

    .tech-name {
        font-size: 12px;
    }
}

/* Complete Responsive Breakpoints */
/* Extra Small Devices (phones, 0-374px) */
@media (max-width: 374px) {
    /* Base styles for very small devices */
}

/* Small Phones (375px - 399px) */
@media (min-width: 375px) and (max-width: 399px) {
    /* Styles for small phones */
}

/* Medium Phones (400px - 575px) */
@media (min-width: 400px) and (max-width: 575px) {
    /* Styles for medium phones */
}

/* Small Tablets / Large Phones (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    /* Styles for small tablets */
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    /* Styles for tablets */
}

/* Small Desktops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    /* Styles for small desktops */
}

/* Medium Desktops (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    /* Styles for medium desktops */
}

/* Large Desktops (1400px - 1799px) */
@media (min-width: 1400px) and (max-width: 1799px) {
    /* Styles for large desktops */
}

/* Extra Large Desktops (1800px and above) */
@media (min-width: 1800px) {
    /* Styles for extra large desktops */
}



