/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #32ff7e;
}

.nav-logo i {
    font-size: 1.8rem;
}

.logo-image {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}


.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #32ff7e;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #32ff7e;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Navigation Dropdown */
.mobile-nav-dropdown {
    display: none;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    z-index: 1000;
}

.mobile-nav-dropdown .dropdown-selected {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 48px;
}

.mobile-nav-dropdown .dropdown-selected:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-nav-dropdown .dropdown-selected i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-nav-dropdown .dropdown-selected.active i {
    transform: rotate(180deg);
}

/* Mobile Navigation Menu (Full Width) */
.mobile-nav-menu {
    display: none;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav-menu.active {
    max-height: 500px;
    opacity: 1;
    overflow: visible;
}

.mobile-nav-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 60px;
}

.mobile-nav-option:last-child {
    border-bottom: none;
}

.mobile-nav-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #32ff7e;
}

.mobile-nav-option i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.mobile-nav-option span {
    font-size: 1rem;
    font-weight: 500;
}


/* Main Container */
.main-container {
    display: block;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
    width: 100%;
    padding-bottom: 40px;
}

/* Mobile scroll snap adjustments */
@media (max-width: 768px) {
    .main-container {
        scroll-snap-type: y mandatory;
        scroll-padding-top: 0;
    }
}

/* Mobile Main Container Adjustments */
@media (max-width: 768px) {
    .main-container {
        height: calc(100vh - 70px);
        padding-bottom: 60px;
    }
}

/* Sections */
.section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
    background: #0a0a0a;
    scroll-snap-align: start;
}

/* Mobile Section Adjustments */
@media (max-width: 768px) {
    .section {
        min-height: calc(100vh - 70px);
        padding: 0.5rem 1rem 1rem 1rem;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 0.5rem;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
    }
}

/* Horizontal Scroll Containers */
.horizontal-scroll-container {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: center;
    box-sizing: border-box;
}

/* Mobile Horizontal Scroll Containers */
@media (max-width: 768px) {
    .horizontal-scroll-container {
        height: calc(100vh - 70px);
        align-items: flex-start;
        padding-top: 1rem;
    }
}

.horizontal-scroll-container::-webkit-scrollbar {
    display: none;
}

.horizontal-content {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    flex-shrink: 0;
    box-sizing: border-box;
    overflow: hidden;
    background: #0a0a0a;
}

/* Mobile Horizontal Content */
@media (max-width: 768px) {
    .horizontal-content {
        height: calc(100vh - 70px);
        align-items: flex-start;
        justify-content: flex-start;
        padding: 1rem 1rem 1rem 1rem;
        overflow-y: auto;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        gap: 0;
        scroll-padding-top: 1rem;
    }
    
    /* First horizontal content (hero) needs more top padding */
    .section:first-child .horizontal-content:first-child {
        padding-top: 4rem;
    }
    
    /* Hero text container needs proper spacing */
    .hero-text {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Second horizontal content (Why Choose NeuralGrid) needs more top padding */
    .section:first-child .horizontal-content:nth-child(2) {
        padding-top: 3rem;
    }
    
    /* Signup form section needs more top padding */
    .section:nth-child(3) .horizontal-content:first-child {
        padding-top: 4rem;
    }
    
    /* Ensure NeuralGrid title is visible */
    .hero-title {
        margin-top: 0 !important;
        padding-top: 0 !important;
        position: relative !important;
        z-index: 100 !important;
    }
}

.section:nth-child(2) {
    background: #0a0a0a;
}

.section:nth-child(3) {
    background: #0a0a0a;
}

.section:nth-child(4) {
    background: #0a0a0a;
}

.section:nth-child(5) {
    background: #0a0a0a;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Hero Section */
.hero-content {
    display: grid;
    grid-template-columns: auto auto;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(45deg, #32ff7e, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #32ff7e, #00d4ff);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(50, 255, 126, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #32ff7e;
    border: 2px solid #32ff7e;
}

.btn-secondary:hover {
    background: #32ff7e;
    color: #ffffff;
    transform: translateY(-2px);
}

/* AI Brain Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-brain {
    position: relative;
    width: 300px;
    height: 300px;
}

.neural-network {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #32ff7e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.node:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.node:nth-child(2) { top: 40%; left: 60%; animation-delay: 0.3s; }
.node:nth-child(3) { top: 60%; left: 20%; animation-delay: 0.6s; }
.node:nth-child(4) { top: 80%; left: 50%; animation-delay: 0.9s; }
.node:nth-child(5) { top: 30%; left: 80%; animation-delay: 1.2s; }
.node:nth-child(6) { top: 70%; left: 70%; animation-delay: 1.5s; }

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #32ff7e, transparent);
    animation: dataFlow 3s ease-in-out infinite;
}

.connection:nth-child(7) {
    top: 30%;
    left: 30%;
    width: 30%;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.connection:nth-child(8) {
    top: 50%;
    left: 20%;
    width: 40%;
    transform: rotate(-20deg);
    animation-delay: 1s;
}

.connection:nth-child(9) {
    top: 70%;
    left: 50%;
    width: 20%;
    transform: rotate(45deg);
    animation-delay: 2s;
}

.connection:nth-child(10) {
    top: 40%;
    left: 60%;
    width: 25%;
    transform: rotate(-30deg);
    animation-delay: 1.5s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes dataFlow {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0); }
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid #32ff7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 100;
}

/* General nav arrow hover - removed to avoid conflicts */

/* Vertical Navigation Arrows */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid #32ff7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.scroll-arrow:hover {
    background: #32ff7e !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

.scroll-arrow:active {
    transform: scale(0.95) !important;
}

/* Horizontal Navigation Arrows */
.horizontal-nav-left {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 200;
    pointer-events: auto;
}

.horizontal-nav-right {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 200;
    pointer-events: auto;
}

.section:hover .horizontal-nav-left,
.section:hover .horizontal-nav-right {
    opacity: 1;
}

.horizontal-nav-left:hover,
.horizontal-nav-right:hover {
    opacity: 1;
    background: #32ff7e;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.horizontal-nav-left:active,
.horizontal-nav-right:active {
    transform: translateY(-50%) scale(0.95);
}

/* Arrow Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hide arrows when not needed */
.section:first-child .scroll-indicator {
    display: block;
}

.section:last-child .scroll-indicator {
    display: none;
}

/* Hide scroll indicator on contact section (5th section) */
#contact .scroll-indicator {
    display: none;
}

/* Return to Top Button */
.return-to-top {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.return-to-top-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    background: linear-gradient(45deg, #32ff7e, #00d4ff);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 255, 126, 0.3);
}

.return-to-top-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50, 255, 126, 0.4);
    background: linear-gradient(45deg, #00d4ff, #32ff7e);
}

.return-to-top-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(50, 255, 126, 0.3);
}

/* Horizontal arrow visibility - removed problematic rules */

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #32ff7e, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.25rem;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* How it Works Layout */
.how-it-works-layout {
    display: grid !important;
    grid-template-columns: 30% 70% !important;
    gap: 1rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    min-height: auto;
}

.main-header {
    text-align: center;
    margin: 0.25rem 0 0.5rem 0;
    width: 100%;
    grid-column: 1 / -1;
    padding-top: 0;
    position: relative;
    top: 0;
}

.content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem 1rem 1rem 10%;
    width: 100%;
    box-sizing: border-box;
}

.content-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.content-right-header {
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 212, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Steps List */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 60px;
    width: 100%;
}

.step-item:hover {
    transform: translateX(5px);
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #32ff7e, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.step-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    flex: 1;
    padding-top: 0.1rem;
}

/* Image Container */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-height: 80vh;
}

.homepage-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.homepage-image:hover {
    transform: scale(1.02);
}

/* Image Placeholder */
.image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-height: 80vh;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: scale(1.01);
}

.placeholder-content {
    text-align: center;
    color: #b0b0b0;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.placeholder-content p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Floating Cards */
.floating-cards {
    position: relative;
    height: 400px;
}

.card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.card:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card:nth-child(2) {
    top: 50%;
    right: 0;
    animation-delay: 2s;
}

.card:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(0, 212, 255, 0.1);
}

.card i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services-content {
    max-width: 100%;
    padding: 0 0.25rem;
    box-sizing: border-box;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 100%;
    box-sizing: border-box;
    width: 100%;
    padding: 0 1rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-shrink: 1;
    margin: 0 auto;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00d4ff;
}

/* Technology Section */
.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    max-width: 100%;
    box-sizing: border-box;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

.tech-item i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.tech-item span {
    display: block;
    font-weight: 500;
}

/* Data Flow Visual */
.tech-visual {
    position: relative;
    height: 200px;
}

.data-flow {
    position: relative;
    width: 100%;
    height: 100%;
}

.data-point {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #32ff7e;
    border-radius: 50%;
    animation: dataPulse 2s ease-in-out infinite;
}

.data-point:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.data-point:nth-child(2) { top: 40%; left: 30%; animation-delay: 0.5s; }
.data-point:nth-child(3) { top: 60%; left: 50%; animation-delay: 1s; }
.data-point:nth-child(4) { top: 80%; left: 70%; animation-delay: 1.5s; }

.data-stream {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, transparent, #00d4ff);
    animation: streamFlow 3s ease-in-out infinite;
}

@keyframes dataPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

@keyframes streamFlow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 212, 255, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
    max-width: 100%;
    box-sizing: border-box;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
}

.faq-item p {
    margin: 0;
    line-height: 1.5;
    color: #ffffff;
}

.faq-item strong {
    color: #00d4ff;
    font-weight: 600;
}

/* Pricing Section */
.pricing-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

@media (max-width: 768px) {
    .pricing-content {
        padding: 1rem;
    }
    
    .pricing-section .section-title,
    .pricing-section .section-description {
        position: relative;
        z-index: 10;
        margin-bottom: 1rem;
    }
    
    .section-toggle {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .toggle-btn {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .toggle-btn i {
        font-size: 1rem;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.pricing-card.featured {
    border-color: #32ff7e;
    background: rgba(50, 255, 126, 0.05);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(50, 255, 126, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #32ff7e, #00ff88);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: #00d4ff;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 500;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1rem;
}

.plan-features li i {
    color: #32ff7e;
    font-size: 1.1rem;
    min-width: 20px;
}

.plan-button {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.free-button {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: #ffffff;
}

.free-button:hover {
    background: linear-gradient(135deg, #5a6268, #3d4043);
    transform: translateY(-2px);
}

.pro-button {
    background: linear-gradient(135deg, #32ff7e, #00ff88);
    color: #000;
}

.pro-button:hover {
    background: linear-gradient(135deg, #28e06b, #00e077);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(50, 255, 126, 0.3);
}

.enterprise-button {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #ffffff;
}

.enterprise-button:hover {
    background: linear-gradient(135deg, #00b8e6, #0088bb);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Top-up Section */
.topup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.topup-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.topup-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.topup-card.popular {
    border-color: #32ff7e;
    background: rgba(50, 255, 126, 0.05);
    transform: scale(1.05);
}

.topup-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(50, 255, 126, 0.3);
}

.topup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.topup-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.topup-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.topup-price .currency {
    font-size: 1.2rem;
    color: #00d4ff;
    font-weight: 600;
}

.topup-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.savings {
    background: linear-gradient(135deg, #32ff7e, #00ff88);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.topup-description {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.topup-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.topup-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topup-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-size: 0.95rem;
}

.topup-features li i {
    color: #32ff7e;
    font-size: 1rem;
    min-width: 20px;
}

.topup-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.topup-button:hover {
    background: linear-gradient(135deg, #00b8e6, #0088bb);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-content {
        padding: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .pricing-content .section-title {
        font-size: 2.5rem !important;
        margin: 0 0 1.5rem 0 !important;
        padding: 1rem 0 !important;
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .pricing-grid,
    .topup-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .pricing-card,
    .topup-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .pricing-card.featured,
    .topup-card.popular {
        transform: none;
        border-color: #32ff7e;
        background: rgba(50, 255, 126, 0.05);
    }
    
    .pricing-card.featured:hover,
    .topup-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .plan-price .amount,
    .topup-price .amount {
        font-size: 2.5rem;
    }
    
    .plan-name,
    .topup-name {
        font-size: 1.5rem;
    }
    
    .plan-features li,
    .topup-features li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .plan-button,
    .topup-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .popular-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* Signup Section */
.signup-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.signup-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.signup-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    text-decoration: none;
}

.signup-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.signup-btn i {
    font-size: 2rem;
}

.signup-benefits {
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
}

.benefit-item i {
    color: #00d4ff;
    font-size: 1.5rem;
    min-width: 30px;
}

.benefit-item p {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
}

.signup-form-container {
    width: 60%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin: 1rem 0 0.5rem 0;
    padding: 0.5rem 0;
    color: #00d4ff;
}

    .signup-form {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        position: relative;
        overflow: visible;
    }

.form-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: left;
    min-width: 180px;
    flex-shrink: 0;
    line-height: 1.3;
    padding-top: 0.75rem;
    box-sizing: border-box;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Custom Dropdown Styling */
.custom-dropdown {
    position: relative !important;
    width: 100% !important;
    flex: 1 !important;
    z-index: 10000 !important;
    isolation: isolate !important;
}

.dropdown-selected {
    padding: 1rem !important;
    font-size: 1rem !important;
    min-height: 48px !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 10001 !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    pointer-events: auto !important;
}

.dropdown-selected:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-selected.active {
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.dropdown-selected i {
    transition: transform 0.3s ease;
    color: #00d4ff;
}

.dropdown-selected.active i {
    transform: rotate(180deg);
}

/* FINAL DROPDOWN STYLES - WORKS ON ALL SCREEN SIZES */
.dropdown-options {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10001 !important;
    background: #000000 !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-top: none !important;
    border-radius: 0 0 8px 8px !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    pointer-events: none !important;
    isolation: isolate !important;
}

.dropdown-options.active {
    max-height: 200px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: #000000 !important;
}

.dropdown-option {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 1rem !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.dropdown-option:last-child {
    border-bottom: none !important;
}

.dropdown-option:hover,
.dropdown-option:active,
.dropdown-option:focus {
    background: rgba(0, 212, 255, 0.1) !important;
    color: #00d4ff !important;
}

.dropdown-option.selected {
    background: rgba(0, 212, 255, 0.2) !important;
    color: #00d4ff !important;
}

.form-group select option {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 0.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
}

.email-error {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: none;
}

.submit-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #32ff7e, #00ff88);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(50, 255, 126, 0.3);
}

.submit-btn i {
    font-size: 1.2rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #00d4ff;
    width: 30px;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #b0b0b0;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
}

/* Hero Features */
.hero-features {
    text-align: center;
    max-width: 800px;
}

.hero-features h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #00d4ff, #7209b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 100%;
    box-sizing: border-box;
}

/* W-shape layout for 5 feature cards */
.hero-features .features-grid.w-shape-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-features .features-grid.w-shape-layout .feature-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
}

.hero-features .features-grid.w-shape-layout .feature-card:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1;
}

.hero-features .features-grid.w-shape-layout .feature-card:nth-child(3) {
    grid-column: 5 / 7;
    grid-row: 1;
}

.hero-features .features-grid.w-shape-layout .feature-card:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
}

.hero-features .features-grid.w-shape-layout .feature-card:nth-child(5) {
    grid-column: 4 / 6;
    grid-row: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

.feature-card i {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Team Showcase */
.team-showcase {
    text-align: center;
    max-width: 800px;
}

.team-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #00d4ff, #7209b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.member-avatar i {
    font-size: 2rem;
    color: #ffffff;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #b0b0b0;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0;
    z-index: 1000;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-section p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00d4ff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #32ff7e;
    border-color: #00d4ff;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.8rem;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #32ff7e;
    background: rgba(50, 255, 126, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #32ff7e, #00d4ff);
    width: 0%;
    transition: width 0.3s ease;
}


@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-nav-dropdown {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .mobile-nav-menu {
        display: block;
        position: fixed;
        top: 72px; /* Position below navbar */
        left: 0;
        right: 0;
        z-index: 999;
    }
    
    
    
    
    .nav-logo {
        left: 1rem;
        z-index: 1003;
    }
    
    .nav-logo .logo-image {
        height: 50px;
    }
    
    .nav-close {
        display: none;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid #ff6b6b;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1004;
        color: #ff6b6b;
        font-size: 1.2rem;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-close:hover {
        background: #ff6b6b;
        color: #ffffff;
        transform: translateY(-50%) scale(1.1);
    }
    
    .nav-container {
        padding: 0 1rem;
        position: relative;
    }
    
    .nav-link {
        font-size: 1.4rem;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        width: 100%;
        color: #ffffff;
        font-weight: 500;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #32ff7e;
        background: rgba(50, 255, 126, 0.1);
        border-radius: 8px;
    }
    
    /* Hero Section Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        justify-content: flex-start;
        padding: 0 1rem 0 1rem;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-title .gradient-text {
        font-size: 3rem !important;
        display: block !important;
        margin-bottom: 0.5rem !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        text-align: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: linear-gradient(45deg, #32ff7e, #00d4ff) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* AI Brain Visual Mobile */
    .ai-brain {
        width: 250px;
        height: 250px;
    }
    
    .node {
        width: 15px;
        height: 15px;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* How it Works Mobile */
    .how-it-works-layout {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 1rem;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    
    .main-header {
        margin: 1rem 0 1.5rem 0 !important;
        text-align: center;
        width: 100%;
        order: 1;
        padding-top: 1rem !important;
    }
    
    .main-header .section-title {
        font-size: 2.5rem !important;
        margin: 1rem 0 1.5rem 0 !important;
        padding: 1rem 0 !important;
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .content-left {
        align-items: center;
        text-align: center;
        padding: 1rem;
        order: 3;
        width: 100%;
    }
    
    .content-right {
        padding: 1rem;
        order: 2;
        width: 100%;
    }
    
    .content-right-header {
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .steps-list {
        gap: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
        min-height: auto;
    }
    
    .step-item:hover {
        transform: translateY(-5px);
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .step-text {
        font-size: 1rem;
        text-align: center;
    }
    
    /* Images Mobile */
    .homepage-image {
        width: 100%;
        height: auto;
        max-height: 50vh;
    }
    
    .image-placeholder {
        min-height: 250px;
    }
    
    .image-container {
        max-height: 50vh;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    /* Technology Mobile */
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .tech-item {
        padding: 1rem;
    }
    
    .tech-item i {
        font-size: 1.5rem;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-item i {
        font-size: 2rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    /* Hero Features Mobile */
    .hero-features {
        padding: 1rem;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-features h2 {
        font-size: 2.5rem !important;
        margin: 1rem 0 1.5rem 0 !important;
        padding: 1rem 0 !important;
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: linear-gradient(45deg, #32ff7e, #00d4ff) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        font-weight: 700 !important;
    }
    
    .hero-features .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
        max-width: 100%;
    }
    
    .hero-features .features-grid.w-shape-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .hero-features .features-grid.w-shape-layout .feature-card:nth-child(1),
    .hero-features .features-grid.w-shape-layout .feature-card:nth-child(2),
    .hero-features .features-grid.w-shape-layout .feature-card:nth-child(3),
    .hero-features .features-grid.w-shape-layout .feature-card:nth-child(4),
    .hero-features .features-grid.w-shape-layout .feature-card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .feature-card {
        padding: 1.2rem;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .feature-card i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Team Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-avatar {
        width: 60px;
        height: 60px;
    }
    
    .member-avatar i {
        font-size: 1.5rem;
    }
    
    /* FAQ Mobile */
    .faq-content {
        padding: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .faq-content .section-title {
        font-size: 2.5rem !important;
        margin: 0 0 1.5rem 0 !important;
        padding: 1rem 0 !important;
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .faq-content .section-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .faq-item {
        padding: 1rem;
        margin: 0 auto;
        max-width: 100%;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .faq-item p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: left;
    }
    
    .faq-item strong {
        color: #00d4ff;
        font-weight: 600;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
        width: 25px;
    }
    
    .contact-item h3 {
        font-size: 1rem;
    }
    
    /* Signup Form Mobile */
    .signup-content {
        padding: 1rem;
        width: 100%;
    }
    
    .signup-content .section-title {
        font-size: 2.5rem !important;
        margin: 0 0 1.5rem 0 !important;
        padding: 1rem 0 !important;
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .signup-form-container {
        width: 95%;
        padding: 1rem;
        margin: 0 auto;
        margin-top: 0 !important;
        padding-top: 0 !important;
        position: relative;
        overflow: visible;
    }
    
    .form-title {
        font-size: 2rem !important;
        margin: 2rem 0 1.5rem 0 !important;
        padding: 1rem 0 !important;
        text-align: center !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: linear-gradient(45deg, #32ff7e, #00d4ff) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        font-weight: 700 !important;
    }
    
    .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
    }
    
    .form-group label {
        min-width: auto;
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
        font-weight: 600;
        color: #00d4ff;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 8px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.05);
        color: #ffffff;
    }
    
    .form-group textarea {
        min-height: 80px;
        resize: vertical;
    }
    
    /* Mobile dropdown styles moved to global scope */
    
    .submit-btn {
        width: 100%;
        padding: 1.2rem;
        font-size: 1.1rem;
        min-height: 48px;
        margin-top: 1rem;
    }
    
    .signup-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin: 2rem 0;
    }
    
    .signup-btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 12px;
    }
    
    .signup-btn i {
        font-size: 1.5rem;
    }
    
    .signup-benefits {
        margin-top: 2rem;
    }
    
    .benefit-item {
        padding: 1rem;
        margin: 0.8rem 0;
        border-radius: 8px;
    }
    
    .benefit-item i {
        font-size: 1.2rem;
        min-width: 25px;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    /* Navigation Arrows Mobile */
    .horizontal-nav-left,
    .horizontal-nav-right {
        display: flex !important;
        width: 40px;
        height: 40px;
        opacity: 0.8;
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid #32ff7e;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 100;
    }
    
    .horizontal-nav-left:hover,
    .horizontal-nav-right:hover {
        opacity: 1;
        background: #32ff7e;
        color: #ffffff;
        transform: scale(1.1);
    }
    
    .horizontal-nav-left:active,
    .horizontal-nav-right:active {
        opacity: 0.8;
        background: rgba(0, 0, 0, 0.6);
        color: #32ff7e;
        transform: scale(0.95);
    }
    
    .horizontal-nav-left {
        left: 0.5rem;
    }
    
    .horizontal-nav-right {
        right: 0.5rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
    }
    
    /* Section Padding Mobile */
    .section {
        padding: 0 1rem;
        min-height: calc(100vh - 70px);
        padding-top: 1rem;
    }
    
    .section-content {
        padding: 1rem 0;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 2.5rem !important;
        margin: 1rem 0 1.5rem 0 !important;
        padding: 1rem 0 !important;
        text-align: center !important;
        width: 100% !important;
        position: relative !important;
        z-index: 100 !important;
        display: block !important;
        line-height: 1.2 !important;
        color: #ffffff !important;
        background: linear-gradient(45deg, #32ff7e, #00d4ff) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        font-weight: 700 !important;
    }
    
    /* Ensure all section titles are visible on mobile */
    .horizontal-content .section-title {
        margin-top: 1rem !important;
        padding-top: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Force title visibility */
    .main-header .section-title,
    .signup-content .section-title,
    .pricing-content .section-title,
    .faq-content .section-title {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }
    
    .section-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    /* Floating Cards Mobile */
    .floating-cards {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .card {
        position: relative;
        margin: 0;
        animation: none;
    }
    
    .card:hover {
        transform: translateY(-5px);
    }
    
    /* Workflow Animation Mobile */
    .workflow-container {
        height: 250px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .developer, .user {
        width: 30px;
        height: 30px;
    }
    
    .developer i, .user i {
        font-size: 1rem;
    }
    
    .ai-model {
        width: 40px;
        height: 40px;
    }
    
    .ai-model i {
        font-size: 1.2rem;
    }
    
    .connection-arrow {
        font-size: 0.9rem;
    }
    
    /* Hide workflow animation on very small screens */
    @media (max-width: 480px) {
        .workflow-container {
            height: 200px;
            padding: 15px;
        }
        
        .developer, .user {
            width: 25px;
            height: 25px;
        }
        
        .ai-model {
            width: 35px;
            height: 35px;
        }
    }
    
    /* Progress Bar Mobile */
    .progress-bar {
        height: 2px;
    }
}

/* iPhone 14 Pro Max and similar tall screens (430x932) */
@media (max-width: 430px) and (min-height: 900px) {
    .main-container {
        height: calc(100vh - 50px);
        padding-bottom: 40px;
    }
    
    .section {
        min-height: calc(100vh - 50px);
        padding: 0.8rem;
        padding-top: 1rem;
    }
    
    .horizontal-scroll-container {
        height: calc(100vh - 50px);
        padding-top: 0.8rem;
    }
    
    .horizontal-content {
        height: calc(100vh - 50px);
        padding: 0.8rem;
    }
    
    .hero-content {
        padding: 0 0.8rem;
        padding-top: 1rem;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-title .gradient-text {
        font-size: 2.2rem !important;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .workflow-container {
        height: 200px;
        padding: 15px;
        margin-top: 0.8rem;
    }
    
    .developer, .user {
        width: 28px;
        height: 28px;
    }
    
    .ai-model {
        width: 35px;
        height: 35px;
    }
    
    .connection-arrow {
        font-size: 0.9rem;
    }
}

/* Exact 430x932 viewport optimization */
@media (width: 430px) and (height: 932px) {
    .main-container {
        height: calc(100vh - 50px);
        padding-bottom: 40px;
    }
    
    .section {
        min-height: calc(100vh - 50px);
        padding: 0.8rem;
        padding-top: 1rem;
    }
    
    .horizontal-scroll-container {
        height: calc(100vh - 50px);
        padding-top: 0.8rem;
    }
    
    .horizontal-content {
        height: calc(100vh - 50px);
        padding: 0.8rem;
    }
    
    .hero-content {
        padding: 0 0.8rem;
        padding-top: 1rem;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-title .gradient-text {
        font-size: 2.2rem !important;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .workflow-container {
        height: 200px;
        padding: 15px;
        margin-top: 0.8rem;
    }
    
    .developer, .user {
        width: 28px;
        height: 28px;
    }
    
    .ai-model {
        width: 35px;
        height: 35px;
    }
    
    .connection-arrow {
        font-size: 0.9rem;
    }
}

/* Specific Mobile Viewport Optimizations */
@media (max-width: 430px) {
    
    .section {
        min-height: calc(100vh - 50px);
        padding: 0.8rem;
        padding-top: 1rem;
    }
    
    .horizontal-scroll-container {
        height: calc(100vh - 50px);
        padding-top: 0.8rem;
    }
    
    .horizontal-content {
        height: calc(100vh - 50px);
        padding: 0.8rem;
    }
    
    .hero-content {
        padding: 0 0.8rem;
        padding-top: 1rem;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-title .gradient-text {
        font-size: 2.2rem !important;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .workflow-container {
        height: 200px;
        padding: 15px;
        margin-top: 0.8rem;
    }
    
    .developer, .user {
        width: 28px;
        height: 28px;
    }
    
    .ai-model {
        width: 35px;
        height: 35px;
    }
    
    .connection-arrow {
        font-size: 0.9rem;
    }
}

/* Specific Mobile Viewport Optimizations */
@media (max-width: 430px) {
    .main-container {
        height: calc(100vh - 60px);
        padding-bottom: 50px;
    }
    
    .section {
        min-height: calc(100vh - 60px);
        padding: 0.5rem;
        padding-top: 0.5rem;
    }
    
    .horizontal-scroll-container {
        height: calc(100vh - 60px);
        padding-top: 0.5rem;
    }
    
    .horizontal-content {
        height: calc(100vh - 60px);
        padding: 0.5rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
        padding-top: 0.5rem;
        gap: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-title .gradient-text {
        font-size: 2rem !important;
        margin-bottom: 0.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        line-height: 1.5;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-buttons {
        gap: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
        min-height: 44px;
        width: 100%;
        max-width: 280px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .workflow-container {
        height: 180px;
        padding: 10px;
        margin-top: 0.5rem;
    }
    
    .developer, .user {
        width: 25px;
        height: 25px;
    }
    
    .ai-model {
        width: 30px;
        height: 30px;
    }
    
    .connection-arrow {
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-card i {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .signup-form-container {
        width: 98%;
        padding: 0.8rem;
    }
    
    .form-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 0.8rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    .pricing-card,
    .topup-card {
        padding: 1.2rem;
    }
    
    .plan-price .amount,
    .topup-price .amount {
        font-size: 2.2rem;
    }
    
    .faq-item {
        padding: 0.8rem;
    }
    
    .faq-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .subsection-title {
        font-size: 1.3rem;
    }
    
    .tech-stack {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-logo {
        left: 0.5rem;
    }
    
    
    .section {
        padding: 0 0.5rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .ai-brain {
        width: 200px;
        height: 200px;
    }
    
    .node {
        width: 12px;
        height: 12px;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-card i {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .signup-form-container {
        width: 98%;
        padding: 0.5rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 0.9rem;
        font-size: 1rem;
    }
    
    .signup-btn {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .signup-btn i {
        font-size: 1.3rem;
    }
    
    .footer-content {
        padding: 0.5rem;
    }
    
    .footer-section h3 {
        font-size: 0.9rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
    }
    
    .social-links a {
        width: 30px;
        height: 30px;
    }
    
    .workflow-container {
        height: 250px;
    }
    
    .developer, .user {
        width: 30px;
        height: 30px;
    }
    
    .ai-model {
        width: 40px;
        height: 40px;
    }
    
    .connection-arrow {
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .section {
        min-height: 100vh;
        padding: 1rem;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .ai-brain {
        width: 200px;
        height: 200px;
    }
    
    .how-it-works-layout {
        gap: 1.5rem;
    }
    
    .step-item {
        padding: 0.8rem;
        min-height: auto;
    }
    
    .services-grid {
        gap: 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .nav-link:hover,
    .service-card:hover,
    .feature-card:hover,
    .team-member:hover,
    .contact-item:hover,
    .step-item:hover,
    .stat-item:hover,
    .tech-item:hover,
    .faq-item:hover,
    .pricing-card:hover,
    .topup-card:hover,
    .signup-btn:hover {
        transform: none;
    }
    
    .btn:active,
    .nav-link:active,
    .service-card:active,
    .feature-card:active,
    .team-member:active,
    .contact-item:active,
    .step-item:active,
    .stat-item:active,
    .tech-item:active,
    .faq-item:active,
    .pricing-card:active,
    .topup-card:active,
    .signup-btn:active {
        transform: scale(0.98);
    }
    
    .nav-arrow,
    .scroll-arrow {
        min-width: 48px;
        min-height: 48px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
    }
    
    .submit-btn,
    .plan-button,
    .topup-button {
        min-height: 48px;
    }
    
}

/* Mobile-specific touch improvements */
@media (max-width: 768px) {
    /* Ensure all interactive elements are touch-friendly */
    .btn,
    .nav-link,
    .signup-btn,
    .submit-btn,
    .plan-button,
    .topup-button {
        min-height: 48px;
        min-width: 48px;
    }
    
    
    /* Better spacing for touch interactions */
    .hero-buttons {
        gap: 1.5rem;
    }
    
    .signup-buttons {
        gap: 1.5rem;
    }
    
    /* Prevent zoom on input focus */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
    
    /* Improve scroll behavior */
    .main-container {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .horizontal-scroll-container {
        -webkit-overflow-scrolling: touch;
    }
}

/* AI Workflow Animation */
.workflow-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.developers {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.developer {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.developer:nth-child(1) { animation-delay: 0s; }
.developer:nth-child(2) { animation-delay: 0.5s; }
.developer:nth-child(3) { animation-delay: 1s; }

.ai-models {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 15px;
}

.ai-model {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #32ff7e, #00ff88);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glow 3s ease-in-out infinite;
    position: relative;
}

.ai-model:nth-child(1) { animation-delay: 0s; }
.ai-model:nth-child(2) { animation-delay: 1s; }
.ai-model:nth-child(3) { animation-delay: 2s; }

.users {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.user {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #7209b7, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.user:nth-child(1) { animation-delay: 0.3s; }
.user:nth-child(2) { animation-delay: 0.8s; }
.user:nth-child(3) { animation-delay: 1.3s; }

/* Connection Arrows */
.connection-arrow {
    position: absolute;
    color: #32ff7e;
    font-size: 1.5rem;
    animation: arrowFlow 3s ease-in-out infinite;
}

.arrow-dev-to-ai {
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.arrow-ai-to-user {
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.arrow-dev1-to-ai1 {
    top: 35%;
    left: 42%;
    transform: rotate(10deg);
    animation-delay: 0.5s;
}

.arrow-dev2-to-ai2 {
    top: 35%;
    left: 50%;
    animation-delay: 1s;
}

.arrow-dev3-to-ai3 {
    top: 35%;
    left: 58%;
    transform: rotate(-10deg);
    animation-delay: 1.2s;
}

.arrow-ai1-to-user1 {
    bottom: 35%;
    left: 42%;
    transform: rotate(-10deg);
    animation-delay: 2s;
}

.arrow-ai2-to-user2 {
    bottom: 35%;
    left: 50%;
    animation-delay: 2.2s;
}

.arrow-ai3-to-user3 {
    bottom: 35%;
    left: 58%;
    transform: rotate(10deg);
    animation-delay: 2.5s;
}

/* Workflow Animations */
@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(50, 255, 126, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(50, 255, 126, 0.8);
        transform: scale(1.05);
    }
}

@keyframes arrowFlow {
    0% { 
        opacity: 0; 
        transform: translateY(-10px);
    }
    50% { 
        opacity: 1; 
        transform: translateY(0);
    }
    100% { 
        opacity: 0; 
        transform: translateY(10px);
    }
}

/* Workflow Animation Mobile */
@media (max-width: 768px) {
    .developer, .user {
        width: 40px;
        height: 40px;
    }
    
    .ai-model {
        width: 50px;
        height: 50px;
    }
    
    .connection-arrow {
        font-size: 1.2rem;
    }
}
