:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --accent-glow: rgba(99, 102, 241, 0.2);
    --accent-glow-2: rgba(236, 72, 153, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --btn-primary: linear-gradient(135deg, #6366f1, #a855f7);
    --btn-hover: linear-gradient(135deg, #4f46e5, #9333ea);
    
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
}

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

body {
    background-color: var(--bg-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .hero-badge, .btn {
    font-family: 'Outfit', sans-serif;
}

/* Background Glow Effects */
.background-glow {
    position: fixed;
    top: -20vh;
    left: -20vw;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}
.bg-glow-2 {
    top: auto;
    bottom: -20vh;
    left: auto;
    right: -20vw;
    background: radial-gradient(circle, var(--accent-glow-2) 0%, transparent 70%);
}

/* Typography */
.gradient-text {
    background: linear-gradient(135deg, #818cf8, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-center { text-align: center; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}
.brand-parent { color: var(--text-secondary); }
.slash { color: #4b5563; margin: 0 0.5rem; }
.brand-app { color: #fff; font-weight: 800; letter-spacing: -0.02em; }
.nav-btn {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    transition: all 0.3s ease;
}
.nav-btn:hover { background: var(--glass-bg); }

/* Layout & Sections */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
section {
    padding: 8rem 0;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

/* Hero Section (New Design) */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 140px;
    padding-bottom: 40px;
}
.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    background: rgba(167, 139, 250, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #c4b5fd;
    margin-bottom: 2.5rem;
}
.hero-title-new {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-family: 'Outfit', sans-serif;
}
.text-cyan {
    background: linear-gradient(135deg, #a78bfa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle-new {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 650px;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}
.hero-buttons-new {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 4rem;
}
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}
.btn-dark:hover {
    background: rgba(255, 255, 255, 0.08);
}
.btn-glow-cyan {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    color: #67e8f9;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
    cursor: default;
}
.btn-glow-cyan .dot {
    width: 6px;
    height: 6px;
    background: #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 8px #22d3ee;
}
.tech-stack-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.strip-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #6b7280;
    text-transform: uppercase;
}
.strip-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #9ca3af;
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(255,255,255,0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
}
.strip-divider {
    color: #374151;
    font-size: 0.8rem;
}
.dev-preview-box {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem 2rem 2rem;
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.05);
}
.dev-preview-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #312e81;
    color: #c7d2fe;
    padding: 0.25rem 1rem;
    border-radius: 99px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 1px solid rgba(139, 92, 246, 0.4);
    text-transform: uppercase;
}
.dev-preview-box p {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn-primary {
    background: var(--btn-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}
.btn-primary:hover {
    background: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.6);
}
.btn-secondary {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}
.btn-support { background: #3b82f6; color: white; }
.btn-hostinger { background: #673ab7; color: white; }
.w-full { width: 100%; }

/* Glass Cards */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, background 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.04);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.ai-feature {
    border-color: rgba(236, 72, 153, 0.3);
    background: linear-gradient(180deg, rgba(236,72,153,0.05) 0%, transparent 100%);
}

/* Support Section */
.support-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}
.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.support-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}
.support-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Integrations */
.integrations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}
.integration-badge {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: default;
}
.integration-badge:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Capabilities Section */
.capabilities {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.capabilities-header {
    margin-bottom: 4rem;
}
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.capability-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}
.check-icon {
    width: 20px;
    height: 20px;
    color: #818cf8;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.capability-item span {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.5;
}
.capability-item strong {
    color: #fff;
    font-weight: 600;
}

/* Contact Form */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
}
.form {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.input-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
}
.input-group input, .input-group textarea, .input-group select {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}
.input-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
    cursor: pointer;
}
.input-group select option {
    background-color: #111827;
    color: white;
}
.input-group input:focus, .input-group textarea:focus, .input-group select:focus {
    outline: none;
    border-color: #818cf8;
}
.form-status {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 1rem;
}
.success { color: #34d399; }
.error { color: #f87171; }

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.observe-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.observe-fade.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .glass { padding: 2rem; }
}

@keyframes pulse {
    0% { opacity: 1; box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { opacity: 1; box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}
