/* --- 1. FONTS & BRAND VARIABLES --- */
/* Importing Urbanist for Headlines and DM Sans for Body Text */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --brand-black: #000000;
    --brand-yellow: #FEDE65;
    --brand-lavender: #F3EBFC;
}

body {
    font-family: 'DM Sans', sans-serif; /* Global Body Font */
    background-color: var(--brand-lavender);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Headline Specific Font */
h1, h2, h3, h4, .font-headline {
    font-family: 'Urbanist', sans-serif;
    letter-spacing: -0.02em;
}

/* --- 2. HEADER --- */
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

/* --- 3. UNIFIED BUTTONS (Exactly 280px width) --- */
.btn-genius-base {
    font-family: 'DM Sans', sans-serif; /* Keeping buttons readable */
    font-weight: 700;
    padding: 1.1rem 0; 
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid var(--brand-black);
    width: 280px; 
    max-width: 100%;
}

/* --- THE TACTILE GENIUS BUTTON --- */
.btn-genius-primary {
    background-color: var(--brand-black) !important;
    color: white !important;
    border: none;
    /* Use a 'springy' cubic-bezier for a premium feel */
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.3s ease, 
                background-color 0.1s ease;
}

/* HOVER: No transparency, just lift and grow */
.btn-genius-primary:hover {
    transform: translateY(-6px) scale(1.01); 
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3);
}

/* CLICK (ACTIVE): Snap down and change color to Yellow */
.btn-genius-primary:active {
    background-color: var(--brand-yellow) !important;
    color: var(--brand-black) !important;
    transform: translateY(0) scale(0.96); /* Visual feedback of a 'press' */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* ARROW SLIDE: The subtle detail */
.btn-genius-primary span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-genius-primary:hover span {
    transform: translateX(10px); /* Slides arrow right on hover */
}

/* --- 4. TRUST BAR --- */
/* --- SECURE INFINITE SCROLL --- */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Moves exactly half the width of the double-set */
}

.logos-container {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-slide {
    display: flex;
    width: fit-content;
    animation: 25s scroll linear infinite;
}

/* Pause on hover so people can actually read the logos */
.logos-slide:hover {
    animation-play-state: paused;
}

.logos-slide span {
    margin: 0 40px;
    font-family: 'Urbanist', sans-serif; /* Logos look better in Urbanist */
    font-weight: 800;
    font-size: 0.8rem;
    color: #000;
    opacity: 0.4;
}

/* Styling the Active Bar when the accordion is open */
.accordion-btn.border-slate-400 {
    border-left-color: #fbbf24 !important; /* Forces the left border to your brand yellow */
    border-left-width: 4px !important;
}

/* Slider Utility */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Transparent Arrow Animations */
@keyframes arrow-left-pulse { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-5px); } }
@keyframes arrow-right-pulse { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }

.animate-pulse-left { animation: arrow-left-pulse 2s infinite ease-in-out; }
.animate-pulse-right { animation: arrow-right-pulse 2s infinite ease-in-out; }

/* Testimonial Sharp Design */
.testimonial-card { transition: border-color 0.4s ease; cursor: grab; }
.testimonial-card:active { cursor: grabbing; }
.testimonial-card:hover { border-color: #7C3AED; }

/* --- 5. MOBILE MENU (RELIABILITY FIX) --- */
#mobile-menu {
    background-color: #ffffff !important;
    display: none;
    flex-direction: column;
}

#mobile-menu.flex {
    display: flex !important;
}

#mobile-menu .menu-nav-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 20px 24px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0f172a !important; /* slate-900 */
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border-bottom: 1px solid #f8fafc !important;
    width: 100% !important;
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
}

#mobile-menu .menu-sub-item {
    display: inline-block !important;
    padding: 12px 0 !important;
    margin-left: 32px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #64748b !important; /* slate-500 */
    text-transform: uppercase !important;
    background: transparent;
    transition: color 0.2s ease;
}

#mobile-menu .menu-sub-item:hover {
    color: #000000 !important;
}

/* Accordion Transitions */
[id^="mobile-accordion-"] {
    transition: all 0.3s ease-in-out;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

