/* ── PROSPITY THEME ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --indigo: #4F46E5;
    --indigo-dark: #3730A3;
    --indigo-light: #EEF2FF;
    --violet: #7C3AED;
    --emerald: #10B981;
    --slate: #0F172A;
    --slate-mid: #334155;
    --slate-light: #94A3B8;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --border: rgba(15,23,42,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--slate); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; font-size: 16px; line-height: 1.6; }

/* ── NAVBAR ── */
.navbar { background: rgba(255,255,255,0.95) !important; backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0.85rem 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 12px rgba(15,23,42,0.06); }
.navbar-brand { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--slate) !important; letter-spacing: -0.3px; }
.navbar-brand span { color: var(--indigo); }
.nav-link { color: var(--slate-mid) !important; font-weight: 500; font-size: 0.9rem; padding: 0.4rem 0.9rem !important; border-radius: 6px; transition: all 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--indigo) !important; background: var(--indigo-light); }
.btn-nav-cta { background: var(--indigo) !important; color: white !important; border-radius: 8px !important; padding: 0.5rem 1.25rem !important; font-weight: 600 !important; box-shadow: 0 2px 12px rgba(79,70,229,0.3); transition: all 0.2s !important; }
.btn-nav-cta:hover { background: var(--indigo-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(79,70,229,0.4) !important; }

/* ── HERO ── */
.hero-section { background: linear-gradient(135deg, #F0F4FF 0%, #FAF5FF 50%, #F0FDF4 100%); padding: 5rem 0 3rem; min-height: 92vh; display: flex; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--indigo); border: 1px solid rgba(79,70,229,0.25); padding: 0.45rem 1.1rem; border-radius: 99px; font-size: 0.8rem; font-weight: 500; margin-bottom: 1.5rem; box-shadow: 0 2px 12px rgba(79,70,229,0.1); }
.hero-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.5px; color: var(--slate); margin-bottom: 1.25rem; }
.hero-title .accent { color: var(--indigo); position: relative; display: inline-block; }
.hero-title .accent::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--indigo), var(--violet)); border-radius: 3px; opacity: 0.25; }
.hero-desc { font-size: 1rem; color: var(--slate-mid); line-height: 1.75; margin-bottom: 2rem; max-width: 480px; }
.hero-social-proof { display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; }
.avatar-stack { display: flex; }
.avatar-stack .av { width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid white; margin-left: -10px; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.avatar-stack .av:first-child { margin-left: 0; }
.proof-text { font-size: 0.82rem; color: var(--slate-mid); line-height: 1.4; }
.proof-text strong { color: var(--indigo); }
.stars { color: #F59E0B; font-size: 0.8rem; }

/* ── APP MOCKUP ── */
.app-frame { background: white; border-radius: 16px; box-shadow: 0 32px 80px rgba(15,23,42,0.14), 0 0 0 1px rgba(15,23,42,0.06); overflow: hidden; }
.app-topbar { background: white; border-bottom: 1px solid #F1F5F9; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; }
.app-topbar-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 14px; color: var(--slate); }
.app-topbar-logo span { color: var(--indigo); }
.app-search { display: flex; align-items: center; gap: 6px; background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 6px; padding: 5px 12px; font-size: 11px; color: #94A3B8; }
.app-body { display: flex; }
.app-sidebar { width: 120px; flex-shrink: 0; border-right: 1px solid #F1F5F9; padding: 12px 0; }
.app-nav-item { display: flex; align-items: center; gap: 8px; padding: 8px 12px; font-size: 11px; color: #64748B; cursor: pointer; }
.app-nav-item.active { color: var(--indigo); background: #EEF2FF; font-weight: 600; }
.app-nav-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.app-main { flex: 1; padding: 14px; background: #F8FAFC; overflow: hidden; }
.app-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 12px; }
.app-stat { background: var(--slate); border-radius: 8px; padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; }
.app-stat-label { font-size: 9px; color: #94A3B8; margin-bottom: 3px; }
.app-stat-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: white; line-height: 1; }
.app-stat-icon { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.app-pipeline-section { background: white; border-radius: 10px; padding: 12px; margin-bottom: 10px; border: 1px solid #F1F5F9; }
.app-section-title { font-size: 11px; font-weight: 600; color: var(--slate); margin-bottom: 10px; }
.app-pipeline-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.app-col-head { font-size: 9.5px; color: #64748B; margin-bottom: 6px; font-weight: 500; }
.app-deal { background: #F8FAFC; border-radius: 6px; padding: 7px 8px; margin-bottom: 5px; border: 1px solid #F1F5F9; font-size: 10px; }
.app-deal-name { color: var(--slate); font-weight: 500; margin-bottom: 2px; }
.app-deal-val { color: var(--emerald); font-size: 9.5px; font-weight: 600; }
.app-deal-add { color: #CBD5E1; font-size: 9.5px; margin-top: 4px; }
.app-col-won .app-deal { border-left: 2.5px solid var(--emerald); }
.app-col-proposal .app-deal { border-left: 2.5px solid var(--indigo); }
.app-bottom { display: grid; grid-template-columns: 1.3fr 1fr; gap: 8px; }
.app-rev { background: white; border-radius: 10px; padding: 12px; border: 1px solid #F1F5F9; }
.app-rev-amount { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 800; color: var(--slate); }
.app-rev-change { font-size: 9.5px; color: var(--emerald); font-weight: 600; }
.app-source { background: white; border-radius: 10px; padding: 12px; border: 1px solid #F1F5F9; }
.source-row { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; font-size: 9.5px; color: #64748B; }
.source-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.source-pct { margin-left: auto; font-weight: 600; color: var(--slate); }

/* ── BUTTONS ── */
.btn-primary-custom { background: var(--indigo); color: white; padding: 0.8rem 1.75rem; border-radius: 10px; font-size: 0.95rem; font-weight: 600; border: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; box-shadow: 0 4px 20px rgba(79,70,229,0.35); text-decoration: none; cursor: pointer; }
.btn-primary-custom:hover { background: var(--indigo-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(79,70,229,0.45); color: white; }
.btn-outline-custom { background: white; color: var(--slate); padding: 0.8rem 1.75rem; border-radius: 10px; font-size: 0.95rem; font-weight: 500; border: 1.5px solid var(--border); display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; text-decoration: none; }
.btn-outline-custom:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }

/* ── SECTIONS ── */
.section-label { font-size: 0.72rem; font-weight: 600; color: var(--indigo); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.75rem; display: block; }
.section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.3px; color: var(--slate); line-height: 1.2; }

/* ── TRUSTED STRIP ── */
.trusted-strip { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem 0; text-align: center; }
.trusted-strip .strip-label { font-size: 0.72rem; color: var(--slate-light); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2rem; }
.trust-card { display: flex; align-items: flex-start; gap: 14px; background: var(--off-white); border: 1px solid var(--border); border-radius: 14px; padding: 1.25rem 1.1rem; text-align: left; transition: all 0.25s; height: 100%; }
.trust-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(15,23,42,0.08); border-color: rgba(79,70,229,0.15); background: white; }
.trust-icon-box { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.trust-title { font-size: 0.88rem; font-weight: 700; color: var(--slate); margin-bottom: 4px; font-family: 'Plus Jakarta Sans', sans-serif; }
.trust-desc { font-size: 0.78rem; color: var(--slate-light); line-height: 1.5; margin: 0; }

/* ── FEATURES ── */
.features-section { padding: 6rem 0; background: var(--off-white); }
.feat-card { background: white; border-radius: 16px; padding: 2rem; border: 1px solid var(--border); transition: all 0.3s; height: 100%; }
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(15,23,42,0.08); border-color: rgba(79,70,229,0.2); }
.feat-card.highlight { background: var(--indigo); border-color: var(--indigo); }
.feat-card.highlight .feat-title, .feat-card.highlight .feat-desc { color: white; }
.feat-card.highlight .feat-desc { opacity: 0.85; }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--indigo-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.feat-card.highlight .feat-icon { background: rgba(255,255,255,0.2); }
.feat-badge { display: inline-block; font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 99px; margin-bottom: 0.75rem; background: #FEF3C7; color: #92400E; }
.feat-card.highlight .feat-badge { background: rgba(255,255,255,0.2); color: white; }
.feat-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--slate); margin-bottom: 0.5rem; }
.feat-desc { font-size: 0.88rem; color: var(--slate-mid); line-height: 1.7; margin: 0; }

/* ── PRICING ── */
.pricing-section { padding: 6rem 0; }
.price-card { background: white; border-radius: 16px; padding: 2rem; border: 1px solid var(--border); position: relative; height: 100%; display: flex; flex-direction: column; }
.price-card.popular { background: var(--indigo); border-color: var(--indigo); box-shadow: 0 20px 60px rgba(79,70,229,0.3); }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--emerald); color: white; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 99px; white-space: nowrap; }
.price-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--slate); margin-bottom: 0.5rem; }
.price-card.popular .price-name, .price-card.popular .price-amount, .price-card.popular .price-period, .price-card.popular .price-desc { color: white; }
.price-amount { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--slate); line-height: 1; }
.price-period { font-size: 0.82rem; color: var(--slate-light); margin-bottom: 0.75rem; }
.price-desc { font-size: 0.85rem; color: var(--slate-mid); margin-bottom: 1.5rem; line-height: 1.5; }
.price-features { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; flex: 1; }
.price-features li { font-size: 0.85rem; color: var(--slate-mid); display: flex; align-items: flex-start; gap: 8px; }
.price-features li::before { content: '✓'; color: var(--emerald); font-weight: 700; flex-shrink: 0; }
.price-card.popular .price-features li { color: rgba(255,255,255,0.85); }
.price-card.popular .price-features li::before { color: #6EE7B7; }
.price-btn { display: block; text-align: center; padding: 0.75rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600; text-decoration: none; border: 1.5px solid var(--border); color: var(--slate); transition: all 0.2s; margin-top: auto; }
.price-btn:hover { border-color: var(--indigo); color: var(--indigo); }
.price-card.popular .price-btn { background: white; color: var(--indigo); border-color: white; }
.price-card.popular .price-btn:hover { background: var(--indigo-light); }

/* ── ABOUT ── */
.about-section { padding: 6rem 0; }
.stat-highlight { text-align: center; padding: 2rem; background: var(--indigo-light); border-radius: 16px; border: 1px solid rgba(79,70,229,0.15); }
.stat-highlight .number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--indigo); }
.stat-highlight .label { font-size: 0.85rem; color: var(--slate-mid); margin-top: 4px; }
.team-card { background: white; border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border); text-align: center; transition: all 0.3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,23,42,0.08); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: white; margin: 0 auto 1rem; }
.team-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--slate); }
.team-role { font-size: 0.82rem; color: var(--slate-light); }

/* ── CONTACT ── */
.contact-section { padding: 6rem 0; background: var(--off-white); }
.contact-card { background: white; border-radius: 20px; padding: 2.5rem; border: 1px solid var(--border); box-shadow: 0 8px 40px rgba(15,23,42,0.06); }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--slate); margin-bottom: 0.4rem; }
.form-control, .form-select { border: 1.5px solid #E2E8F0; border-radius: 8px; padding: 0.7rem 1rem; font-size: 0.9rem; color: var(--slate); transition: border-color 0.2s, box-shadow 0.2s; }
.form-control:focus, .form-select:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); outline: none; }
.form-control.is-invalid, .form-select.is-invalid { border-color: #EF4444; }
.invalid-feedback { font-size: 0.78rem; color: #EF4444; }
.contact-info-card { background: var(--indigo); border-radius: 20px; padding: 2.5rem; color: white; height: 100%; }
.contact-info-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.5rem; }
.info-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-label { font-size: 0.75rem; opacity: 0.7; margin-bottom: 2px; }
.info-value { font-size: 0.9rem; font-weight: 500; }

/* ── CTA SECTION ── */
.cta-section { background: var(--slate); padding: 6rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(79,70,229,0.3) 0%, transparent 70%); pointer-events: none; }
.cta-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 800; color: white; letter-spacing: -0.3px; line-height: 1.2; }
.cta-desc { color: #94A3B8; max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.7; }
.btn-white { background: white; color: var(--indigo); padding: 0.9rem 2rem; border-radius: 10px; font-size: 1rem; font-weight: 600; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-white:hover { background: var(--indigo-light); color: var(--indigo); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: white; padding: 0.9rem 2rem; border-radius: 10px; font-size: 1rem; font-weight: 500; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.25); transition: all 0.2s; display: inline-block; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); transform: translateY(-2px); color: white; }

/* ── FOOTER ── */
footer { background: #020617; padding: 3rem 0; }
.footer-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem; font-weight: 800; color: white; }
.footer-logo span { color: var(--indigo); }
.footer-link { color: #64748B; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; display: block; margin-bottom: 0.5rem; }
.footer-link:hover { color: white; }
.footer-heading { color: #94A3B8; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.footer-copy { color: #334155; font-size: 0.8rem; border-top: 1px solid #1E293B; padding-top: 1.5rem; margin-top: 2rem; }

/* ── THANK YOU ── */
.thankyou-section { min-height: 80vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #F0F4FF, #FAF5FF); }
.thankyou-card { background: white; border-radius: 24px; padding: 3rem; text-align: center; box-shadow: 0 20px 60px rgba(15,23,42,0.1); max-width: 540px; width: 100%; }
.check-circle { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--indigo), var(--violet)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: linear-gradient(135deg, #F0F4FF 0%, #FAF5FF 100%); padding: 5rem 0 4rem; text-align: center; border-bottom: 1px solid var(--border); }
.page-hero-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 800; color: var(--slate); letter-spacing: -0.3px; }
.page-hero-desc { color: var(--slate-mid); max-width: 540px; margin: 1rem auto 0; font-size: 1rem; line-height: 1.7; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.6s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .hero-section { padding: 5rem 0 3rem; min-height: auto; }
    .app-sidebar { display: none; }
    .app-stats { grid-template-columns: repeat(2,1fr); }
    .app-pipeline-cols { grid-template-columns: repeat(2,1fr); }
    .app-bottom { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero-title { letter-spacing: -1px; }
    .hero-desc { max-width: 100%; }
    .hero-social-proof { flex-wrap: wrap; }
    .app-stats { grid-template-columns: repeat(2,1fr); gap: 6px; }
    .app-stat-value { font-size: 12px; }
    .app-stat-icon { display: none; }
    .section-title { font-size: 1.7rem; }
    .contact-info-card { margin-top: 2rem; }
}

/* ── ANTI-STRETCH GLOBAL FIXES ── */
/* Prevent Bootstrap from stretching fonts */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.2px;
}
p, span, a, li, td, th, label, input, textarea, select, button {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
}
/* Prevent width:100% on inputs causing stretch */
input, textarea, select {
    width: 100%;
    font-size: 0.9rem !important;
}
/* Fix Bootstrap accordion font */
.accordion-button {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
}
/* Fix Bootstrap container stretching on very wide screens */
.container {
    max-width: 1200px !important;
}
/* Fix hero title on all screen sizes */
.hero-title {
    font-stretch: normal !important;
    word-spacing: normal !important;
}
/* Ensure no text-align:justify anywhere */
* {
    text-align: initial;
}
.text-center { text-align: center !important; }
.text-start  { text-align: left   !important; }
.text-end    { text-align: right  !important; }
