body {
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth; /* Fallback for browsers that support it natively */
}

.gradient-bg {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.cta-button {
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%); /* For Safari */
    border-bottom: 1px solid rgba(209, 213, 219, 0.3);
}

.coming-soon-tag {
    background-color: #f3f4f6;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 9999px;
    display: inline-block;
}

.pricing-toggle-label .peer:checked ~ .toggle-bg {
    background-color: #f59e0b;
}

.pricing-toggle-label .peer:checked ~ .toggle-dot {
    transform: translateX(100%);
    border-color: white;
}

.save-tag {
    background-color: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 9999px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Language Switcher */
.lang-switcher button {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: all 0.2s ease-in-out;
}

.lang-switcher button.active {
    background-color: #1f2937;
    color: white;
}
