:root {
    --primary-color: #10a37f;
    --primary-hover: #0d8c6d;
    --primary-light: #6ee7b7;
    --primary-dark: #047857;
    --secondary-color: #2563eb;
    --accent-color: #8b5cf6;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --shadow-xxl: 0 25px 50px rgba(0,0,0,0.2);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 163, 127, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    z-index: -1;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 163, 127, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(16, 163, 127, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 163, 127, 0); }
}

@keyframes glow {
    from { box-shadow: 0 0 5px var(--accent-color); }
    to { box-shadow: 0 0 20px var(--accent-color); }
}

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

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

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

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

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

@keyframes underline {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

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

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

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-primary.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo i {
    font-size: 28px;
    animation: float 3s infinite ease-in-out;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    animation: fadeIn 0.6s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    animation: underline 0.3s ease;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    animation: slideDown 0.3s ease;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-menu .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Hero Section with AI Animation */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 163, 127, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.1;
    animation: slideInLeft 0.8s ease;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
    animation: slideInLeft 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    animation: slideInLeft 1.2s ease;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: slideInLeft 1.4s ease;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-family: 'Orbitron', sans-serif;
    animation: fadeIn 2s ease;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* AI Animation in Hero */
.hero-visual {
    animation: slideInRight 0.8s ease;
}

.ai-animation-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xxl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
}

.neuron {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 3s infinite ease-in-out;
}

.neuron-1 {
    width: 12px;
    height: 12px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.neuron-2 {
    width: 10px;
    height: 10px;
    top: 40%;
    left: 60%;
    animation-delay: 0.5s;
}

.neuron-3 {
    width: 14px;
    height: 14px;
    top: 60%;
    left: 30%;
    animation-delay: 1s;
}

.neuron-4 {
    width: 8px;
    height: 8px;
    top: 30%;
    left: 70%;
    animation-delay: 1.5s;
}

.neuron-5 {
    width: 16px;
    height: 16px;
    top: 70%;
    left: 50%;
    animation-delay: 2s;
}

.connection {
    position: absolute;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    height: 2px;
    animation: glow 2s infinite alternate;
}

.conn-1 {
    top: 22%;
    left: 22%;
    width: 20%;
    transform: rotate(30deg);
}

.conn-2 {
    top: 42%;
    left: 62%;
    width: 15%;
    transform: rotate(-20deg);
}

.conn-3 {
    top: 62%;
    left: 32%;
    width: 25%;
    transform: rotate(45deg);
}

.conn-4 {
    top: 72%;
    left: 52%;
    width: 18%;
    transform: rotate(-30deg);
}

.data-flow {
    position: absolute;
    width: 4px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    animation: dataFlow 2s linear infinite;
    left: 50%;
    top: -100px;
}

.ai-core {
    position: relative;
    z-index: 2;
}

.ai-core i {
    font-size: 120px;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.ai-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.chat-interface-preview {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: floatUp 0.8s ease;
}

.chat-header {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.chat-messages {
    padding: 16px;
    max-height: 200px;
    overflow-y: auto;
}

.message {
    margin-bottom: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 80%;
    font-size: 14px;
    animation: fadeIn 0.3s ease;
}

.ai-message {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    margin-right: auto;
}

.user-message {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    margin-left: auto;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
    animation: fadeIn 0.8s ease;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease;
}

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

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    animation: fadeIn 0.8s ease;
}

.step::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    z-index: 0;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    animation: bounce 2s infinite;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Founder Section */
.founder {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.founder-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: fadeIn 1s ease;
}

.founder-avatar {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-bg {
    position: absolute;
    width: 280px;
    height: 280px;
    background: white;
    border-radius: 50%;
}

.founder-avatar i {
    font-size: 120px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.avatar-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.founder-info h3 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.founder-title {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.founder-bio {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.founder-quote {
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.1), rgba(139, 92, 246, 0.1));
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.founder-quote i {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
}

.founder-quote p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-md);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: white;
    animation: fadeIn 0.8s ease;
}

.cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    animation: fadeIn 1.2s ease;
}

.cta-note {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.8;
    animation: fadeIn 1.4s ease;
}

.cta-note i {
    margin-right: 8px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-section a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-section button {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    text-align: left;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-section button:hover {
    color: white;
}

.footer-description {
    color: var(--text-light);
    margin: 20px 0;
    line-height: 1.6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    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, var(--primary-color), var(--accent-color));
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 14px;
}

.disclaimer {
    margin-top: 12px;
    font-size: 12px;
    opacity: 0.8;
}

.disclaimer i {
    margin-right: 6px;
    color: var(--primary-color);
}

/* Chatbot Launcher */
.chatbot-launcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: floatUp 0.5s ease;
}

.launcher-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.launcher-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Support Page Styles */
.support-hero,
.about-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero h1,
.support-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ai-orb {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 40px auto 0;
}

.orb-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-core i {
    font-size: 48px;
    color: white;
}

/* Contact Support */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.contact-method {
    text-align: center;
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.contact-method:hover::before {
    transform: translateY(0);
}

.contact-method:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.contact-method h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.contact-method p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-primary);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 163, 127, 0.1);
    background: white;
}

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

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Technology Section */
.technology {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.tech-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tech-text h4 {
    font-size: 20px;
    color: var(--text-primary);
    margin: 25px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid var(--primary-light);
}

.tech-list {
    list-style: none;
    padding-left: 0;
}

.tech-list li {
    position: relative;
    padding: 8px 0 8px 30px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.tech-list li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 16px;
}

.tech-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.1);
    overflow: hidden;
}

.ai-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    opacity: 0.6;
    animation: float 3s infinite ease-in-out;
}

.particle-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    right: 20%;
    animation-delay: 0.5s;
}

.particle-3 {
    width: 25px;
    height: 25px;
    bottom: 30%;
    left: 25%;
    animation-delay: 1s;
}

.particle-4 {
    width: 12px;
    height: 12px;
    top: 40%;
    right: 30%;
    animation-delay: 1.5s;
}

.particle-5 {
    width: 18px;
    height: 18px;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.api-integration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.api-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 150px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.api-node:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.15);
}

.api-node i {
    font-size: 32px;
    color: var(--primary-color);
    background: linear-gradient(45deg, var(--primary-light), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.api-node span {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    font-size: 14px;
}

.api-connection {
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    position: relative;
}

.api-connection:before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    width: 11px;
    height: 11px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.data-flow-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.data-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: dataFlow 2s linear infinite;
}

.data-point:nth-child(2) {
    animation-delay: 0.5s;
    left: 30%;
    top: 20%;
}

.data-point:nth-child(3) {
    animation-delay: 1s;
    left: 60%;
    top: 40%;
}

.ai-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 1px;
    background: rgba(79, 70, 229, 0.1);
    padding: 8px;
    border-radius: 10px;
    margin: 0 30px;
    animation: blink 1.5s infinite;
}

/* Partners */
.partners {
    padding: 60px 0;
    background: white;
}

.tech-stack {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow-lg);
}

.tech-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.tech-item span {
    font-weight: 500;
    color: var(--text-primary);
}

/* Our Story */
.our-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.story-text h3 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.milestones {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.milestone {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.milestone-year {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.milestone-desc {
    color: var(--text-secondary);
    font-size: 14px;
}

.glowing-card {
    position: relative;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 1px solid rgba(79, 70, 229, 0.1);
    overflow: hidden;
}

.glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(79, 70, 229, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

.glowing-card i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.glowing-card h4 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.glowing-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Mission Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(16, 163, 127, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mv-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.mv-card h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values */
.values {
    padding: 80px 0;
    background: white;
}

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

.value-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, rgba(16, 163, 127, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Quick Help */
.quick-help {
    padding: 60px 0;
    background: #f8f9ff;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.help-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: block;
    animation: fadeIn 0.8s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.1);
}

.help-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.help-card h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.help-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Search Support */
.search-support {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
    animation: fadeIn 1s ease;
}

.search-support input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px 0 0 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-support input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 163, 127, 0.1);
}

.search-support button {
    padding: 14px 25px;
    border-radius: 0 12px 12px 0;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-support button:hover {
    background: var(--primary-hover);
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.faq-category {
    padding: 12px 24px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category:hover,
.faq-category.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    animation: fadeIn 0.8s ease;
}

.faq-question {
    padding: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 18px;
    display: none;
    background: white;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

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

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 20px;
    margin: 10px 0;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Important Notice */
.important-notice {
    padding: 60px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
    border-top: 4px solid var(--warning-color);
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.notice-icon i {
    font-size: 48px;
    color: var(--warning-color);
}

.notice-text h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.notice-text p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.notice-reminder {
    font-weight: 500;
    color: var(--primary-dark);
}

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

.char-count {
    text-align: right;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
}

#charCount {
    font-weight: 600;
    color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    transform: scale(1.2);
    accent-color: var(--primary-color);
}

.checkbox-label span {
    user-select: none;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.form-actions .btn-primary,
.form-actions .btn-secondary {
    min-width: 150px;
    padding: 14px 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: var(--text-secondary);
}

.form-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

.form-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Response Time */
.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #64748b !important;
    font-size: 13px !important;
}

/* Footer Chatbot Button */
.footer-chatbot {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
}

.footer-chatbot:hover {
    background: var(--primary-color);
    color: white;
}

/* Form Success Message */
.form-success {
    background: var(--success-color);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeIn 0.5s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container,
    .story-content,
    .tech-content,
    .founder-card {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .founder-avatar {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .ai-animation-container {
        height: 300px;
    }
    
    .founder-card,
    .contact-form,
    .glowing-card,
    .mv-card,
    .value-card {
        padding: 24px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn-primary,
    .form-actions .btn-secondary {
        width: 100%;
        min-width: auto;
    }
    
    .tech-stack {
        gap: 20px;
    }
    
    .tech-item {
        padding: 15px;
    }
    
    .milestones {
        flex-direction: column;
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-subtitle,
    .section-subtitle {
        font-size: 16px;
    }
    
    .feature-card,
    .contact-method,
    .contact-form,
    .glowing-card {
        padding: 20px;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .cta p {
        font-size: 16px;
    }
    
    .launcher-btn span {
        display: none;
    }
    
    .launcher-btn {
        padding: 16px;
        border-radius: 50%;
    }
    
    .founder-avatar {
        width: 250px;
        height: 250px;
    }
    
    .founder-avatar i {
        font-size: 100px;
    }
    
    .faq-categories {
        flex-direction: column;
    }
    
    .faq-category {
        width: 100%;
        text-align: center;
    }
    
    .ai-orb {
        width: 150px;
        height: 150px;
    }
    
    .orb-core {
        width: 75px;
        height: 75px;
    }
    
    .orb-core i {
        font-size: 36px;
    }
}

/* Animations for elements */
.feature-card,
.step,
.mv-card,
.value-card,
.help-card,
.contact-method,
.tech-item,
.milestone {
    animation: fadeIn 0.8s ease;
}

/* Delayed animations for staggered effect */
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.step:nth-child(2) { animation-delay: 0.1s; }
.step:nth-child(3) { animation-delay: 0.2s; }