/* --- CSS VARIABLES & RESET --- */
:root {
    --primary: #8b5cf6;
    --primary-hover: #7c3aed;
    --secondary: #ec4899;
    --bg-dark: #09090b;
    --bg-card: #18181b;
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --accent: #22c55e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    padding: 0 60px !important;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* --- BUTTONS --- */
.btn-custom {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.btn-primary-custom {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
}

.btn-primary-custom:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 12px rgba(139, 92, 246, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--text-muted);
    color: var(--text-main);
    background: transparent;
}

.btn-outline-custom:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
}

/* --- TYPOGRAPHY --- */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: -webkit-linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 5rem auto;
    font-size: 1.1rem;
}

/* --- HEADER --- */
header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration:none;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration:none;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 180px 20px 80px 20px;
    text-align: center;
    background: radial-gradient(circle at top center, #1e0a38 0%, var(--bg-dark) 70%);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
    padding-top:40px;
    color:#fff;
}

.hero-section h1 .highlight {
    background: -webkit-linear-gradient(45deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- FEATURES --- */
.features-section {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- HOW IT WORKS --- */
.how-it-works-section {
    padding: 100px 20px;
    background: #0c0c0e;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
    color: white;
    position: relative;
    z-index: 2;
    animation: pulse 1.5s infinite;
}

.step-item h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--text-main);
}

.step-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(139, 92, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

/* --- INTEGRATIONS SECTION --- */
.integrations-section {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.integration-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--primary);
}

.integration-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.integration-card:hover .integration-icon {
    transform: scale(1.1);
}

.integration-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.integration-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.integration-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.integration-cta p {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 25px;
    font-weight: 600;
}

/* --- CTA SECTION --- */
.cta-section {
    padding: 100px 20px;
    text-align: center;
    background: var(--bg-dark);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- DEMO FORM --- */
.demo-section {
    padding: 80px 20px;
    background: #0c0c0e;
}

.demo-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
}

.form-control-custom {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-dark);
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-control-custom::placeholder {
    color: var(--text-muted);
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 120px;
}

.form-help-text {
    color: var(--text-muted);
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
}

/* --- FOOTER --- */
footer {
    padding: 80px 20px 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    background: var(--bg-dark);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 150px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-custom {
        width: 100%;
        max-width: 300px;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
}



/* --- CSS VARIABLES & RESET --- */
:root {
    --primary: #8b5cf6;
    --primary-hover: #7c3aed;
    --secondary: #ec4899;
    --bg-dark: #09090b;
    --bg-card: #18181b;
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --accent: #22c55e;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

.btn-custom {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.btn-primary-custom {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
}

    .btn-primary-custom:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 6px 12px rgba(139, 92, 246, 0.4);
        color: white;
    }

.btn-outline-custom {
    border: 2px solid var(--text-muted);
    color: var(--text-main);
    background: transparent;
}

    .btn-outline-custom:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: rgba(139, 92, 246, 0.1);
    }

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: -webkit-linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 5rem auto;
    font-size: 1.1rem;
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 120px 0 80px 0;
    text-align: center;
    background: radial-gradient(circle at top center, #1e0a38 0%, var(--bg-dark) 70%);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

    .hero-section h1 {
        font-size: 4.5rem;
        line-height: 1.1;
        margin-bottom: 25px;
        font-weight: 900;
    }

        .hero-section h1 .highlight {
            background: -webkit-linear-gradient(45deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    .hero-section p {
        font-size: 1.35rem;
        color: var(--text-muted);
        margin-bottom: 50px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- HERO FORM --- */
.hero-form-container {
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.hero-form {
    width: 100%;
}

.input-group-hero {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: none;
    background: var(--bg-dark);
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

    .hero-input:focus {
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
    }

    .hero-input::placeholder {
        color: var(--text-muted);
    }

.btn-hero {
    white-space: nowrap;
    padding: 16px 32px !important;
    font-size: 1rem;
}

.hero-form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 15px;
    margin-bottom: 0;
}

/* --- FEATURES --- */
.features-section {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

    .feature-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    }

.icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- HOW IT WORKS --- */
.how-it-works-section {
    padding: 100px 20px;
    background: #0c0c0e;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
    color: white;
    position: relative;
    z-index: 2;
    animation: pulse 1.5s infinite;
}

.step-item h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--text-main);
}

.step-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(139, 92, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

/* --- CTA SECTION --- */
.cta-section {
    padding: 100px 20px;
    text-align: center;
    background: var(--bg-dark);
}

    .cta-section h2 {
        font-size: 3rem;
        margin-bottom: 20px;
        font-weight: 800;
    }

    .cta-section p {
        color: var(--text-muted);
        font-size: 1.2rem;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

/* --- DEMO FORM --- */
.demo-section {
    padding: 80px 20px;
    background: #0c0c0e;
}

.demo-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--text-main);
        font-weight: 600;
        font-size: 1rem;
    }

.form-control-custom {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--bg-dark);
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control-custom:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    }

    .form-control-custom::placeholder {
        color: var(--text-muted);
    }

textarea.form-control-custom {
    resize: vertical;
    min-height: 120px;
}

/* --- PRICING --- */
.pricing-section {
    padding: 100px 20px;
    background: var(--bg-dark);
}

/* Pricing Toggle Switch */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.pricing-toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

#pricingToggle:not(:checked) ~ #monthlyLabel,
#pricingToggle:checked ~ #annualLabel {
    color: var(--text-main);
}

.pricing-toggle-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    margin-left: 8px;
    font-weight: 700;
}

.pricing-toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.pricing-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    transition: 0.4s;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.2);
}

.pricing-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .pricing-toggle-slider {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--primary);
}

input:checked + .pricing-toggle-slider:before {
    transform: translateX(30px);
}

.pricing-toggle-slider:hover {
    background: rgba(255,255,255,0.15);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1) 0%, var(--bg-card) 50%);
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.pricing-card:not(.popular):hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.price {
    font-size: 4rem;
    font-weight: 800;
    margin: 20px 0 10px 0;
    color: var(--text-main);
}

.price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-features {
    margin: 30px 0;
    text-align: left;
}

.plan-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.plan-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-custom {
        width: 100%;
        max-width: 300px;
    }

    .input-group-hero {
        flex-direction: column;
        gap: 10px;
        border-radius: 20px;
    }

    .hero-input {
        border-radius: 12px;
    }

    .btn-hero {
        width: 100%;
        border-radius: 12px !important;
    }
}

/* --- POWERED BY SECTION --- */
.powered-by-section {
    padding: 80px 20px;
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* --- FEATURE TOOLTIP --- */
.feature-tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.feature-tooltip svg {
    transition: opacity 0.2s ease;
}

.feature-tooltip:hover svg {
    opacity: 1 !important;
}

.feature-tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: 220px;
    background-color: #27272a;
    color: #f4f4f5;
    text-align: center;
    border-radius: 8px;
    padding: 10px 12px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.3);
    font-size: 0.875rem;
    line-height: 1.4;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.feature-tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #27272a transparent transparent transparent;
}

.feature-tooltip:hover .feature-tooltip-text {
    visibility: visible;
    opacity: 1;
}


.language-selector {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

    .language-selector .dropdown-toggle {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        padding: 8px 16px;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

        .language-selector .dropdown-toggle:hover {
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.1);
        }

    .language-selector .dropdown-menu {
        background: rgba(26, 26, 46, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 8px;
        max-height: 300px;
        overflow-y: auto;
        min-width: 250px;
    }

    .language-selector .language-search {
        position: sticky;
        top: 0;
        background: rgba(26, 26, 46, 0.98);
        padding: 8px;
        margin-bottom: 8px;
        z-index: 10;
    }

        .language-selector .language-search input {
            width: 100%;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-size: 14px;
        }

            .language-selector .language-search input::placeholder {
                color: rgba(255, 255, 255, 0.5);
            }

            .language-selector .language-search input:focus {
                outline: none;
                border-color: rgba(139, 92, 246, 0.5);
                background: rgba(255, 255, 255, 0.15);
            }

    .language-selector .dropdown-item {
        color: white;
        padding: 10px 16px;
        border-radius: 8px;
        border: none;
        background: transparent;
        width: 100%;
        text-align: left;
        transition: all 0.2s ease;
    }

        .language-selector .dropdown-item:hover {
            background: rgba(139, 92, 246, 0.2);
        }

        .language-selector .dropdown-item.active {
            background: linear-gradient(90deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
            font-weight: 600;
        }

nav {
    display: flex;
    align-items: center;
}