/* ===============================
   CSS Variables
================================= */

:root {
    --aq-primary: #1e2a4a;
    --aq-primary-light: #2d3d66;
    --aq-accent: #22c55e;
    --aq-accent-hover: #16a34a;
    --aq-text-muted: #64748b;
    --aq-bg-light: #f8fafc;
    --aq-border: #e2e8f0;
}


/* ===============================
   App Shell
================================= */

body.app-bg {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fc;
    color: #1f2937;
}

.app-navbar {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    backdrop-filter: blur(6px);
}

.app-logo {
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    color: #111827;
}

    .app-logo:hover {
        color: #2563eb;
    }

.app-container {
    margin-top: 3rem;
}

.btn {
    border-radius: 8px;
}

.btn-primary {
    background-color: var(--aq-primary);
    border-color: var(--aq-primary);
}

.btn-primary:hover {
    background-color: var(--aq-primary-light);
    border-color: var(--aq-primary-light);
}

.card {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.btn-light {
    background-color: transparent;
}

    .btn-light:hover {
        background-color: #f3f4f6;
        border-radius: 6px;
    }

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ===============================
   Artisan Layout
================================= */

.artisan-sidebar {
    width: 240px;
    flex-shrink: 0;
    background-color: #ffffff;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.sidebar-link {
    color: #374151;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
}

    .sidebar-link:hover {
        background-color: #f3f4f6;
        color: #111827;
    }

    .sidebar-link.active {
        background-color: #eef2ff;
        color: #2563eb;
        font-weight: 600;
    }

.artisan-topbar {
    background-color: #ffffff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}



/* ===============================
   AVATAR EMAIL
================================= */

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: default;
    user-select: none;
}


/* ===============================
   Landing Page
================================= */

.landing-page {
    font-family: 'Inter', sans-serif;
    color: var(--aq-primary);
}

.landing-page .btn-outline-primary {
    color: var(--aq-primary);
    border-color: var(--aq-primary);
}

.landing-page .btn-outline-primary:hover {
    background-color: var(--aq-primary);
    border-color: var(--aq-primary);
    color: white;
}

.landing-page .btn-success {
    background-color: var(--aq-accent);
    border-color: var(--aq-accent);
}

.landing-page .btn-success:hover {
    background-color: var(--aq-accent-hover);
    border-color: var(--aq-accent-hover);
}

/* Navbar */
.landing-navbar {
    padding: 1rem 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.landing-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--aq-primary);
    text-decoration: none;
}

.landing-brand:hover {
    color: var(--aq-primary-light);
}

.landing-nav-link {
    color: var(--aq-primary);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
}

.landing-nav-link:hover {
    color: var(--aq-primary-light);
}

/* Hero */
.hero-section {
    padding: 5rem 0 3rem;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--aq-primary);
}

.hero-section .lead {
    font-size: 1.25rem;
    color: var(--aq-text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Phone mockup */
.phone-mockup {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    max-width: 320px;
    margin: 0 auto;
    border: 8px solid var(--aq-primary);
}

.phone-screen {
    background: var(--aq-bg-light);
    border-radius: 1.25rem;
    padding: 1.5rem;
    min-height: 400px;
}

/* Step dots */
.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--aq-border);
    display: inline-block;
}

.step-dot.active {
    background: var(--aq-primary);
    width: 24px;
    border-radius: 4px;
}

/* Room cards */
.room-card {
    background: white;
    border: 2px solid var(--aq-border);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.room-card.selected {
    border-color: var(--aq-accent);
    background: rgba(34, 197, 94, 0.05);
}

.room-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.room-card span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Step numbers */
.step-number {
    width: 48px;
    height: 48px;
    background: var(--aq-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
}

/* Feature list */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.feature-list i {
    color: var(--aq-accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Stats */
.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--aq-bg-light);
    border-radius: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--aq-primary);
    line-height: 1;
}

.stat-label {
    color: var(--aq-text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: var(--aq-accent-hover);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-top: 2rem;
}

/* Pricing */
.pricing-badge {
    display: inline-block;
    background: var(--aq-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--aq-primary);
    line-height: 1.2;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--aq-border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--aq-accent);
}

/* FAQ */
.landing-page .accordion-item {
    border: 1px solid var(--aq-border);
    border-radius: 0.75rem !important;
    overflow: hidden;
}

.landing-page .accordion-button {
    font-weight: 600;
    color: var(--aq-primary);
    padding: 1.25rem 1.5rem;
}

.landing-page .accordion-button:not(.collapsed) {
    background: var(--aq-bg-light);
    color: var(--aq-primary);
    box-shadow: none;
}

.landing-page .accordion-button:focus {
    box-shadow: none;
}

.landing-page .accordion-body {
    padding: 1.25rem 1.5rem;
    color: var(--aq-text-muted);
}

/* Footer CTA */
.footer-cta-section {
    padding: 5rem 0;
    background: var(--aq-primary);
    color: white;
    text-align: center;
}

.footer-cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-cta-section p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* Footer */
.landing-footer {
    padding: 2rem 0;
    background: var(--aq-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
}

.landing-footer a:hover {
    color: white;
}

.landing-footer .footer-brand {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.landing-footer .footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
}

/* ===============================
   Lead Intent Badges
================================= */

.lead-badge-Interested {
    background: #f0fdf4;
    color: #16a34a;
}

.lead-badge-Declined {
    background: #fef2f2;
    color: #dc2626;
}

.lead-badge-Pending {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}