/* guest.css - Master Enterprise Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --fw-primary: #0F172A;
    --fw-accent: #3B82F6;
    --fw-border: #E2E8F0;
    --fw-bg-soft: #F8FAFC;
    --fw-text-muted: #64748B;
}

/* BASE */
body {
    font-family: 'Inter', sans-serif;
    color: #1E293B;
    background-color: #FFFFFF;
    line-height: 1.7;
}

.text-primary-color{
    color: var(--fw-primary);
}

/* REMOVE UNDERLINES */
a, .btn, .nav-link, .navbar-brand, .footer-link, .btn-fw-primary, .btn-v1-outline, .status-pill-clickable, .accordion-button {
    text-decoration: none !important;
}

/* REVEAL ANIMATION */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal-active { animation: fadeInUp 0.7s ease-out forwards; }

/* HERO */
.hero {
    padding: clamp(110px, 14vw, 160px) 0 110px;
    background:
            radial-gradient(at 0% 0%, rgba(15, 23, 42, 0.05), transparent 55%),
            radial-gradient(at 100% 0%, rgba(59, 130, 246, 0.06), transparent 55%);
    text-align: center;
}

.hero h1 {
    font-weight: 800;
    color: var(--fw-primary);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    letter-spacing: -0.04em;
    line-height: 1.1;
}

/* BUTTONS */
.btn-fw-primary {
    background-color: var(--fw-primary);
    color: #fff !important;
    padding: 12px 34px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.25s ease;
    border: none;
}

.btn-fw-primary:hover {
    transform: translateY(-2px);
    background-color: #000;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.btn-v1-outline {
    background: #fff;
    color: var(--fw-primary) !important;
    border: 1px solid var(--fw-border);
    padding: 12px 34px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.2s ease;
}

.btn-v1-outline:hover {
    background-color: var(--fw-bg-soft);
    border-color: #cbd5e1;
}

/* FEATURE CARDS */
.card-feature {
    border: 1px solid var(--fw-border);
    border-radius: 22px;
    padding: 2.8rem 2.2rem;
    background: white;
    height: 100%;
    transition: 0.35s ease;
}

.card-feature:hover {
    border-color: var(--fw-primary);
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.05);
}

.feature-token {
    display: inline-block;
    background: #f1f5f9;
    color: var(--fw-primary);
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

/* WORKFLOW */
.workflow-step {
    background: var(--fw-primary);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* PRICING CARDS */
.pricing-card {
    background: white;
    border: 1px solid var(--fw-border);
    border-radius: 26px;
    padding: 3.5rem 2.4rem;
    transition: 0.25s ease;
}

.pricing-card.popular {
    border: 2px solid var(--fw-primary);
    box-shadow: 0 22px 48px rgba(15,23,42,.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fw-primary);
    color: white;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

/* FAQ */
.accordion-item {
    border: 1px solid var(--fw-border) !important;
    border-radius: 16px !important;
    overflow: hidden;
}

.accordion-button {
    padding: 1.4rem;
    font-weight: 600;
    color: var(--fw-primary);
}

.accordion-button:not(.collapsed) {
    background-color: var(--fw-bg-soft);
    color: var(--fw-accent);
}

/* BADGE */
.badge.bg-success {
    background-color: #10b981 !important;
}

/* ============================= */
/* PRICING SWITCH — FINAL FIX */
/* ============================= */
/* ============================= */
/* PRICING SWITCH — FINAL FIX */
/* ============================= */

#planToggle.form-check-input {
    width: 3.2rem;
    height: 1.6rem;
    cursor: pointer;
    position: relative;

    background-color: #e5e7eb !important;
    border-color: #cbd5e1 !important;

    /* Remove Bootstrap default graphics */
    background-image: none !important;
    accent-color: var(--fw-primary) !important;

    border-radius: 999px;
    box-shadow: none !important;
    transition: all 0.25s ease-in-out;
}

/* Create custom circle thumb */
#planToggle.form-check-input::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 3px;

    width: 1.2rem;
    height: 1.2rem;

    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);

    transition: all 0.25s ease-in-out;
}

/* ON state */
#planToggle.form-check-input:checked {
    background-color: var(--fw-primary) !important;
    border-color: var(--fw-primary) !important;
}

/* Move circle when ON */
#planToggle.form-check-input:checked::before {
    transform: translateX(1.6rem);
}

/* Focus */
#planToggle.form-check-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgba(15, 23, 42, 0.18) !important;
}

/* Active */
#planToggle.form-check-input:active {
    background-color: var(--fw-primary) !important;
    border-color: var(--fw-primary) !important;
}


/* Centering the Auth Card on the Page */
.auth-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: var(--fw-bg-soft); /* Subtle background for contrast */
}

/* Force links to Navy (No Blue) */
.auth-page-wrapper a,
.auth-card a,
.form-check-label a {
    color: var(--fw-primary) !important;
    font-weight: 500;
    text-decoration: none !important;
}

.auth-page-wrapper a:hover,
.auth-card a:hover {
    color: #000 !important; /* Slightly darker on hover */
    text-decoration: underline !important;
}

/* Auth Card Styling */
.auth-card {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--fw-border);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

/* Professional loading state */
.btn-loading {
    pointer-events: none;
    opacity: 0.7;
    cursor: wait;
    position: relative;
}

/* Optional: if you want a subtle pulse effect */
@keyframes pulse-opacity {
    0% { opacity: 0.7; }
    50% { opacity: 0.5; }
    100% { opacity: 0.7; }
}
.btn-loading { animation: pulse-opacity 1.5s infinite; }