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

body {
    font-family: 'Cairo', 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

/* RTL Support for Mobile Language Switcher */
[dir="rtl"] .mobile-lang-menu {
    left: 0;
    right: 0;
}

[dir="rtl"] .mobile-lang-option {
    text-align: right;
}

/* Particle Background */
.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Floating Nodes */
.floating-nodes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-node {
    position: absolute;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    padding: 16px;
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-node:hover {
    border-color: #00FF44;
    transform: scale(1.1);
}

.floating-node i {
    color: #00FF88;
    font-size: 24px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 24px;
}

.whatsapp-message {
    position: absolute;
    bottom: 80px;
    right: 0;
    max-width: 300px;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

[dir="rtl"] .whatsapp-message {
    right: auto;
    left: 0;
}

.whatsapp-message.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.whatsapp-message::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

[dir="rtl"] .whatsapp-message::after {
    right: auto;
    left: 24px;
}

.whatsapp-message p {
    color: #333;
    font-size: 14px;
    margin: 0;
    padding-right: 24px;
}

[dir="rtl"] .whatsapp-message p {
    padding-right: 0;
    padding-left: 24px;
}

.close-message {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
}

[dir="rtl"] .close-message {
    right: auto;
    left: 8px;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: scale(1.1);
}

.pulse-ring,
.pulse-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pulse-ring-2 {
    animation-delay: 1s;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

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

.logo-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00FF88, #00FF44);
    padding: 4px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.logo-icon {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    padding: 8px;
    border-radius: 8px;
}

.logo-icon i {
    color: black;
    font-size: 32px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #00FF88, #00FF44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

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

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00FF88;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00FF88, #00FF44);
    transition: width 0.3s ease;
}

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

.language-switcher {
    position: relative;
}

.lang-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(128, 128, 128, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-button:hover {
    border-color: #00FF44;
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

[dir="rtl"] .lang-menu {
    right: auto;
    left: 0;
}

.lang-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-option:hover {
    background: rgba(0, 255, 136, 0.1);
    color: #00FF88;
}

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

.cta-button {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    color: black;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #00FF88;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 32px;
}

.mobile-nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #00FF88;
}

.mobile-cta-button {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    color: black;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}

/* Mobile Language Switcher */
.mobile-language-switcher {
    position: relative;
    width: 100%;
    max-width: 200px;
    margin: 20px 0;
}

.mobile-lang-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.mobile-lang-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
}

.mobile-lang-button i:first-child {
    font-size: 18px;
}

.mobile-lang-button .lang-text {
    flex: 1;
    text-align: center;
    font-weight: 500;
}

.mobile-lang-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-top: 8px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: none;
    border: none;
    padding: 12px;
    color: #ccc;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
}

.mobile-lang-option:hover {
    background: rgba(0, 255, 136, 0.1);
    color: #00FF88;
}

.mobile-lang-option span:first-child {
    font-size: 20px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    z-index: 10;
}

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

/* AI Brain */
.ai-brain {
    margin-bottom: 56px;
    position: relative;
}

.brain-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.brain-outer-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 255, 68, 0.3));
    animation: spin 10s linear infinite;
    filter: blur(2px);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.2);
}

.brain-middle-ring {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 3px solid rgba(0, 255, 136, 0.4);
    animation: pulse 3s infinite;
    box-shadow: inset 0 0 30px rgba(0, 255, 136, 0.1);
}

.brain-inner {
    position: absolute;
    inset: 40px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid rgba(0, 255, 68, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3), inset 0 0 30px rgba(0, 255, 136, 0.1);
}

.brain-inner i {
    color: #00FF88;
    font-size: 90px;
    animation: pulse 2.5s infinite;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.neural-node {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

.node-1 {
    top: 32px;
    left: 32px;
    background: #00FF44;
    animation-delay: 0s;
}

.node-2 {
    top: 64px;
    right: 48px;
    background: #00FF88;
    animation-delay: 0.5s;
}

.node-3 {
    bottom: 48px;
    left: 64px;
    background: #00FF44;
    animation-delay: 1s;
}

.node-4 {
    bottom: 32px;
    right: 32px;
    background: #00FF88;
    animation-delay: 1.5s;
}

.energy-bolt {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.bolt-top {
    top: -16px;
}

.bolt-bottom {
    bottom: -16px;
}

.energy-bolt i {
    color: #00FF44;
    font-size: 24px;
    animation: pulse 1s infinite;
}

.data-streams {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    top: 20%;
    width: 4px;
    height: 64px;
    background: linear-gradient(to top, transparent, #00FF88, transparent);
    animation: dataStream 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #00FF88, #00FF44, #00FF88);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 4s ease infinite;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: #e0e0e0;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 64px;
}

.whatsapp-cta.main-cta {
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta.main-cta:hover {
    background: linear-gradient(135deg, #20BA5A, #1DA851);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta.main-cta i {
    font-size: 24px;
    animation: pulse 2s infinite;
}

.primary-button {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    color: black;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.3);
}

.secondary-button {
    background: transparent;
    color: #00FF88;
    border: 2px solid #00FF88;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #00FF88;
    color: black;
    transform: scale(1.05);
}

.whatsapp-cta {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-cta:hover {
    background: #20BA5A;
    transform: scale(1.05);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.stat {
    text-align: center;
    padding: 24px;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 16px 32px rgba(0, 255, 136, 0.1);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #00FF88, #00FF44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.stat p {
    color: #bbb;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #00FF88, #00FF44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 20px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Automation Section */
.why-automation {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.5), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 10;
}

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

.reason-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.5s ease;
}

.reason-card:hover {
    border-color: #00FF44;
    transform: translateY(-8px);
    box-shadow: 0 16px 64px rgba(0, 255, 136, 0.2);
}

.reason-icon {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1);
}

.reason-icon i {
    color: black;
    font-size: 32px;
}

.reason-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.reason-card p {
    color: #999;
    line-height: 1.6;
}

.reason-card:hover p {
    color: #ccc;
}

.additional-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.stat-icon {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon i {
    color: black;
    font-size: 24px;
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: #00FF88;
    margin-bottom: 8px;
}

.stat-card p {
    color: #999;
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

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

.service-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00FF88, #00FF44);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    border-color: #00FF44;
    transform: translateY(-8px);
    box-shadow: 0 16px 64px rgba(0, 255, 136, 0.2);
}

.service-icon {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    color: black;
    font-size: 32px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.service-card p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-card:hover p {
    color: #ccc;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00FF88;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    color: #00FF44;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.5), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 10;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
}

.step {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
}

.step:hover {
    border-color: #00FF44;
    transform: translateY(-8px);
    box-shadow: 0 16px 64px rgba(0, 255, 136, 0.2);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00FF88, #00FF44);
    color: black;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
}

.step-icon i {
    color: black;
    font-size: 32px;
}

.step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.step p {
    color: #999;
    line-height: 1.6;
}

.step:hover p {
    color: #ccc;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #00FF88, #00FF44);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.step:last-child .step-arrow {
    display: none;
}

.step-arrow i {
    color: black;
    font-size: 16px;
}

.cta-container {
    text-align: center;
}

/* Smart Cameras Section */
.smart-cameras {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 10;
}

.cameras-content {
    margin-bottom: 64px;
}

.cameras-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.feature-category {
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.5s ease;
}

.feature-category:hover {
    border-color: #00FF44;
    transform: translateY(-8px);
    box-shadow: 0 16px 64px rgba(0, 255, 136, 0.2);
}

.category-icon {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.feature-category:hover .category-icon {
    transform: scale(1.1);
}

.category-icon i {
    color: black;
    font-size: 32px;
}

.feature-category h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #ccc;
    line-height: 1.6;
}

.feature-category:hover .feature-list li {
    color: #fff;
}

.feature-list i {
    color: #00FF88;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tech-specs {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 48px;
}

.specs-header {
    text-align: center;
    margin-bottom: 48px;
}

.specs-header h3 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #00FF88, #00FF44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.specs-header p {
    color: #999;
    font-size: 18px;
}

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

.spec-item {
    text-align: center;
    padding: 24px;
    background: rgba(15, 15, 15, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-4px);
}

.spec-icon {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.spec-icon i {
    color: black;
    font-size: 24px;
}

.spec-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.spec-item p {
    color: #999;
    font-size: 14px;
}

.ai-features {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 255, 68, 0.05));
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.ai-features h4 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-align: center;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.ai-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ai-feature:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateX(4px);
}

.ai-feature i {
    color: #00FF88;
    font-size: 20px;
    flex-shrink: 0;
}

.ai-feature span {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.cameras-cta {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 68, 0.1));
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.cameras-cta .cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cameras-cta .cta-content p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design for Smart Cameras */
@media (max-width: 768px) {
    .cameras-features {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-specs {
        padding: 32px 24px;
    }
    
    .cameras-cta {
        padding: 32px 24px;
    }
    
    .cameras-cta .cta-buttons {
        flex-direction: column;
    }
}


.features {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

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

.features-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #00FF88, #00FF44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

[dir="rtl"] .feature-item:hover {
    transform: translateX(-8px);
}

.feature-icon {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    color: black;
    font-size: 24px;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-content h3 {
    color: #00FF88;
}

.feature-content p {
    color: #999;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-content p {
    color: #ccc;
}

/* Chatbot Simulation */
.chatbot-simulation {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 24px;
    max-width: 400px;
    margin: 0 auto;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.chat-icon {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-icon i {
    color: black;
    font-size: 20px;
}

.chat-header h3 {
    color: white;
    font-weight: 600;
    flex: 1;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #00FF44;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    animation: slideIn 0.5s ease;
}

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

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar.bot {
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.message-avatar.user {
    background: rgba(0, 255, 68, 0.2);
    border: 1px solid rgba(0, 255, 68, 0.3);
}

.message-avatar i {
    font-size: 16px;
}

.message-avatar.bot i {
    color: #00FF88;
}

.message-avatar.user i {
    color: #00FF44;
}

.message-content {
    max-width: 80%;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
}

.message-content.bot {
    background: rgba(128, 128, 128, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: #00FF88;
}

.message-content.user {
    background: rgba(0, 255, 68, 0.1);
    border: 1px solid rgba(0, 255, 68, 0.2);
    color: #00FF44;
}

.typing-indicator {
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.typing-indicator.show {
    opacity: 1;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
}

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

/* Real-time Demo Section */
.realtime-demo {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.5), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 10;
}

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

.dashboard-card,
.platform-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 24px;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.card-header h3 {
    color: white;
    font-weight: 600;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00FF44;
    font-size: 14px;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #00FF44;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dashboard-stat {
    background: rgba(128, 128, 128, 0.5);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.dashboard-stat i {
    color: #00FF88;
    font-size: 24px;
    margin-bottom: 8px;
}

.dashboard-stat .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #00FF88;
    margin-bottom: 4px;
}

.dashboard-stat p {
    color: #999;
    font-size: 12px;
}

.platform-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.platform-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.platform-dot.whatsapp { background: #25D366; }
.platform-dot.telegram { background: #0088cc; }
.platform-dot.facebook { background: #1877f2; }
.platform-dot.website { background: #00FF88; }

.platform-data {
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform-data span {
    color: #999;
    font-size: 14px;
    min-width: 60px;
    text-align: right;
}

.progress-bar {
    width: 80px;
    height: 8px;
    background: rgba(128, 128, 128, 0.7);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.whatsapp-progress { background: #25D366; width: 100%; }
.telegram-progress { background: #0088cc; width: 38%; }
.facebook-progress { background: #1877f2; width: 24%; }
.website-progress { background: #00FF88; width: 10%; }

.total-users {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(128, 128, 128, 0.7);
}

.total-users span:first-child {
    color: #999;
    font-size: 14px;
}

.total-count {
    color: #00FF88;
    font-weight: 700;
}

.activity-feed {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 24px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(128, 128, 128, 0.3);
    border-radius: 8px;
    animation: slideIn 0.5s ease;
}

.activity-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

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

.activity-text {
    color: white;
    font-size: 14px;
}

.activity-time {
    color: #999;
    font-size: 12px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.billing-option {
    font-size: 14px;
    color: #999;
    transition: color 0.3s ease;
}

.billing-option.active {
    color: #00FF88;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
    background: rgba(128, 128, 128, 0.7);
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00FF88, #00FF44);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.yearly .toggle-slider {
    transform: translateX(28px);
}

.save-badge {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    color: black;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.save-badge.show {
    opacity: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 64px;
}

.pricing-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
}

.pricing-card:hover {
    border-color: #00FF44;
    transform: translateY(-8px);
    box-shadow: 0 16px 64px rgba(0, 255, 136, 0.2);
}

.pricing-card.popular {
    border-color: #00FF44;
    transform: scale(1.05);
    box-shadow: 0 16px 64px rgba(0, 255, 68, 0.2);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00FF88, #00FF44);
    color: black;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pricing-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.price {
    margin-bottom: 32px;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: #00FF88;
}

.currency {
    color: #999;
    margin-left: 8px;
}

[dir="rtl"] .currency {
    margin-left: 0;
    margin-right: 8px;
}

.period {
    color: #999;
    font-size: 14px;
    margin-top: 4px;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #ccc;
    font-size: 14px;
}

[dir="rtl"] .features-list li {
    flex-direction: row-reverse;
}

.features-list i {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    color: black;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.plan-button {
    width: 100%;
    padding: 16px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #00FF88;
    background: transparent;
    color: #00FF88;
}

.plan-button.primary {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    color: black;
    border: none;
}

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

.plan-button:not(.primary):hover {
    background: #00FF88;
    color: black;
}

.pricing-info {
    text-align: center;
}

.pricing-info p {
    color: #999;
    margin-bottom: 16px;
}

.included-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.included-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 14px;
}

.included-feature i {
    color: #00FF88;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.5), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 10;
}

.testimonials-container {
    position: relative;
    margin-bottom: 64px;
}

.main-testimonial {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.quote-left {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 128px;
    color: #00FF88;
}

.quote-right {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 128px;
    color: #00FF44;
    transform: rotate(180deg);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
}

.stars i {
    color: #00FF88;
    font-size: 20px;
}

.main-testimonial blockquote {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 32px;
    position: relative;
    z-index: 10;
}

.testimonial-author {
    position: relative;
    z-index: 10;
}

.author-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00FF88, #00FF44);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.author-info h4 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.author-info p {
    color: #00FF88;
    font-size: 16px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00FF88;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav:hover {
    border-color: #00FF44;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: 16px;
}

[dir="rtl"] .testimonial-nav.prev {
    left: auto;
    right: 16px;
}

.testimonial-nav.next {
    right: 16px;
}

[dir="rtl"] .testimonial-nav.next {
    right: auto;
    left: 16px;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(128, 128, 128, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    transform: scale(1.25);
}

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

.testimonial-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(0, 255, 68, 0.4);
    transform: translateY(-4px);
}

.card-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.card-stars i {
    color: #00FF88;
    font-size: 16px;
}

.testimonial-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00FF88, #00FF44);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.card-author h5 {
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.card-author p {
    color: #00FF88;
    font-size: 12px;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.cta-content {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    margin-bottom: 32px;
}

.cta-icon i {
    color: #00FF88;
    font-size: 64px;
    animation: pulse 2s infinite;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #00FF88, #00FF44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ccc;
    font-size: 14px;
}

.trust-item i {
    color: #00FF88;
    font-size: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(0, 0, 0, 0.9));
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    padding: 48px 0 24px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    padding: 8px;
    border-radius: 8px;
}

.footer-logo .logo-icon i {
    color: black;
    font-size: 24px;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #00FF88, #00FF44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00FF88;
}

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

.social-links a {
    background: rgba(128, 128, 128, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #00FF88, #00FF44);
    color: black;
    transform: scale(1.1);
}

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

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(2deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

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

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

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

@keyframes dataStream {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .brain-container {
        width: 220px;
        height: 220px;
    }
    
    .brain-inner i {
        font-size: 70px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .whatsapp-cta.main-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 18px 32px;
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 32px 0;
    }
    
    .stat {
        padding: 20px 16px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat p {
        font-size: 14px;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        display: none;
    }
    
    .testimonial-nav {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .primary-button,
    .cta-buttons .secondary-button,
    .cta-buttons .whatsapp-cta {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .brain-container {
        width: 180px;
        height: 180px;
    }
    
    .brain-inner i {
        font-size: 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 0;
    }
    
    .stat {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .whatsapp-cta.main-cta {
        padding: 16px 28px;
        font-size: 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .main-testimonial {
        padding: 24px;
    }
    
    .cta-content {
        padding: 24px;
    }
    
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
    }
    
    [dir="rtl"] .whatsapp-float {
        right: auto;
        left: 16px;
    }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00FF88, #00FF44);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00FF44, #00FF88);
}

/* Focus States */
button:focus,
a:focus {
    outline: 2px solid #00FF88;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .floating-nodes,
    .particle-canvas {
        display: none;
    }
}