/* ==========================================================================
   Personeo.ai landing — static rebuild for new.personeobytechweb.com
   Bootstrap 5.3 (CDN) supplies reset + grid; everything visual is here.

   Brand twist: the live site uses a flat #6212e5 purple. Here the primary
   is a three-stop indigo -> violet -> orchid sweep, so it reads as the same
   family but is visibly its own thing.
   ========================================================================== */

:root {
  /* Brand — the twist */
  --b-deep:   #4c1fd0;
  --b-mid:    #7c3aed;
  --b-light:  #a855f7;
  --b-sweep:  linear-gradient(135deg, var(--b-deep) 0%, var(--b-mid) 55%, var(--b-light) 100%);
  --b-sweep-r: linear-gradient(96deg, var(--b-mid), var(--b-light));

  /* Supporting accents (kept from the brand) */
  --a-yellow: #ffce21;
  --a-pink:   #e31266;
  --a-green:  #12de74;
  --a-blue:   #1212e0;
  --a-cyan:   #22d3ee;

  /* Ink */
  --ink:      #111827;
  --ink-2:    #4b5563;
  --ink-3:    #6b7280;
  --ink-4:    #9ca3af;

  /* Surfaces */
  --paper:    #ffffff;
  --paper-2:  #f7f7fa;
  --paper-3:  #eef0f4;
  --navy:     #0d1526;
  --navy-2:   #131c30;

  --line:     #e6e8ee;
  --line-2:   rgba(255,255,255,.14);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(17,24,39,.06);
  --sh-md: 0 8px 24px -12px rgba(17,24,39,.18);
  --sh-lg: 0 24px 60px -28px rgba(17,24,39,.32);
  --sh-brand: 0 14px 34px -14px rgba(108,42,224,.7);

  --ease: cubic-bezier(.22,.86,.36,1);

  --font-display: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.028em;
  color: var(--ink);
  margin: 0;
}

a { text-decoration: none; color: inherit; transition: color .16s var(--ease), opacity .16s var(--ease); }

.tw { /* the twist, as text */
  background: var(--b-sweep-r);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sec { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }

.sec-head { text-align: center; max-width: 780px; margin: 0 auto clamp(2.2rem, 5vw, 3.4rem); }
.sec-head h2 { font-size: clamp(1.9rem, 4.1vw, 2.85rem); line-height: 1.12; }
.sec-head p { color: var(--ink-3); margin: .9rem auto 0; max-width: 60ch; font-size: 1.02rem; }

/* ---------- Badge pill above section headings ---------- */

.badge-x {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  padding: .34rem .82rem;
  border-radius: var(--r-pill);
  background: rgba(124,58,237,.11);
  color: var(--b-mid);
  font-family: var(--font-display);
  font-size: .795rem;
  font-weight: 600;
  margin-bottom: 1.05rem;
}
.badge-x .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--a-green); }

/* ---------- Buttons ---------- */

.btn-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  padding: .82rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform .15s var(--ease), filter .16s var(--ease),
              box-shadow .16s var(--ease), background-color .16s var(--ease);
}
.btn-x:active { transform: translateY(1px); }

.btn-brand {
  background: var(--b-sweep);
  color: #fff;
  box-shadow: var(--sh-brand);
}
.btn-brand:hover { color: #fff; filter: brightness(1.08); }

.btn-white { background: #fff; color: var(--b-deep); box-shadow: 0 10px 30px -12px rgba(0,0,0,.4); }
.btn-white:hover { color: var(--b-deep); filter: brightness(.98); }

.btn-outline-w {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
  padding: .42rem 1rem;
  font-size: .86rem;
}
.btn-outline-w:hover { color: #fff; background: rgba(255,255,255,.14); }

.btn-sm-x { padding: .5rem 1.05rem; font-size: .86rem; }

/* ---------- Navigation ---------- */

.nav-x {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  padding: 1.05rem 0;
}

.nav-inner { display: flex; align-items: center; gap: 1.6rem; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: #fff;
  letter-spacing: -.03em;
  flex: none;
}
.logo-mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  flex: none;
}
.logo-mark svg { width: 15px; height: 15px; color: var(--b-mid); }

.nav-links { display: none; align-items: center; gap: .25rem; margin-left: .6rem; }
@media (min-width: 992px) { .nav-links { display: flex; } }

.nav-links a {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  padding: .42rem .72rem;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  gap: .26rem;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.13); }
.nav-links svg { opacity: .75; }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: .7rem; }
.nav-right .login {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
}
.nav-right .login:hover { opacity: .8; color: #fff; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 8.5rem 0 clamp(4rem, 9vw, 7rem);
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(180deg,
      var(--b-deep) 0%,
      var(--b-mid) 42%,
      #9f7bf0 74%,
      #cfc2f7 100%);
}

/* decorative bokeh, purely ornamental */
.hero .orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  pointer-events: none;
}
.hero .orb-1 { width: 74px; height: 74px; top: 108px; left: 7%; }
.hero .orb-2 { width: 9px;  height: 9px; top: 152px; left: 12.5%; background: rgba(255,255,255,.4); border: 0; }
.hero .orb-3 {
  width: 15px; height: 15px; top: 47%; left: 21%;
  transform: rotate(45deg);
  border-radius: 3px;
  background: rgba(255,255,255,.32);
  border: 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .62rem;
  padding: .3rem .3rem .3rem .3rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
  font-size: .84rem;
  margin-bottom: 1.8rem;
}
.hero-pill .tag {
  background: #fff;
  color: var(--b-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  padding: .17rem .68rem;
  border-radius: var(--r-pill);
}
.hero-pill .txt { padding-right: .85rem; display: inline-flex; align-items: center; gap: .5rem; color: #fff; }

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 1.15rem;
}

.hero .lede {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: rgba(255,255,255,.94);
  margin: 0 auto 2.3rem;
}
.hero .lede b { font-weight: 700; border-bottom: 2px solid rgba(255,255,255,.75); padding-bottom: 1px; }

/* ---------- Logo band ---------- */

.logos { background: var(--paper-3); padding: clamp(2.4rem, 5vw, 3.6rem) 0; }
.logos p { text-align: center; color: var(--ink-3); font-size: .95rem; margin: 0 0 1.9rem; }
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 4vw, 3.4rem);
  flex-wrap: wrap;
  opacity: .58;
  filter: grayscale(1);
}
.logo-row .wm {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #3f4a55;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.logo-row .wm.boxed {
  background: #6b7280;
  color: #fff;
  padding: .16rem .6rem;
  border-radius: 3px;
}
.logo-row .wm.serif { font-family: "Literata", Georgia, serif; font-weight: 600; letter-spacing: 0; }

/* ---------- Try it now ---------- */

.demo {
  background: linear-gradient(125deg, #d9ccff 0%, #cfc9fb 42%, #b4cbf1 100%);
  padding: clamp(3.2rem, 7vw, 5.2rem) 0 clamp(3.6rem, 8vw, 5.6rem);
}

.cat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background: rgba(255,255,255,.42);
  border-radius: var(--r-lg);
  padding: 1.05rem;
  margin-bottom: 1.05rem;
}
@media (min-width: 768px) { .cat-row { grid-template-columns: 130px repeat(2, 1fr); } }
@media (min-width: 1200px) { .cat-row { grid-template-columns: 130px repeat(4, 1fr); } }

.cat-name {
  display: flex;
  align-items: center;
  gap: .68rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.cat-name::before {
  content: "";
  width: 3px; height: 22px;
  border-radius: 2px;
  background: var(--b-mid);
  flex: none;
}

.rp-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: .85rem;
  box-shadow: var(--sh-sm);
  position: relative;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.rp-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.rp-top { display: flex; gap: .68rem; align-items: flex-start; }

.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  color: #fff;
  position: relative;
}

.beta {
  position: absolute;
  top: -5px; left: -6px;
  background: #ede4ff;
  color: var(--b-mid);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .53rem;
  letter-spacing: .04em;
  padding: .06rem .26rem;
  border-radius: 3px;
  z-index: 2;
}

.rp-title { font-family: var(--font-display); font-weight: 700; font-size: .875rem; line-height: 1.25; }
.rp-sub { font-size: .765rem; color: var(--ink-4); margin-top: .1rem; }

.rp-score {
  margin-top: .7rem;
  padding-top: .6rem;
  border-top: 1px solid var(--line);
  font-size: .72rem;
  color: var(--ink-4);
  display: flex;
  align-items: center;
  gap: .38rem;
}
.rp-score .stars { color: #d1d5db; letter-spacing: .1em; }

/* ---------- Feature list beside mockup ---------- */

.feat-line { display: flex; gap: 1rem; margin-bottom: 1.85rem; }
.feat-line:last-child { margin-bottom: 0; }

.feat-ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  flex: none;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--b-sweep);
  box-shadow: 0 8px 18px -9px rgba(108,42,224,.85);
}
.feat-line h3 { font-size: 1.06rem; margin-bottom: .3rem; }
.feat-line p { color: var(--ink-3); font-size: .93rem; margin: 0; }

/* ---------- Mock app window ---------- */

.mock {
  border-radius: var(--r-md);
  overflow: hidden;
  background: #1f2430;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(0,0,0,.2);
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: .42rem;
  padding: .5rem .72rem;
  background: #2a3040;
}
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.mock-url {
  margin-left: .6rem;
  font-size: .68rem;
  color: #9aa3b2;
  background: #1f2430;
  padding: .16rem .7rem;
  border-radius: var(--r-pill);
}
.mock-body { background: #fff; padding: 1rem; min-height: 260px; }

.chat-line { display: flex; gap: .55rem; margin-bottom: .7rem; align-items: flex-start; }
.chat-bubble {
  background: var(--paper-2);
  border-radius: 12px;
  padding: .5rem .75rem;
  font-size: .78rem;
  color: var(--ink-2);
  max-width: 84%;
}

.score-strip {
  margin-top: .9rem;
  padding: .6rem .75rem;
  border-radius: var(--r-sm);
  background: var(--paper-2);
  font-size: .76rem;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.score-strip b { color: var(--b-mid); }

.crit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; margin-top: .8rem; }
.crit-col { background: var(--paper-2); border-radius: var(--r-sm); padding: .55rem; }
.crit-col h6 {
  font-family: var(--font-display);
  font-size: .63rem;
  font-weight: 700;
  color: var(--ink-2);
  margin: 0 0 .42rem;
  display: flex; justify-content: space-between;
}
.crit-item {
  font-size: .58rem;
  background: #fff;
  border-radius: 5px;
  padding: .26rem .36rem;
  margin-bottom: .26rem;
  color: var(--ink-3);
  display: flex; align-items: center; gap: .26rem;
}
.crit-item .pip { width: 5px; height: 5px; border-radius: 50%; flex: none; }

.float-note {
  position: absolute;
  right: 4%;
  bottom: -14px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: .6rem .95rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  z-index: 3;
}
.float-note .ok {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(18,222,116,.16);
  color: #0e9f57;
  display: grid; place-items: center;
  flex: none;
}
.float-note b { font-family: var(--font-display); font-size: .86rem; display: block; }
.float-note span { font-size: .72rem; color: var(--ink-4); }

.tag-float {
  position: absolute;
  left: 3%;
  top: -14px;
  background: var(--b-sweep);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .74rem;
  padding: .32rem .8rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-brand);
  z-index: 3;
}

/* ---------- Feature cards ---------- */

.f-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  height: 100%;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.f-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: #dfe2ea; }

.f-ic {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 1.05rem;
}
.ic-orange { background: linear-gradient(140deg,#ffb020,#ff8a00); }
.ic-green  { background: linear-gradient(140deg,#2ee68a,#0eb968); }
.ic-blue   { background: linear-gradient(140deg,#5aa9ff,#2563eb); }
.ic-pink   { background: linear-gradient(140deg,#ff6b9d,#e31266); }
.ic-teal   { background: linear-gradient(140deg,#3ddfe8,#0ea5b7); }
.ic-purple { background: var(--b-sweep); }

.f-card h3 { font-size: 1.04rem; margin-bottom: .5rem; }
.f-card p { color: var(--ink-3); font-size: .9rem; margin: 0; }

/* ---------- Pricing ---------- */

.pricing { background: linear-gradient(125deg,#d9ccff 0%,#ccc9fb 45%,#b4cbf1 100%); }

.calc {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--sh-md);
}

.calc-head { display: flex; align-items: flex-start; gap: .85rem; margin-bottom: 1.4rem; }
.calc-head .ic {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--b-sweep);
  color: #fff;
  display: grid; place-items: center;
  flex: none;
}
.calc-head h3 { font-size: 1.05rem; }
.calc-head p { font-size: .84rem; color: var(--ink-4); margin: .1rem 0 0; }
.calc-head .val { margin-left: auto; text-align: right; }
.calc-head .val b {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--b-mid);
  display: block;
  line-height: 1;
}
.calc-head .val span { font-size: .74rem; color: var(--ink-4); }

input[type=range].rng {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 22px; background: transparent; cursor: pointer;
}
input[type=range].rng::-webkit-slider-runnable-track {
  height: 6px; border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--b-mid) var(--fill,20%), #e5e7eb var(--fill,20%));
}
input[type=range].rng::-moz-range-track { height: 6px; border-radius: var(--r-pill); background: #e5e7eb; }
input[type=range].rng::-moz-range-progress { height: 6px; border-radius: var(--r-pill); background: var(--b-mid); }
input[type=range].rng::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px; margin-top: -7px;
  border-radius: 50%; background: #fff;
  border: 4px solid var(--b-mid);
  box-shadow: 0 2px 8px rgba(0,0,0,.22);
}
input[type=range].rng::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 4px solid var(--b-mid);
}

.rng-scale { display: flex; justify-content: space-between; font-size: .72rem; color: var(--ink-4); margin-top: -.2rem; }

.chips { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.chip {
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: var(--r-sm);
  padding: .4rem .85rem;
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .15s var(--ease);
}
.chip:hover { border-color: var(--b-light); color: var(--b-mid); }
.chip.on { background: var(--b-sweep); color: #fff; border-color: transparent; }

.covered {
  margin-top: 1.15rem;
  background: rgba(18,222,116,.1);
  border: 1px solid rgba(18,222,116,.3);
  border-radius: var(--r-sm);
  padding: .68rem .9rem;
  font-size: .855rem;
  color: #0d7a45;
  display: flex; align-items: center; gap: .5rem;
}
.covered b { color: #0a5c34; }

/* dark summary */
.summary {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  color: #fff;
  box-shadow: var(--sh-lg);
  height: 100%;
}

.toggle-row { display: flex; align-items: center; justify-content: center; gap: .7rem; font-size: .84rem; color: #cbd5e1; margin-bottom: 1.5rem; }
.switch { width: 42px; height: 23px; border-radius: var(--r-pill); background: #33405c; position: relative; cursor: pointer; flex: none; border: 0; }
.switch i { position: absolute; top: 3px; left: 3px; width: 17px; height: 17px; border-radius: 50%; background: #fff; transition: transform .2s var(--ease); display: block; }
.switch.on { background: var(--b-mid); }
.switch.on i { transform: translateX(19px); }

.sum-cost { text-align: center; margin-bottom: 1.5rem; }
.sum-cost small { font-size: .8rem; color: #94a3b8; display: block; margin-bottom: .3rem; }
.sum-cost .amt {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}
.sum-cost .amt em { font-style: normal; font-size: .5em; vertical-align: super; margin-right: .1em; }

.sum-line { display: flex; justify-content: space-between; font-size: .85rem; padding: .55rem 0; border-bottom: 1px solid var(--line-2); color: #cbd5e1; }
.sum-line:last-of-type { border-bottom: 0; }
.sum-line b { color: #fff; }

.sum-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin: 1.1rem 0; }
.sum-tile { background: var(--navy-2); border-radius: var(--r-sm); padding: .8rem; text-align: center; }
.sum-tile b { font-family: var(--font-display); font-size: 1.2rem; display: block; }
.sum-tile span { font-size: .7rem; color: #94a3b8; }
.sum-tile.good b { color: var(--a-green); }

.saving {
  background: rgba(18,222,116,.14);
  border: 1px solid rgba(18,222,116,.3);
  border-radius: var(--r-sm);
  padding: .7rem .85rem;
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.1rem;
}
.saving .ic { width: 26px; height: 26px; border-radius: 7px; background: var(--a-green); color: #06331d; display: grid; place-items: center; flex: none; }
.saving span { font-size: .74rem; color: #a7f3d0; display: block; }
.saving b { font-family: var(--font-display); font-size: .95rem; color: #6ee7b7; }

.fineprint { text-align: center; font-size: .73rem; color: #7c8ba5; margin: .75rem 0 0; }

/* volume tiers */
.tiers { background: #fff; border-radius: var(--r-lg); padding: 1.35rem; box-shadow: var(--sh-md); }
.tiers h4 { font-size: 1rem; margin-bottom: 1rem; }

.tier {
  display: flex; align-items: center; gap: .8rem;
  padding: .68rem .8rem;
  border-radius: var(--r-sm);
  font-size: .875rem;
  margin-bottom: .3rem;
}
.tier:nth-child(even) { background: var(--paper-2); }
.tier.on { background: #f1eaff; box-shadow: inset 0 0 0 1px rgba(124,58,237,.34); }
.tier .n {
  width: 22px; height: 22px; border-radius: 6px;
  background: #e9ecf2; color: var(--ink-2);
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  display: grid; place-items: center; flex: none;
}
.tier.on .n { background: var(--b-sweep); color: #fff; }
.tier .rangelbl { flex: 1; }
.tier .price { font-family: var(--font-display); font-weight: 700; }
.tier .per { font-size: .74rem; color: var(--ink-4); }
.tier .off {
  font-size: .7rem; font-weight: 700;
  color: #0d7a45; background: rgba(18,222,116,.16);
  padding: .1rem .42rem; border-radius: var(--r-pill);
}

/* ---------- Testimonials ---------- */

.quote-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  height: 100%;
  position: relative;
  backdrop-filter: blur(6px);
  box-shadow: var(--sh-sm);
}
.quote-card .qm {
  position: absolute; top: .9rem; right: 1.1rem;
  font-family: var(--font-display);
  font-size: 2.2rem; line-height: 1;
  color: rgba(124,58,237,.22);
}
.quote-card p { font-size: .92rem; color: var(--ink-2); margin: 0 0 1.25rem; }
.who { display: flex; align-items: center; gap: .68rem; }
.who b { font-family: var(--font-display); font-size: .88rem; display: block; }
.who span { font-size: .76rem; color: var(--ink-4); }

/* ---------- Enterprise ---------- */

.ent-card {
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  height: 100%;
  backdrop-filter: blur(6px);
}
.ent-card h3 { font-size: 1.02rem; margin: 1.05rem 0 .5rem; }
.ent-card p { font-size: .88rem; color: var(--ink-3); margin: 0; }

/* ---------- Footer ---------- */

.foot { background: var(--navy); color: #94a3b8; padding: clamp(2.8rem,6vw,4.2rem) 0 1.5rem; }
.foot .logo { color: #fff; margin-bottom: .9rem; }
.foot .logo-mark { background: var(--b-sweep); }
.foot .logo-mark svg { color: #fff; }
.foot .blurb { font-size: .855rem; max-width: 34ch; margin-bottom: 1.15rem; }

.foot h5 {
  font-family: var(--font-display);
  color: #fff;
  font-size: .885rem;
  font-weight: 600;
  margin-bottom: .9rem;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: .5rem; }
.foot li a { font-size: .845rem; color: #94a3b8; }
.foot li a:hover { color: #fff; }

.soc {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,.09);
  display: inline-grid; place-items: center;
  color: #cbd5e1;
}
.soc:hover { background: var(--b-mid); color: #fff; }

.foot-btm {
  margin-top: 2.4rem; padding-top: 1.35rem;
  border-top: 1px solid var(--line-2);
  display: flex; flex-wrap: wrap; gap: .8rem 1.4rem;
  align-items: center;
  font-size: .8rem;
}
.foot-btm .links { margin-left: auto; display: flex; gap: 1.35rem; }

.support-fab {
  position: fixed;
  right: 1.1rem; bottom: 1.1rem;
  z-index: 40;
  background: var(--b-sweep);
  color: #fff;
  border-radius: var(--r-pill);
  padding: .62rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .86rem;
  display: inline-flex; align-items: center; gap: .48rem;
  box-shadow: var(--sh-brand);
}
.support-fab:hover { color: #fff; filter: brightness(1.08); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
