/* ================================
   NAVBAR
================================ */
.navbar-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 14px 0;
    transition: all 0.2s ease;
}

.navbar-brand-custom {
    font-weight: 600;
    font-size: 1.2rem;
    color: #111827;
}

.nav-link-custom {
    color: #6b7280 !important;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.nav-link-custom:hover {
    background: #f3f4f6;
    color: #111827 !important;
}

.btn-primary-custom {
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 500;
    border: none;
    color: white;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    transition: all 0.2s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.25);
}

/* ================================
   HERO (FOCUSED + CLEAN)
================================ */
.hero-section {
    padding: 120px 0 80px;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #111827;
}

.hero-gradient {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #6b7280;
    max-width: 520px;
}

.hero-btn-primary {
    padding: 12px 22px;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border: none;
}

.hero-btn-secondary {
    padding: 12px 22px;
    border-radius: 12px;
    background: #f3f4f6;
    color: #374151;
    border: none;
}

.hero-preview {
    background: white;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

/* ================================
   GENERIC CARDS (REUSABLE CORE)
================================ */
.card-soft {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.card-soft:hover {
    transform: translateY(-3px);
}

/* ================================
   INPUT / PANELS (IMPORTANT FOR TOOL)
================================ */
.panel {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.input-clean {
    width: 100%;
    border: none;
    background: #f3f4f6;
    border-radius: 10px;
    padding: 12px;
}

.tag {
    padding: 6px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    font-size: 0.8rem;
    cursor: pointer;
}

.tag.active {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
}

/* ================================
   RESULT / OUTPUT (CRITICAL AREA)
================================ */
.result-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
}

.result-card.selected {
    border: 2px solid #4f46e5;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.15);
}

/* ================================
   SECTIONS (CONSISTENT SPACING)
================================ */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
}

.section-subtitle {
    color: #6b7280;
}

/* ================================
   PRICING (IMPORTANT FOR CONVERSION)
================================ */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-price {
    font-size: 2rem;
    font-weight: 600;
}

.pricing-btn-primary {
    padding: 12px;
    border-radius: 12px;
    border: none;
    color: white;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
}

/* ================================
   FAQ (SAFE OVERRIDE BOOTSTRAP)
================================ */
.accordion-button:not(.collapsed) {
    color: #111827;
    background: white;
    box-shadow: none;
}

.faq-item {
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* ================================
   FINAL CTA
================================ */
.final-cta-primary {
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 500;
    color: white;
    border: none;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
}