@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@400;600;700;800;900&display=swap');

:root {
    --primary: #22d3ee; /* cyan-400 */
    --primary-hover: #06b6d4; /* cyan-500 */
    --accent: #facc15; /* yellow-400 */
    --accent-red: #ef4444; /* red-500 */
    --bg-black: #09090b; /* zinc-950 */
    --bg-card: #18181b; /* zinc-900 */
    --text-white: #ffffff;
    --text-muted: #a1a1aa; /* zinc-400 */
    --border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.04em;
    font-weight: 800;
}

/* Glassmorphism */
.glass-panel {
    background: rgba(24, 24, 27, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-hot {
    background: linear-gradient(to right, var(--accent), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glow Follower */
.cursor-glow {
    transition: opacity 0.6s ease;
}

/* Premium Marquee */
.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.animate-marquee-reverse {
    display: flex;
    width: max-content;
    animation: marquee-reverse 35s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.pause:hover {
    animation-play-state: paused;
}

/* Pricing Toggle Switch Styling */
.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px 0;
}

.toggle-switch {
    width: 64px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-knob {
    width: 22px;
    height: 22px;
    background: var(--text-white);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.toggle-switch.active {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.toggle-switch.active .toggle-knob {
    transform: translateX(32px);
}

/* Pricing Cards Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 950px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.price-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* FAQ Accordion Styling */
.faq-item {
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-chevron {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3f3f46;
}
