/* Custom Styles for Marketing Tinh Gọn */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-deep: #0f172a;
    --primary-blue: #1e40af;
    --accent-emerald: #10b981;
    --accent-orange: #f97316;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
    background-color: #f8fafc;
    scroll-behavior: smooth;
}

/* Glassmorphism Header */
.glass-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Smooth Accordion */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.accordion-content.active {
    max-height: 1000px;
    transition: max-height 0.45s ease-in-out;
}

/* Pulse animation for High-converting CTA buttons */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

.btn-pulse {
    animation: pulse-glow 2.5s infinite;
}

/* Highlighting styles */
.gradient-text {
    background: linear-gradient(135deg, #1e40af 0%, #0284c7 50%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-bg-hero {
    background: radial-gradient(circle at 80% 20%, rgba(219, 234, 254, 0.5) 0%, rgba(248, 250, 252, 1) 70%);
}

/* Toast alert */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    animation: slideInUp 0.3s ease-out forwards;
}

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