/* Complyzing marketing site — clean modern SaaS styling (Vanta-inspired),
   layered on top of the Sneat design system (Public Sans, brand indigo). */

:root {
  --mkt-primary: #6062E8;      /* aligns with Sneat brand indigo */
  --mkt-primary-dark: #4b4ddb;
  --mkt-ink: #2f2b3d;          /* headings */
  --mkt-body: #5a5670;         /* body text */
  --mkt-muted: #8a879e;
  --mkt-line: #e7e7f0;
  --mkt-bg-soft: #f6f6fb;
  --mkt-ink-900: #16142a;      /* footer / dark bands */
  --mkt-radius: 14px;
  --mkt-shadow: 0 10px 40px rgba(47, 43, 61, 0.08);
  --mkt-shadow-sm: 0 4px 18px rgba(47, 43, 61, 0.06);
}

body.mkt {
  font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--mkt-body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.mkt h1, .mkt h2, .mkt h3, .mkt h4, .mkt h5 { color: var(--mkt-ink); font-weight: 700; letter-spacing: -0.02em; }
.mkt p { line-height: 1.7; }
.mkt a { text-decoration: none; }

/* --- Layout helpers ------------------------------------------------------- */
.mkt-section { padding: 6rem 0; }
.mkt-section-sm { padding: 4rem 0; }
.mkt-bg-soft { background: var(--mkt-bg-soft); }
.mkt-container { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.mkt-eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--mkt-primary);
  background: rgba(96, 98, 232, .09); padding: .35rem .8rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.mkt-lead { font-size: 1.15rem; color: var(--mkt-body); max-width: 620px; }
.mkt-section-title { font-size: 2.25rem; line-height: 1.15; }
@media (max-width: 767px) { .mkt-section-title { font-size: 1.7rem; } .mkt-section { padding: 3.5rem 0; } }

/* --- Navbar --------------------------------------------------------------- */
.mkt-nav {
  position: sticky; top: 0; z-index: 1030; background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--mkt-line);
}
.mkt-nav .navbar-brand { font-weight: 800; font-size: 1.35rem; color: var(--mkt-ink); letter-spacing: -.03em; }
.mkt-nav .navbar-brand .dot { color: var(--mkt-primary); }
.mkt-nav .nav-link { color: var(--mkt-ink) !important; font-weight: 600; padding: .5rem 1rem !important; }
.mkt-nav .nav-link:hover { color: var(--mkt-primary) !important; }

/* --- Buttons -------------------------------------------------------------- */
.btn-mkt {
  border-radius: 10px; font-weight: 600; padding: .7rem 1.4rem; border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn-mkt-primary { background: var(--mkt-primary); color: #fff; box-shadow: 0 6px 18px rgba(96,98,232,.32); }
.btn-mkt-primary:hover { background: var(--mkt-primary-dark); color: #fff; transform: translateY(-1px); }
.btn-mkt-ghost { background: #fff; color: var(--mkt-ink); border-color: var(--mkt-line); }
.btn-mkt-ghost:hover { border-color: var(--mkt-primary); color: var(--mkt-primary); }
.btn-mkt-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-mkt-light:hover { background: #fff; color: var(--mkt-primary); }
.btn-mkt-white { background: #fff; color: var(--mkt-primary); }
.btn-mkt-white:hover { transform: translateY(-1px); color: var(--mkt-primary-dark); }
.btn-lg-mkt { padding: .85rem 1.7rem; font-size: 1.02rem; }

/* --- Hero ----------------------------------------------------------------- */
.mkt-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(96,98,232,.16), transparent 60%),
    radial-gradient(700px 380px at 5% 0%, rgba(129,132,255,.10), transparent 55%),
    #fff;
  padding: 5.5rem 0 4.5rem;
}
.mkt-hero h1 { font-size: 3.35rem; line-height: 1.08; }
@media (max-width: 991px) { .mkt-hero h1 { font-size: 2.4rem; } }
.mkt-hero .mkt-lead { font-size: 1.2rem; }
.mkt-hero-card {
  border-radius: 18px; box-shadow: var(--mkt-shadow); border: 1px solid var(--mkt-line);
  overflow: hidden; background: #fff;
}
.mkt-hero-window { background: #fff; }
.mkt-hero-window .dots { padding: .6rem .85rem; border-bottom: 1px solid var(--mkt-line); }
.mkt-hero-window .dots span { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 6px; }

/* --- Logo cloud ----------------------------------------------------------- */
.mkt-logos { opacity: .75; }
.mkt-logos .logo-item { font-weight: 800; font-size: 1.15rem; color: var(--mkt-muted); letter-spacing: -.02em; }

/* --- Feature cards -------------------------------------------------------- */
.mkt-feature {
  background: #fff; border: 1px solid var(--mkt-line); border-radius: var(--mkt-radius);
  padding: 1.75rem; height: 100%; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.mkt-feature:hover { transform: translateY(-3px); box-shadow: var(--mkt-shadow); border-color: transparent; }
.mkt-feature .icon {
  width: 52px; height: 52px; border-radius: 12px; display: inline-flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1rem;
}
.mkt-ico-primary { background: rgba(96,98,232,.12); color: var(--mkt-primary); }
.mkt-ico-success { background: rgba(40,199,111,.14); color: #28c76f; }
.mkt-ico-warning { background: rgba(255,159,67,.16); color: #ff9f43; }
.mkt-ico-danger  { background: rgba(234,84,85,.14);  color: #ea5455; }
.mkt-ico-info    { background: rgba(0,207,232,.14);  color: #00cfe8; }
.mkt-feature h5 { margin-bottom: .5rem; }
.mkt-feature p { margin-bottom: 0; font-size: .95rem; }

/* --- Split feature section ------------------------------------------------ */
.mkt-split-media {
  border-radius: 16px; border: 1px solid var(--mkt-line); box-shadow: var(--mkt-shadow-sm);
  background: var(--mkt-bg-soft); overflow: hidden;
}
.mkt-check { color: #28c76f; margin-right: .6rem; }
.mkt-list-check { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.mkt-list-check li { display: flex; align-items: flex-start; margin-bottom: .75rem; color: var(--mkt-ink); font-weight: 500; }

/* --- Stats band ----------------------------------------------------------- */
.mkt-stat h3 { font-size: 2.5rem; color: var(--mkt-primary); }

/* --- Steps ---------------------------------------------------------------- */
.mkt-step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--mkt-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 1rem;
}

/* --- Pricing -------------------------------------------------------------- */
.mkt-plan {
  background: #fff; border: 1px solid var(--mkt-line); border-radius: 16px; padding: 2rem; height: 100%;
  display: flex; flex-direction: column;
}
.mkt-plan.featured { border-color: var(--mkt-primary); box-shadow: var(--mkt-shadow); position: relative; }
.mkt-plan .plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--mkt-primary); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: .3rem .8rem; border-radius: 100px;
}
.mkt-plan h4 { margin-bottom: .35rem; }
.mkt-plan .plan-price { font-size: 1.35rem; font-weight: 700; color: var(--mkt-ink); }
.mkt-plan .plan-features { list-style: none; padding: 0; margin: 1.5rem 0; flex-grow: 1; }
.mkt-plan .plan-features li { display: flex; align-items: flex-start; margin-bottom: .7rem; font-size: .95rem; }

/* --- Comparison table ----------------------------------------------------- */
.mkt-compare th, .mkt-compare td { padding: .9rem 1rem; border-bottom: 1px solid var(--mkt-line); vertical-align: middle; }
.mkt-compare th { color: var(--mkt-ink); font-weight: 700; }
.mkt-compare .yes { color: #28c76f; font-size: 1.15rem; }
.mkt-compare .no  { color: var(--mkt-muted); }

/* --- CTA band ------------------------------------------------------------- */
.mkt-cta {
  background: linear-gradient(120deg, var(--mkt-primary), #8184ff);
  border-radius: 22px; color: #fff; padding: 3.5rem; text-align: center;
}
.mkt-cta h2 { color: #fff; }
.mkt-cta p { color: rgba(255,255,255,.9); }

/* --- FAQ ------------------------------------------------------------------ */
.mkt-faq .accordion-item { border: 1px solid var(--mkt-line); border-radius: 12px !important; margin-bottom: .75rem; overflow: hidden; }
.mkt-faq .accordion-button { font-weight: 600; color: var(--mkt-ink); }
.mkt-faq .accordion-button:not(.collapsed) { background: var(--mkt-bg-soft); color: var(--mkt-primary); box-shadow: none; }

/* --- Contact -------------------------------------------------------------- */
.mkt-form-card { background: #fff; border: 1px solid var(--mkt-line); border-radius: 16px; box-shadow: var(--mkt-shadow-sm); padding: 2.25rem; }
.mkt-form-card .form-control, .mkt-form-card .form-select { padding: .7rem .9rem; border-radius: 10px; }

/* --- Footer --------------------------------------------------------------- */
.mkt-footer { background: var(--mkt-ink-900); color: #b8b6c9; padding: 4rem 0 2rem; }
.mkt-footer h6 { color: #fff; font-weight: 700; margin-bottom: 1rem; letter-spacing: .02em; }
.mkt-footer a { color: #b8b6c9; display: block; padding: .3rem 0; }
.mkt-footer a:hover { color: #fff; }
.mkt-footer .brand { color: #fff; font-weight: 800; font-size: 1.3rem; }
.mkt-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem; color: var(--mkt-muted); }

/* --- Alert ---------------------------------------------------------------- */
.mkt-alert-success { background: rgba(40,199,111,.12); border: 1px solid rgba(40,199,111,.3); color: #1f9d57; border-radius: 12px; padding: 1rem 1.25rem; }
