/* ============================================================
   SalesPal AI — Marketing neumorphic (soft UI) theme
   ------------------------------------------------------------
   Scoped under `.neu` so it ONLY skins the public marketing
   pages — the shared navbar/footer and the app dashboard keep
   the standard blue Bootstrap theme untouched.
   Reuses --font-display / --font-body from colors_and_type.css.
   ============================================================ */

.neu {
  /* ---- surface + depth tokens (brand Neutral #E9ECF2 base) ---- */
  --neu-bg:        #e9ecf2;   /* page surface — brand Neutral */
  --neu-raised:    #eef1f7;   /* card face, a hair lighter so it lifts */
  --neu-sunken:    #e1e5ee;   /* inset face */
  --neu-light:     #ffffff;   /* top-left highlight */
  --neu-dark:      #c6ccd7;   /* bottom-right shadow */
  --neu-ink:       #1b1f2a;   /* headings */
  --neu-body:      #586072;   /* body text */
  --neu-muted:     #8b93a4;   /* captions */

  /* ---- bold accent ---- */
  --neu-red:       #ff3d5a;
  --neu-coral:     #ff7a59;
  --neu-grad:      linear-gradient(135deg, #ff3d5a 0%, #ff7a59 100%);
  --neu-red-soft:  rgba(255, 61, 90, 0.10);

  /* ---- shadows ---- */
  --neu-flat:   -8px -8px 18px var(--neu-light), 8px 8px 18px var(--neu-dark);
  --neu-flat-sm:-5px -5px 12px var(--neu-light), 5px 5px 12px var(--neu-dark);
  --neu-inset:  inset 5px 5px 11px var(--neu-dark), inset -5px -5px 11px var(--neu-light);
  --neu-press:  inset 3px 3px 7px var(--neu-dark), inset -3px -3px 7px var(--neu-light);

  position: relative;
  background: var(--neu-bg);
  color: var(--neu-body);
  font-family: var(--font-body);
  overflow-x: clip;
}

/* faint warm wash so the grey never feels flat/dead */
.neu::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 520px at 85% -5%, rgba(255, 122, 89, 0.10), transparent 60%),
    radial-gradient(900px 500px at -5% 12%, rgba(255, 61, 90, 0.07), transparent 55%);
  z-index: 0;
}
.neu > * { position: relative; z-index: 1; }

/* ---------- type ---------- */
.neu h1, .neu h2, .neu h3, .neu h4, .neu h5 {
  font-family: var(--font-display);
  color: var(--neu-ink);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.neu h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.08; }
.neu h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); font-weight: 700; line-height: 1.14; }
.neu h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 700; }
.neu .neu-lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.65; color: var(--neu-body); }
.neu .neu-grad-text {
  background: var(--neu-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- layout ---------- */
/* content-visibility lets the browser skip layout+paint for sections still
   off-screen — a big scroll-perf win on these long, shadow-heavy pages. The
   intrinsic-size estimate keeps the scrollbar stable. */
.neu-section { padding: clamp(56px, 9vw, 104px) 0; content-visibility: auto; contain-intrinsic-size: auto 600px; }
.neu-section-sm { padding: clamp(36px, 5vw, 56px) 0; }

/* Compact vertical rhythm for the niche/AI landing pages — ~40% less section
   padding so the page reads tighter without touching the other pages. */
.neu-compact .neu-section { padding: clamp(34px, 5.4vw, 62px) 0; }
.neu-compact .neu-section-sm { padding: clamp(22px, 3vw, 34px) 0; }
.neu-compact .neu-hero { padding-bottom: clamp(34px, 5vw, 58px); }
.neu-compact .neu-head { margin-bottom: clamp(24px, 3.5vw, 36px); }
.neu-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.neu-head .neu-lead { margin-top: 16px; }

.neu-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--neu-red);
  margin-bottom: 14px;
}

/* ---------- surfaces ---------- */
.neu-card {
  background: var(--neu-raised);
  border-radius: 26px;
  box-shadow: var(--neu-flat);
  transition: transform .25s ease, box-shadow .25s ease;
}
/* Hover lifts via transform only (GPU-composited, no repaint). Swapping the
   big blurred box-shadow on hover forces an expensive repaint, so we don't. */
.neu-card { transition: transform .2s ease; }
.neu-card:hover { transform: translateY(-4px); }
.neu-inset { background: var(--neu-sunken); border-radius: 22px; box-shadow: var(--neu-inset); }

/* ---------- badges / pills ---------- */
.neu-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--neu-raised); box-shadow: var(--neu-flat-sm);
  font-size: 0.82rem; font-weight: 600; color: var(--neu-red);
}
.neu-badge .neu-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--neu-grad); box-shadow: 0 0 0 4px var(--neu-red-soft); }

/* ---------- buttons ---------- */
.neu-btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 16px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  border: 0; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
.neu-btn:active { transform: scale(.97); }
/* Shine sweep on hover — same effect as the public .btn, sits above the
   button's own background (red gradient or soft grey) so it reads on both. */
.neu-btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.38) 48%, transparent 100%);
  transform: translateX(-120%);
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.neu-btn:hover::before { transform: translateX(120%); }
@media (prefers-reduced-motion: reduce) {
  .neu-btn::before { transition: none; }
}
.neu-btn-primary {
  background: var(--neu-grad); color: #fff;
  box-shadow: 0 12px 24px rgba(255, 61, 90, .32), -4px -4px 10px var(--neu-light);
}
.neu-btn-primary:hover { color: #fff; filter: brightness(1.05); box-shadow: 0 16px 30px rgba(255, 61, 90, .42), -4px -4px 10px var(--neu-light); }
.neu-btn-ghost {
  background: var(--neu-raised); color: var(--neu-ink);
  box-shadow: var(--neu-flat-sm);
}
.neu-btn-ghost:hover { color: var(--neu-red); }
.neu-btn-lg { padding: 17px 36px; font-size: 1.05rem; }

/* ---------- icon badge ---------- */
.neu-ico {
  width: 52px; height: 52px; flex: 0 0 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px; background: var(--neu-sunken); box-shadow: var(--neu-press);
  color: var(--neu-red);
}
.neu-ico svg { width: 22px; height: 22px; }

/* ---------- HERO ---------- */
.neu-hero { padding: clamp(48px, 7vw, 84px) 0 clamp(56px, 8vw, 96px); }
.neu-hero .neu-lead { margin: 22px 0 0; max-width: 540px; }
.neu-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

.neu-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; max-width: 520px; }
.neu-stat { padding: 18px 12px; border-radius: 20px; background: var(--neu-raised); box-shadow: var(--neu-flat-sm); text-align: center; }
.neu-stat-value { font-family: var(--font-display); font-size: 1.55rem; font-weight: 800; color: var(--neu-red); line-height: 1; }
.neu-stat-label { font-size: 0.74rem; color: var(--neu-muted); margin-top: 6px; }

/* hero mockup */
.neu-mock-wrap { position: relative; }
.neu-mock {
  background: var(--neu-raised); border-radius: 34px; padding: 26px;
  box-shadow: var(--neu-flat);
  border-top: 1px solid rgba(255,255,255,.55);
}
.neu-mock-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.neu-mock-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--neu-sunken); box-shadow: var(--neu-press); display: flex; align-items: center; justify-content: center; color: var(--neu-body); }
.neu-mock-name { font-weight: 700; color: var(--neu-ink); font-size: .95rem; }
.neu-mock-sub { font-size: .76rem; color: var(--neu-muted); }
.neu-bubble { padding: 14px 16px; border-radius: 18px; font-size: .9rem; line-height: 1.5; margin-bottom: 12px; max-width: 84%; }
.neu-bubble-in { background: var(--neu-sunken); box-shadow: var(--neu-press); border-top-left-radius: 4px; color: var(--neu-body); }
.neu-bubble-ai { background: var(--neu-red-soft); border: 1px solid rgba(255,61,90,.22); border-top-right-radius: 4px; margin-left: auto; color: var(--neu-ink); }
.neu-bubble-ai .neu-ai-tag { display: flex; align-items: center; gap: 7px; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--neu-red); margin-bottom: 5px; }
.neu-bubble-ai .neu-ai-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--neu-red); }
.neu-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 15px; border-radius: 16px; background: var(--neu-raised);
  box-shadow: var(--neu-flat-sm); font-weight: 700; font-size: .85rem; color: var(--neu-ink);
}
.neu-chip svg { width: 18px; height: 18px; }
.neu-chip-tl { top: -16px; right: -10px; }
.neu-chip-br { bottom: -22px; left: -8px; }
.neu-chip .neu-chip-up { color: var(--neu-red); }
.neu-chip .neu-chip-ok { color: #16a34a; }

/* ---------- trust logo strip ---------- */
.neu-trust { text-align: center; }
.neu-trust-label { font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--neu-muted); margin-bottom: 22px; }
.neu-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.neu-logo { padding: 12px 22px; border-radius: 14px; background: var(--neu-raised); box-shadow: var(--neu-flat-sm); font-family: var(--font-display); font-weight: 700; letter-spacing: .08em; color: var(--neu-muted); font-size: .9rem; }

/* ---------- generic feature/problem grid ---------- */
.neu-grid { display: grid; gap: 22px; }
.neu-grid-4 { grid-template-columns: repeat(4, 1fr); }
.neu-grid-3 { grid-template-columns: repeat(3, 1fr); }
.neu-grid-2 { grid-template-columns: repeat(2, 1fr); }
.neu-tile { padding: 32px; }
.neu-tile h3 { margin: 18px 0 10px; font-size: 1.2rem; }
.neu-tile p { color: var(--neu-body); margin: 0; }

/* problem cards — larger, heavier title + roomier body */
.neu-prob h3 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.neu-prob p { font-size: 1.02rem; line-height: 1.6; }
.neu-tile-row { display: flex; gap: 18px; align-items: flex-start; padding: 26px; }
.neu-tile-row h5 { font-family: var(--font-display); font-weight: 700; color: var(--neu-ink); margin: 0 0 5px; font-size: 1.02rem; }
.neu-tile-row p { font-size: .9rem; margin: 0; color: var(--neu-body); }

/* problem big stat */
.neu-bigstat { display: inline-flex; align-items: baseline; gap: 12px; padding: 18px 28px; border-radius: 22px; background: var(--neu-sunken); box-shadow: var(--neu-inset); margin-top: 20px; }
.neu-bigstat b { font-family: var(--font-display); font-size: 2rem; color: var(--neu-red); line-height: 1; }
.neu-bigstat span { color: var(--neu-body); }

/* without / with comparison */
.neu-compare h3 { margin: 14px 0 18px; }
.neu-compare-line { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-top: 1px solid rgba(0,0,0,.05); font-size: .95rem; }
.neu-compare-line svg { width: 19px; height: 19px; flex: 0 0 19px; margin-top: 1px; }
.neu-compare.is-neg .neu-eyebrow { color: var(--neu-muted); }
.neu-compare.is-pos { background: linear-gradient(150deg, #ff3d5a 0%, #ff7a59 100%); box-shadow: 0 22px 44px rgba(255,61,90,.28); }
.neu-compare.is-pos .neu-eyebrow, .neu-compare.is-pos h3, .neu-compare.is-pos .neu-compare-line { color: #fff; }
.neu-compare.is-pos .neu-compare-line { border-top-color: rgba(255,255,255,.22); }
.neu-compare.is-pos .neu-compare-line svg { color: #fff; }
.neu-x { color: var(--neu-red); }
.neu-check { color: #16a34a; }

/* ---------- 3-step flow ---------- */
.neu-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.neu-step { text-align: center; }
.neu-step-num {
  width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--neu-grad); color: #fff; font-family: var(--font-display);
  font-weight: 800; font-size: 1.4rem; box-shadow: 0 12px 22px rgba(255,61,90,.3), -4px -4px 10px var(--neu-light);
}
.neu-step h5 { font-family: var(--font-display); font-weight: 700; color: var(--neu-ink); font-size: 1.1rem; margin: 0 0 8px; }
.neu-step p { font-size: .92rem; margin: 0; }

/* ---------- outcomes / metric tiles ---------- */
.neu-metric { text-align: center; padding: 36px 24px; }
.neu-metric-value { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3rem); font-weight: 800; }
.neu-metric-label { font-weight: 700; color: var(--neu-ink); margin: 6px 0 8px; }
.neu-metric p { font-size: .92rem; margin: 0; }

/* ---------- case study / proof ---------- */
.neu-proof { padding: clamp(34px, 5vw, 56px); }
.neu-proof-quote { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.5rem); font-style: italic; line-height: 1.5; color: var(--neu-ink); }
.neu-proof-author { display: flex; align-items: center; gap: 16px; margin-top: 26px; }
.neu-proof-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--neu-sunken); box-shadow: var(--neu-press); display:flex; align-items:center; justify-content:center; color: var(--neu-body); font-weight: 700; font-family: var(--font-display); flex: 0 0 60px; }
.neu-proof-name { font-weight: 700; color: var(--neu-ink); }
.neu-proof-role { font-size: .88rem; color: var(--neu-muted); }
.neu-proof-metric { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border-radius: 22px; background: var(--neu-sunken); box-shadow: var(--neu-inset); }
.neu-proof-metric span { color: var(--neu-body); font-weight: 500; }
.neu-proof-metric b { font-family: var(--font-display); font-size: 1.7rem; color: var(--neu-red); }

/* ---------- testimonial cards ---------- */
.neu-quote { padding: 30px; }
.neu-quote p { color: var(--neu-ink); font-size: 1rem; line-height: 1.6; margin: 0 0 18px; }
.neu-quote-meta { font-weight: 600; color: var(--neu-body); font-size: .9rem; }

/* ---------- CTA band ---------- */
.neu-cta { padding: clamp(48px, 7vw, 84px) clamp(28px, 5vw, 72px); text-align: center; border-radius: 40px; }
.neu-cta h2 { margin-bottom: 14px; }
.neu-cta .neu-lead { max-width: 560px; margin: 0 auto; }
.neu-cta-form { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 560px; margin: 30px auto 0; }
.neu-input {
  flex: 1 1 240px; height: 58px; padding: 0 22px; border-radius: 16px; border: 0;
  background: var(--neu-sunken); box-shadow: var(--neu-press);
  font-family: var(--font-body); font-size: 1rem; color: var(--neu-ink);
}
.neu-input::placeholder { color: var(--neu-muted); }
.neu-input:focus { outline: none; box-shadow: var(--neu-press), 0 0 0 3px var(--neu-red-soft); }
.neu-cta-trust { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; margin-top: 22px; font-size: .85rem; font-weight: 600; color: var(--neu-body); }
.neu-cta-trust span { display: inline-flex; align-items: center; gap: 7px; }
.neu-cta-trust svg { width: 16px; height: 16px; color: #16a34a; }

/* ---------- ROI section reskin (overrides roi.css inside .neu) ----------
   Full soft-UI calculator: light inset result box, dark readable text,
   big crimson number, red-thumb sliders. No low-contrast white text. */
.neu .roi-section { padding: clamp(56px, 9vw, 104px) 0; background: transparent; border: 0; }
.neu .roi-section-eyebrow { color: var(--neu-red); letter-spacing: .18em; }
.neu .roi-section-title { font-family: var(--font-display); color: var(--neu-ink); font-size: clamp(1.9rem, 3.6vw, 2.75rem); font-weight: 700; }
.neu .roi-section-desc { color: var(--neu-body); }

.neu .roi-card { background: var(--neu-raised); box-shadow: var(--neu-flat); border: 0; border-radius: 34px; padding: clamp(28px, 4vw, 48px); }

/* sliders */
.neu .roi-row-label { color: var(--neu-body); font-weight: 600; font-size: .95rem; }
.neu .roi-row-value { color: var(--neu-red); font-weight: 800; font-size: 1.15rem; }
.neu .range-input { accent-color: var(--neu-red); height: 6px; }
.neu .roi-range-bounds { color: var(--neu-muted); }
/* Bootstrap .form-range paints the thumb blue explicitly — override to red */
.neu .form-range::-webkit-slider-thumb { background-color: var(--neu-red); }
.neu .form-range::-webkit-slider-thumb:active { background-color: var(--neu-coral); }
.neu .form-range::-moz-range-thumb { background-color: var(--neu-red); border: 0; }
.neu .form-range:focus::-webkit-slider-thumb { box-shadow: 0 0 0 4px var(--neu-red-soft); }
.neu .form-range:focus::-moz-range-thumb { box-shadow: 0 0 0 4px var(--neu-red-soft); }

/* before / after / extra strip */
.neu .roi-stats { background: var(--neu-sunken); box-shadow: var(--neu-inset); border: 0; border-radius: 20px; padding: 20px; }
.neu .roi-stat-label, .neu .roi-stat-unit { color: var(--neu-muted); }
.neu .roi-stat-value { color: var(--neu-ink); }
.neu .roi-stat-before { color: var(--neu-red); }
.neu .roi-stat-after  { color: #16a34a; }

/* result box — light neumorphic, dark text, crimson number */
.neu .roi-result-box {
  background: var(--neu-raised); color: var(--neu-body);
  border-radius: 28px; box-shadow: var(--neu-flat);
  border: 0; padding: 36px 30px; text-align: center;
}
.neu .roi-result-label { color: var(--neu-red); opacity: 1; font-weight: 700; letter-spacing: .14em; }
.neu .roi-result-number { color: #c20e36; font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 3.6rem); letter-spacing: -2px; }
.neu .roi-result-sub { color: var(--neu-body); opacity: 1; }
.neu .roi-divider { border-color: rgba(27,31,42,.10); }
.neu .roi-fee-label { color: var(--neu-muted); opacity: 1; }
.neu .roi-fee-amount { color: var(--neu-ink); }
.neu .roi-fee-setup, .neu .roi-fee-plan { color: var(--neu-muted); opacity: 1; }
.neu .roi-ratio { color: #c20e36; font-family: var(--font-display); }
.neu .roi-disclaimer { color: var(--neu-muted); }

/* ---------- PRICING: billing toggle (pill) ---------- */
.neu .billing-toggle { background: var(--neu-sunken); box-shadow: var(--neu-inset); border: 0; border-radius: 999px; padding: 6px; gap: 6px; }
.neu .billing-toggle .btn { border: 0 !important; border-radius: 999px !important; padding: 11px 26px; font-weight: 600; color: var(--neu-body); background: transparent; }
.neu .billing-toggle .btn.active { border-radius: 999px !important; background: var(--neu-grad); color: #fff; box-shadow: 0 8px 18px rgba(255,61,90,.32); }
.neu .billing-toggle .savings-badge { display: inline-block; margin-left: 8px; padding: 3px 10px; border-radius: 999px; font-size: .66rem; font-weight: 700; background: rgba(255,255,255,.28); color: inherit; vertical-align: middle; }

/* ---------- PRICING: plan cards ---------- */
.neu-plan { padding: 34px 30px; display: flex; flex-direction: column; position: relative; height: 100%; }
.neu-plan-featured { box-shadow: var(--neu-flat), inset 0 0 0 2px var(--neu-red); }
.neu-plan-badge { position: absolute; top: 20px; right: 20px; padding: 6px 14px; border-radius: 999px; background: var(--neu-grad); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .04em; box-shadow: 0 6px 14px rgba(255,61,90,.3); }
.neu-plan-name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--neu-ink); }
.neu-plan-desc { color: var(--neu-body); font-size: .92rem; margin: 8px 0 0; min-height: 42px; }
.neu-plan-price-wrap { margin: 22px 0 4px; display: flex; align-items: baseline; gap: 8px; }
.neu-plan-price { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--neu-ink); letter-spacing: -1px; }
.neu-plan-period { color: var(--neu-muted); font-size: .9rem; }
.neu-plan-setup { color: var(--neu-muted); font-size: .82rem; }
.neu-plan-divider { height: 1px; background: rgba(27,31,42,.08); margin: 22px 0; }
.neu-plan-features { flex: 1 1 auto; }
.neu-plan-features ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.neu-plan-features li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--neu-body); }
.neu-plan-features li .check { display: inline-flex; align-items: center; justify-content: center; width: 19px; height: 19px; flex: 0 0 19px; border-radius: 50%; background: var(--neu-red-soft); color: var(--neu-red); font-size: .7rem; font-weight: 800; margin-top: 1px; }
.neu-plan .neu-btn { margin-top: 26px; width: 100%; }

/* ---------- PRICING: FAQ accordion (keeps pricing.js .open behaviour) ---------- */
.neu .faq-item { background: var(--neu-raised); box-shadow: var(--neu-flat-sm); border: 0; border-radius: 18px; margin-bottom: 14px; overflow: hidden; }
.neu .faq-question { color: var(--neu-ink); font-family: var(--font-display); font-weight: 600; padding: 18px 22px; }
.neu .faq-question .faq-icon { color: var(--neu-red); }
.neu .faq-answer { color: var(--neu-body); padding: 0 22px; }
.neu .faq-item.open .faq-answer { padding-bottom: 20px; }
.neu .eyebrow-sm { color: var(--neu-red); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; }

/* ---------- forms (contact) ---------- */
.neu .form-label { color: var(--neu-ink); font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.neu .form-control, .neu .form-select {
  background: #e9edf3; border: 1px solid rgba(27,31,42,.05);
  box-shadow: inset 2px 2px 5px var(--neu-dark), inset -2px -2px 5px var(--neu-light);
  border-radius: 12px; padding: 11px 15px; color: var(--neu-ink); font-size: .98rem;
  min-height: 46px; transition: box-shadow .18s ease;
}
.neu textarea.form-control { min-height: 120px; resize: vertical; }
.neu .form-control::placeholder { color: var(--neu-muted); }
.neu .form-control:focus, .neu .form-select:focus {
  background: #e9edf3; color: var(--neu-ink); border-color: transparent;
  box-shadow: inset 2px 2px 5px var(--neu-dark), inset -2px -2px 5px var(--neu-light), 0 0 0 3px var(--neu-red-soft);
  outline: none;
}
/* calmer shadow for large cards (contact) so the white edge isn't harsh */
.neu-soft { box-shadow: var(--neu-flat-sm) !important; }
.neu-form-card { padding: clamp(24px, 4vw, 38px); }
.neu-benefit { display: flex; gap: 14px; align-items: center; }
.neu-benefit .neu-ico { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 13px; }
.neu-benefit .neu-ico svg { width: 19px; height: 19px; }
.neu-benefit span { color: var(--neu-ink); font-weight: 500; font-size: .98rem; }

/* ---------- public navbar on marketing pages: primary = red ---------- */
.site-header .nav-link-salespal { color: #1b1f2a; }
.site-header .nav-link-salespal::after { background: #ff3d5a; }
.site-header .nav-link-salespal:hover,
.site-header .nav-link-salespal.active { color: #ff3d5a; }
.site-header a.text-dark:hover { color: #ff3d5a !important; }
.site-header .btn-primary {
  --bs-btn-bg: #ff3d5a; --bs-btn-border-color: #ff3d5a;
  --bs-btn-hover-bg: #e0123c; --bs-btn-hover-border-color: #e0123c;
  --bs-btn-active-bg: #c20e36; --bs-btn-active-border-color: #c20e36;
  background-image: linear-gradient(135deg, #ff3d5a 0%, #ff7a59 100%);
  border: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 991px) {
  .neu-grid-4, .neu-grid-3, .neu-grid-2 { grid-template-columns: 1fr 1fr; }
  .neu-steps { grid-template-columns: 1fr 1fr; }
  .neu-stat-row { margin-left: auto; margin-right: auto; }
}
@media (max-width: 575px) {
  .neu-grid-4, .neu-grid-3, .neu-grid-2, .neu-steps { grid-template-columns: 1fr; }
  .neu-stat-row { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .neu-stat-value { font-size: 1.25rem; }
  .neu-btn { width: 100%; }
  .neu-chip-tl { right: 4px; }
  .neu-chip-br { left: 4px; }
}
