/* FieldAXIS — tokens aligned with fieldaxis-crm apps/frontend-site/app/globals.css */
:root {
  --mkt-band-a: rgb(242 236 252);
  --mkt-band-b: rgb(232 222 246);
  --mkt-band-c: rgb(248 243 255);
  /* Aligned with FieldAXIS-CRM frontend-dashboard light :root */
  --primary: #8055b4;
  --primary-foreground: #ffffff;
  --foreground: #30223e;
  --muted-foreground: #764da3;
  --border: #decbf1;
  --card: #f4eef9;
  --secondary: #ebe4f8;
  --accent: #decbf1;
  --ring: #764da3;
  --chart-1: #8055b4;
  --chart-2: #764da3;
  --chart-3: #decbf1;
  --chart-4: #30223e;
  --chart-5: #ebe4f8;

  --bg: var(--mkt-band-a);
  --bg-2: var(--mkt-band-b);
  --surface: var(--card);
  --surface-2: rgb(235 228 248);
  --line: color-mix(in srgb, var(--border) 55%, transparent);
  --line-2: var(--border);
  --text: var(--foreground);
  --muted: var(--muted-foreground);
  --muted-2: rgb(138 122 158);
  --purple: #8055b4;
  --purple-2: #764da3;
  --purple-3: #6d28d9;
  --purple-deep: #30223e;
  --grad: linear-gradient(135deg, #a78bfa, #8055b4);
  --grad-soft: linear-gradient(135deg, rgba(128, 85, 180, .1), rgba(167, 139, 250, .05));
  --shadow: 0 2px 24px -6px rgba(48, 34, 62, .14);
  --radius: 1.25rem;
  --maxw: 1180px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: transparent;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 80% -10%, rgb(118 77 163 / 14%), transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgb(168 85 247 / 10%), transparent 55%);
  animation: ambientAura 20s ease-in-out infinite alternate;
}

@keyframes ambientAura {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.05) translate(4%, 5%); }
  100% { transform: scale(1) translate(-3%, -4%); }
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px
}

/* Utility bar */
.utility-bar {
  background: var(--purple-deep);
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
}

.utility-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.utility-bar-inner--end {
  justify-content: flex-end;
}

.utility-bar-by {
  opacity: .85;
}

.utility-bar-links a {
  color: #fff;
  font-weight: 500;
}

.utility-bar-links a:hover {
  text-decoration: underline;
}

.utility-bar-sep {
  opacity: .5;
  margin: 0 6px;
}

.nav-phone {
  font-weight: 600;
  color: var(--purple-deep) !important;
  white-space: nowrap;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--mkt-band-a) 95%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(100%, 320px);
}

.brand-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text);
}

.brand-tagline {
  font-size: 10px;
  line-height: 1.35;
  color: var(--muted);
}

@media (min-width: 640px) {
  .brand-tagline {
    font-size: 11px;
  }
}

.brand-name span {
  color: var(--purple);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--muted);
  transition: color .2s, background .2s;
}

.nav-links a:hover {
  color: var(--purple-deep);
  background: rgba(0, 0, 0, .04)
}

.nav-links a.active {
  color: var(--purple-deep);
  font-weight: 600
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 0;
  transition: transform .15s, box-shadow .2s, background .2s;
  font-family: inherit;
}

.btn-primary {
  background: var(--purple);
  color: var(--primary-foreground);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--purple-2);
  box-shadow: 0 8px 28px -8px rgb(124 58 237 / 35%);
}

.btn-ghost {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--secondary);
}

/* CTA rows — group on the right; secondary left of primary (right-hand reach). */
.cta-row,
.section-cta-row,
.pricing-hero-cta,
.lead-modal-actions,
.pricing-calc-teaser-actions,
.product-engage-actions,
.home-blog-all--row,
.pricing-calc-actions-row--review .scope-review-actions-end {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.cta-row .btn-ghost,
.section-cta-row .btn-ghost,
.pricing-hero-cta .btn-ghost,
.lead-modal-actions .btn-ghost,
.pricing-calc-teaser-actions .btn-ghost,
.product-engage-actions .btn-ghost,
.home-blog-all--row .btn-ghost,
.pricing-calc-actions-row--review .scope-review-actions-end .btn-ghost,
p:has(> .btn-primary):has(> .btn-ghost) .btn-ghost {
  order: 1;
}

.cta-row .btn-primary,
.section-cta-row .btn-primary,
.pricing-hero-cta .btn-primary,
.lead-modal-actions .btn-primary,
.pricing-calc-teaser-actions .btn-primary,
.product-engage-actions .btn-primary,
.home-blog-all--row .btn-primary,
.pricing-calc-actions-row--review .scope-review-actions-end .btn-primary,
p:has(> .btn-primary):has(> .btn-ghost) .btn-primary {
  order: 2;
}

p:has(> .btn-primary):has(> .btn-ghost) {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

p:has(> .btn-primary):not(:has(> .btn-ghost)) {
  display: flex;
  justify-content: flex-end;
}

/* Features dropdown */
.has-menu {
  position: relative
}

.menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 300px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 10px;
  display: none;
  box-shadow: 0 30px 60px -20px rgba(48, 34, 62, .12);
  grid-template-columns: 1fr;
  gap: 4px;
}

/* Invisible bridge so the menu doesn't close while moving mouse */
.menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

.has-menu:hover .menu,
.has-menu:focus-within .menu {
  display: grid
}

.menu a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13.5px;
}

.menu a:hover {
  background: var(--grad-soft);
  color: var(--text)
}

.menu a strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  font-size: 14px
}

.menu a span {
  color: var(--muted);
  font-size: 12.5px
}

/* Mobile nav */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;
  background: var(--card);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple-3);
  background: rgba(124, 58, 237, .06);
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 10px var(--purple)
}

h1.hero-title {
  font-size: clamp(36px, 5.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 18px 0 22px;
  font-weight: 800;
}

.hero-title .grad-op,
.page h1 .grad-op {
  display: inline-block;
  background-image: linear-gradient(180deg, #c4b5fd 0%, var(--purple) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-title .grad-flow,
.page h1 .grad-flow {
  color: var(--purple);
  -webkit-text-fill-color: var(--purple);
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 32px
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}

.hero-visual {
  position: relative;
  border-radius: 20px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(124, 58, 237, .05), rgba(0, 0, 0, .02));
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
}

.mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line)
}

.mock-row:last-child {
  border-bottom: 0
}

.mock-row .label {
  color: var(--muted);
  font-size: 13px
}

.mock-row .val {
  color: var(--text);
  font-weight: 600;
  font-size: 14px
}

.pill {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600
}

.pill.green {
  background: rgba(74, 222, 128, .15);
  color: #166534
}

.pill.amber {
  background: rgba(251, 191, 36, .15);
  color: #92400e
}

.pill.purple {
  background: rgba(124, 58, 237, .12);
  color: var(--purple-deep)
}

/* Section */
section {
  padding: 90px 0
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center
}

.section-head .eyebrow {
  margin-bottom: 14px
}

h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 14px;
  font-weight: 800
}

h2 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  margin: 0
}

/* Story strip */
.story {
  background: linear-gradient(180deg, var(--bg), var(--bg-2))
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center
}

.story-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px
}

.story-list li {
  display: flex;
  gap: 12px;
  color: var(--muted)
}

.story-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 10px;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple)
}

.quote {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--line-2);
  background: var(--grad-soft);
  font-size: 18px;
  line-height: 1.55;
  color: var(--purple-deep);
  font-style: italic;
}

.quote .who {
  display: block;
  margin-top: 14px;
  font-style: normal;
  color: var(--purple-3);
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600
}

/* Features grid */
.features {
  background: var(--bg)
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.f-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 26px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .2s, border-color .2s, background .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}

.f-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(124, 58, 237, .08), transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}

.f-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, .3);
  background: var(--bg-2);
  box-shadow: 0 10px 30px -10px rgba(124, 58, 237, .1)
}

.f-card:hover::after {
  opacity: 1
}

.f-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

.f-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--text)
}

.f-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px
}

.f-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--purple);
  font-weight: 600;
  font-size: 13.5px
}

.f-link::after {
  content: "→";
  transition: transform .2s
}

.f-card:hover .f-link::after {
  transform: translateX(4px)
}

/* Stats / band */
.band {
  background: var(--grad);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 90% 0%, rgba(255, 255, 255, .18), transparent 60%);
}

.band-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center
}

.band h2 {
  color: #fff
}

.band p {
  color: rgba(255, 255, 255, .9);
  margin: 0
}

.band .btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
}

.band .btn-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .85);
  color: #fff;
}

.band .btn-primary {
  background: #fff;
  color: var(--purple);
  border: none;
  box-shadow: 0 4px 20px rgba(48, 34, 62, .2);
}

.band .btn-primary:hover {
  background: #f4eef9;
  color: var(--purple-deep);
  box-shadow: 0 6px 24px rgba(48, 34, 62, .25);
}

/* Feature detail page */
.feature-hero {
  padding: 80px 0 60px;
  background:
    radial-gradient(700px 350px at 90% 0%, rgba(124, 58, 237, .08), transparent 60%),
    radial-gradient(600px 350px at -10% 100%, rgba(155, 92, 255, .12), transparent 60%),
    var(--bg);
}

.crumbs {
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 18px
}

.crumbs a {
  color: var(--purple)
}

.feature-hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  font-weight: 800
}

.feature-hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.feature-hero .lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 760px;
  margin: 0
}

.feature-body {
  padding: 60px 0 90px
}

.fb-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px;
  align-items: flex-start
}

.fb-side {
  position: sticky;
  top: 96px
}

.fb-side h4 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple-3)
}

.fb-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px
}

.fb-side a {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  display: block;
  border-left: 2px solid transparent
}

.fb-side a:hover {
  background: var(--grad-soft);
  color: var(--purple-deep);
  border-left-color: var(--purple)
}

.fb-main h2 {
  font-size: 26px;
  margin: 48px 0 14px;
  letter-spacing: -.01em;
  color: var(--text)
}

.fb-main h2:first-child {
  margin-top: 0
}

.fb-main p {
  color: var(--muted);
  font-size: 16.5px
}

.fb-main blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--purple);
  background: var(--grad-soft);
  border-radius: 8px;
  color: var(--purple-deep);
  font-style: italic;
}

.fb-main ul.bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 10px
}

.fb-main ul.bullets li {
  display: flex;
  gap: 12px;
  color: var(--muted)
}

.fb-main ul.bullets li::before {
  content: "✓";
  color: var(--purple);
  font-weight: 700;
  flex: none
}

.kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0;
}

.kv .item {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface)
}

.kv .item h5 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 15px
}

.kv .item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted)
}

.next-feat {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 60px;
  padding-top: 30px;
}

.next-feat a {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  flex: 1;
  transition: background .2s, border-color .2s
}

.next-feat a:hover {
  background: var(--bg-2);
  border-color: rgba(124, 58, 237, .3)
}

.next-feat small {
  color: var(--muted-2);
  font-size: 12px;
  display: block;
  margin-bottom: 4px
}

/* Generic page */
.page {
  padding: 80px 0
}

.page-hero {
  padding: 80px 0 30px
}

.page h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 14px;
  letter-spacing: -.02em;
  font-weight: 800
}


.page .lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px
}

.about-card {
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .05)
}

.about-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--text)
}

.about-card p {
  color: var(--muted);
  font-size: 15.5px
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 50px
}

.contact-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .05)
}

.contact-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 18px
}

.contact-form-block h2 {
  margin: 0 0 8px;
}

.contact-form-lede {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 20px;
}

.contact-card a {
  color: var(--purple);
  font-weight: 600
}

.contact-card p {
  margin: 6px 0;
  color: var(--muted)
}

/* Footer — dark theme aligned with utility bar */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 0 0;
  background: var(--purple-deep);
  color: rgba(255, 255, 255, 0.92);
}

.foot-shell {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.foot-top {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.25fr);
  gap: 48px 64px;
  padding-bottom: 40px;
}

.foot-brand-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.foot-brand {
  align-self: flex-start;
}

.foot-tagline {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 36ch;
}

.foot-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.foot-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}

.foot-social-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
}

.foot-social-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.foot-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 32px;
}

.foot-col h5 {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.foot-col a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color .2s;
}

.foot-col a:hover {
  color: #fff;
}

.foot-connect {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-contact-card {
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.foot-contact-card h5 {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.foot-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.foot-contact-list li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.foot-contact-list a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.foot-contact-list a:hover {
  color: #fff;
}

.foot-map {
  min-height: 100%;
}

.foot-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  height: 100%;
  min-height: 200px;
  box-shadow: none;
}

.foot-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
  display: block;
}

.foot-legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px 0;
  padding: 20px 0 8px;
}

.foot-legal-nav a {
  position: relative;
  padding: 4px 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color .2s;
}

.foot-legal-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.18);
}

.foot-legal-nav a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.foot-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 20px 0 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}


.site-footer .brand-name {
  color: #fff;
}

.site-footer .brand-name span {
  color: #c4b5fd;
}

.site-footer .brand-tagline {
  color: rgba(255, 255, 255, 0.55);
}

.foot-copy-tagline {
  text-align: right;
}

/* Legacy foot helpers — blog/other partials */
.site-footer.foot h5,
.site-footer .foot h5 {
  color: rgba(255, 255, 255, 0.5);
}

.foot h5 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px
}

.foot ul li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer.foot ul li,
.site-footer .foot ul li {
  color: rgba(255, 255, 255, 0.72);
}

.foot a {
  color: var(--muted);
  font-size: 14px
}

.site-footer.foot a,
.site-footer .foot a {
  color: rgba(255, 255, 255, 0.78);
}

.foot a:hover {
  color: var(--purple-deep)
}

.site-footer.foot a:hover,
.site-footer .foot a:hover {
  color: #fff;
}

.site-footer .foot-copy a {
  color: inherit;
}

.site-footer .foot-copy a:hover {
  color: rgba(255, 255, 255, 0.72);
}

.foot p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 10px
}

.site-footer.foot p,
.site-footer .foot p {
  color: rgba(255, 255, 255, 0.72);
}

.blog-article h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  color: var(--text);
}

.blog-article p {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.blog-article p strong {
  color: var(--text);
}

.blog-article h3 {
  font-size: 18px;
  margin: 24px 0 10px;
  color: var(--text);
}

.blog-article ul,
.blog-article ol {
  margin: 0 0 20px 1.25em;
  color: var(--muted);
  line-height: 1.7;
}

.blog-article li {
  margin-bottom: 8px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  color: var(--muted-2);
  font-size: 14px;
  margin-bottom: 28px;
}

.blog-meta .blog-meta-tag {
  color: var(--purple-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}

.blog-callout {
  border-left: 3px solid var(--purple);
  background: var(--grad-soft);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 28px 0;
}

.blog-callout p:last-child {
  margin-bottom: 0;
}

.blog-callout strong {
  display: block;
  color: var(--purple-deep);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.blog-callout--scenario {
  border-left-color: var(--purple-2);
  background: rgba(124, 58, 237, 0.06);
}

.blog-callout--how {
  border-left-color: var(--purple-deep);
  background: rgba(91, 33, 182, 0.06);
}

.blog-callout--field {
  border-left-color: var(--muted-2);
  background: var(--surface);
}

.blog-callout--answer {
  border-left-color: var(--purple);
  background: rgba(128, 85, 180, 0.08);
}

.page-faq {
  margin-top: 40px;
  padding-top: 24px;
}

.page-faq h2 {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.page-faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.page-faq-header h2 {
  margin-bottom: 0;
}

.faq-item {
  border: 1px solid var(--line-2);
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 0 18px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(91, 33, 182, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
  border-color: rgba(128, 85, 180, 0.35);
  box-shadow: 0 8px 24px rgba(91, 33, 182, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 16px 28px 16px 0;
  list-style: none;
  position: relative;
  color: var(--text);
  line-height: 1.45;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--grad-soft);
  color: var(--purple-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.faq-showcase {
  margin-top: 40px;
  padding-top: 28px;
}

.faq-showcase .page-faq {
  margin: 0;
  padding: 0;
  border: 0;
}

.product-module-cards {
  display: grid;
  gap: 14px;
}

.product-module-cards--two {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.product-module-cards--three {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.product-module-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.product-module-card:hover {
  transform: translateY(-2px);
  border-color: rgba(128, 85, 180, 0.35);
  box-shadow: 0 12px 32px rgba(91, 33, 182, 0.1);
}

.product-module-card-mock {
  border-radius: 10px;
  overflow: hidden;
  min-height: 120px;
}

.product-module-card-mock .ui-mock,
.product-module-card-mock .mock-app {
  margin: 0;
  font-size: 12px;
}

.product-module-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-3);
}

.product-module-card strong {
  font-size: 17px;
  color: var(--text);
}

.product-module-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.product-module-card-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-deep);
}

.insight-card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.insight-card {
  display: grid;
  grid-template-columns: minmax(168px, 200px) 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  min-height: 120px;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.insight-card:hover {
  border-color: rgba(128, 85, 180, 0.35);
  box-shadow: 0 10px 28px rgba(91, 33, 182, 0.1);
}

.insight-card-mock .mock-app,
.insight-card-mock .ui-mock {
  margin: 0;
  font-size: 11px;
  border-radius: 10px;
}

.insight-card-body strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text);
}

.insight-card-body p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.insight-card-body span {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-deep);
}

.hero-carousel {
  position: relative;
  min-height: 320px;
}

.hero-carousel-labels {
  margin-bottom: 12px;
  min-height: 44px;
}

.hero-carousel-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-3);
  margin-bottom: 4px;
}

.hero-carousel-caption {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.hero-carousel-track {
  position: relative;
  min-height: 300px;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-carousel-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-carousel-slide .mock-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.hero-carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: var(--line-2);
  cursor: pointer;
  padding: 0;
}

.hero-carousel-dots button.active {
  width: 24px;
  background: var(--primary);
}

.mock-journey-stop {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
  font-size: 12px;
}

.mock-journey-stop strong {
  display: block;
  color: var(--foreground);
  font-size: 12px;
  margin-bottom: 2px;
}

.mock-journey-stop span {
  color: var(--muted-foreground);
  font-size: 11px;
}

.mock-journey-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(128, 85, 180, 0.2);
}

.mock-app--journey-map .mock-route-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
  font-size: 11px;
}

.mock-app--journey-map .mock-route-meta .label {
  display: block;
  color: var(--muted-foreground);
  font-size: 10px;
  margin-bottom: 2px;
}

.mock-app--journey-map .mock-route-meta strong {
  color: var(--foreground);
  font-size: 12px;
  font-weight: 700;
}

.mock-route-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--background);
  font-size: 11px;
  color: var(--muted-foreground);
}

.mock-route-times strong {
  color: var(--foreground);
  font-weight: 700;
  margin-right: 4px;
}

.mock-map-canvas {
  position: relative;
  margin: 10px 12px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #e8f4ea;
  min-height: 108px;
}

.mock-map-svg {
  display: block;
  width: 100%;
  height: auto;
}

.mock-map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  text-align: center;
  font-size: 9px;
  line-height: 1.2;
  pointer-events: none;
}

.mock-map-pin span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 9px;
  box-shadow: 0 2px 6px rgba(91, 33, 182, 0.35);
}

.mock-map-pin--start span {
  background: #34a853;
}

.mock-map-pin--end span {
  background: #ea4335;
}

.mock-map-pin em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-weight: 600;
  color: #2d4a32;
  font-size: 8px;
  max-width: 56px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-route-stops {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.mock-route-stop {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
  font-size: 11px;
}

.mock-route-stop:last-child {
  border-bottom: 0;
}

.mock-route-stop-time {
  font-weight: 700;
  color: var(--foreground);
  font-variant-numeric: tabular-nums;
}

.mock-route-stop-name {
  color: var(--muted-foreground);
  font-weight: 600;
}

.mock-route-stop .pill {
  font-size: 9px;
  padding: 2px 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.blog-sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-sidebar-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-deep);
}

.foot-noscript-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 12px;
}

.foot-noscript-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.blog-related {
  margin-top: 40px;
  padding-top: 28px;
}

.blog-related h2 {
  font-size: 18px;
  margin: 0 0 16px;
}

.blog-related ul,
.blog-related ol {
  margin: 0;
  padding-left: 1.35rem;
}

.blog-related li {
  margin-bottom: 10px;
}

.blog-related a {
  font-weight: 600;
  color: var(--purple);
}

.blog-sidebar-more h4 {
  margin-bottom: 14px;
}

.blog-sidebar-related-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-sidebar-related-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.blog-sidebar-related-card:hover {
  border-color: rgba(128, 85, 180, .55);
  box-shadow: 0 10px 28px -14px rgba(48, 34, 62, .22);
  transform: translateY(-2px);
}

.blog-sidebar-related-card:hover strong {
  color: var(--primary);
}

.blog-sidebar-related-thumb {
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  max-height: 92px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(145deg, #f4eef9 0%, #ebe4f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

.blog-sidebar-related-thumb .blog-card-thumb-panel--sidebar {
  width: 100%;
  height: 100%;
  padding: 6px 8px;
  border-radius: 6px;
  box-shadow: none;
  overflow: hidden;
  display: block;
}

.blog-sidebar-related-thumb .blog-card-thumb-panel--sidebar .ui-mock {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  width: 100%;
}

.blog-sidebar-related-thumb .ui-mock-head {
  font-size: 9px;
  margin-bottom: 4px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-sidebar-related-thumb .mock-row {
  padding: 4px 0;
  gap: 6px;
}

.blog-sidebar-related-thumb .mock-row:nth-child(n+3) {
  display: none;
}

.blog-sidebar-related-thumb .mock-row .label {
  font-size: 9px;
  color: #764da3;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-sidebar-related-thumb .mock-row .val,
.blog-sidebar-related-thumb .pill {
  font-size: 9px;
  flex-shrink: 0;
}

.blog-sidebar-related-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-sidebar-related-cat {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--purple-3);
}

.blog-sidebar-related-card strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: var(--purple-deep);
  font-weight: 700;
  transition: color .2s ease;
}

.blog-sidebar-related-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.copy {
  margin-top: 36px;
  padding-top: 20px;
  color: var(--muted-2);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap
}

/* Footer — tablet */
@media (max-width: 960px) {
  .foot-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .foot-tagline {
    max-width: none;
  }

  .foot-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .foot-connect {
    grid-template-columns: 1fr;
  }

  .foot-map-wrap {
    min-height: 220px;
  }

  .foot-copy-tagline {
    text-align: left;
  }
}

/* WhatsApp floating action */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  color: inherit;
}

.whatsapp-fab-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.42);
  transition: box-shadow 0.2s ease;
}

.whatsapp-fab:hover .whatsapp-fab-icon {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab-bubble {
  position: relative;
  max-width: 240px;
  padding: 11px 15px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--purple) 22%, var(--line));
  background: #fff;
  box-shadow: 0 8px 28px rgba(20, 10, 40, 0.12);
  animation: whatsappFabTeaser 2.8s ease-in-out infinite;
}

.whatsapp-fab-bubble::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 1px solid color-mix(in srgb, #25d366 28%, var(--line));
  border-bottom: 1px solid color-mix(in srgb, #25d366 28%, var(--line));
  transform: translateY(-50%) rotate(-45deg);
}

.whatsapp-fab-bubble-title {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--purple-deep);
}

.whatsapp-fab-bubble-line {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}

.whatsapp-fab-bubble-line--short {
  display: none;
}

@keyframes whatsappFabTeaser {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab-bubble {
    animation: none;
  }
}

@media (max-width: 767px) {
  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .whatsapp-fab-icon {
    width: 52px;
    height: 52px;
  }

  .whatsapp-fab-bubble {
    max-width: 178px;
    padding: 9px 12px;
  }

  .whatsapp-fab-bubble-title {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .whatsapp-fab-bubble-line:not(.whatsapp-fab-bubble-line--short) {
    display: none;
  }

  .whatsapp-fab-bubble-line--short {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--purple-deep);
  }
}

/* Modal */
.modal-back {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 40, .4);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}

.modal-back.open {
  display: flex;
  animation: fade .2s ease
}

.modal {
  width: 100%;
  max-width: 680px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .15);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line)
}

.modal-head h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text)
}

.modal-close {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px
}

.modal-close:hover {
  background: var(--bg-2);
  color: var(--text)
}

.modal-body {
  padding: 0;
  height: 70vh;
  max-height: 640px
}

.modal-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff
}

.modal--lead {
  max-width: 440px;
}

.modal-body--lead {
  height: auto;
  max-height: none;
  padding: 20px 22px 24px;
}

.lead-modal-lede {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.modal-body--form .form-simple {
  max-width: none;
  margin: 0;
}

.lead-modal-actions {
  margin-top: 4px;
}

@keyframes fade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* Contact — office + map left, form right */
.contact-main-section {
  padding-top: 10px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}

.contact-office-col {
  display: flex;
  flex-direction: column;
  padding-right: 48px;
  border-right: 1px solid var(--line-2);
}

.contact-info-panel {
  background: none;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.contact-info-heading,
.contact-booking-block h2 {
  margin: 0 0 16px;
  padding: 0;
  font-size: 22px;
  letter-spacing: -.01em;
  line-height: 1.25;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: color .15s ease;
}

a.contact-info-item:hover {
  background: none;
}

.contact-info-item--static {
  cursor: default;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-info-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted-2);
}

.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}

a.contact-info-item:hover .contact-info-value {
  color: var(--purple-3);
}

.contact-office-col .contact-map-wrap {
  margin: 20px 0 0;
  width: 100%;
  border-radius: 12px;
}

.contact-page-grid .contact-booking-block {
  max-width: none;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 48px;
  background: none;
  border: none;
  box-shadow: none;
}

.contact-page-grid .contact-form-block {
  max-width: none;
  padding: 28px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .05);
}

.contact-booking-block h2 {
  margin: 0 0 16px;
}

.contact-booking-lede {
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 20px;
  font-size: 15px;
}

.contact-booking-topics-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted-2);
}

.contact-booking-topics {
  margin: 0 0 20px;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-booking-topics li {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  padding-left: 4px;
}

.contact-booking-topics li::marker {
  color: var(--purple);
}

.contact-booking-footer {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 24px;
  font-size: 14.5px;
  padding-top: 18px;
}

.contact-booking-btn {
  width: 100%;
  max-width: 320px;
  justify-content: center;
  padding: 14px 24px;
  font-size: 16px;
}

.contact-map-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 240px;
  background: none;
}

.contact-map-iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

.contact-map-placeholder {
  padding: 48px 28px;
  text-align: center;
  color: var(--muted);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-map-placeholder code {
  font-size: 12px;
  background: var(--grad-soft);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Blog index (Basiq-style) */
.blog-index-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 20px;
}

.blog-demo-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 40px -16px rgba(124, 58, 237, .12);
}

.blog-demo-card h2 {
  font-size: 22px;
  margin: 0 0 12px;
}

.blog-demo-card ul {
  margin: 16px 0 20px;
  padding-left: 1.2em;
  color: var(--muted);
  line-height: 1.6;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 28px;
}

.blog-filters label {
  font-size: 13px;
  color: var(--muted-2);
  font-weight: 600;
}

.blog-filters select,
.blog-filters input[type="search"] {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  background: var(--bg);
  color: var(--text);
}

.blog-filters input[type="search"] {
  min-width: 200px;
  flex: 1;
}

.blog-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card-v2 {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.blog-card-v2:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, .35);
  box-shadow: 0 14px 36px -12px rgba(124, 58, 237, .15);
}

.blog-card-v2 .blog-card-image {
  height: 168px;
  background: linear-gradient(145deg, #f4eef9 0%, #ebe4f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.blog-card-v2 .blog-card-image--mock {
  overflow: hidden;
}

.blog-card-v2 .blog-card-image img {
  display: none;
}

.blog-card-v2 .blog-card-image[data-cat="Sales Force Automation"] {
  background: linear-gradient(135deg, #ede9fe 0%, #c4b5fd 100%);
}

.blog-card-v2 .blog-card-image[data-cat="Dealer Management"] {
  background: linear-gradient(135deg, #f3e8ff 0%, #d8b4fe 100%);
}

.blog-card-v2 .blog-card-image[data-cat="Order Management"] {
  background: linear-gradient(135deg, #ede9fe 0%, #a78bfa 100%);
}

.blog-card-v2 .blog-card-image[data-cat="Collection & Recovery"] {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.blog-card-v2 .blog-card-image[data-cat="Loyalty"] {
  background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 100%);
}

.blog-card-v2 .blog-card-image[data-cat="Warranty"] {
  background: linear-gradient(145deg, #f4eef9 0%, #decbf1 100%);
}

.blog-card-v2 .blog-card-image[data-cat="Platform & MSME"] {
  background: linear-gradient(135deg, #f5f3ff 0%, #ddd6fe 100%);
}

.blog-card-v2 .blog-card-image[data-cat="Field Operations"] {
  background: linear-gradient(135deg, #eef2ff 0%, #c7d2fe 100%);
}

.blog-card-v2 .blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-v2 .blog-card-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--purple-3);
  margin-bottom: 8px;
}

.blog-card-v2 h3 {
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.blog-card-v2 p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.blog-card-v2 .blog-card-foot {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.blog-pagination button {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  color: var(--text);
}

.blog-pagination button.active,
.blog-pagination button:hover:not(:disabled) {
  border-color: var(--purple);
  color: var(--purple-deep);
  background: var(--grad-soft);
}

.blog-pagination button:disabled {
  opacity: .4;
  cursor: default;
}

/* Blog article layout */
.blog-layout-wrap {
  max-width: 1100px !important;
}

.blog-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.blog-layout-main {
  grid-column: 2;
}

.blog-sidebar {
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
}

.blog-sidebar-card h4 {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted-2);
}

.blog-sidebar-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-sidebar-toc li {
  margin-bottom: 8px;
}

.blog-sidebar-toc a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.blog-sidebar-toc a:hover,
.blog-sidebar-toc a.active {
  color: var(--purple-deep);
}

.blog-sidebar-toc a.active {
  font-weight: 600;
  border-left: 2px solid var(--purple);
  padding-left: 8px;
  margin-left: -10px;
}

/* UI mocks (CSS chrome — no upload prompts) */
.ui-mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 28px 0;
  box-shadow: 0 8px 28px -12px rgba(124, 58, 237, .12);
}

.ui-mock--phone {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 22px;
  padding: 14px;
}

.ui-mock--wide {
  width: 100%;
}

.ui-mock-head {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted-2);
  margin-bottom: 12px;
}

.ui-mock .mock-row {
  padding: 10px 0;
}

.prose-page {
  width: 100%;
}

.foot-copy-tagline {
  text-align: right;
  color: var(--muted);
  font-weight: 500;
}

.site-footer .foot-copy-tagline {
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Legal Center (sidebar + content) ---------- */
.legal-center {
  padding: 32px 0 64px;
}

.legal-center-shell {
  max-width: var(--maxw);
  margin: 0 auto;
}

.legal-center-head {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-center-head h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--text);
}

.legal-center-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 40px 56px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
}

.legal-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-sidebar-link {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  border-left: 3px solid transparent;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}

.legal-sidebar-link:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--purple) 6%, white);
}

.legal-sidebar-link.is-active {
  color: var(--purple-deep);
  font-weight: 600;
  background: color-mix(in srgb, var(--purple) 10%, white);
  border-left-color: var(--purple);
}

.legal-sidebar-link--hub {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.legal-doc {
  max-width: none;
  margin: 0;
  padding-bottom: 24px;
}

.legal-doc h1 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3.5vw, 32px);
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--purple) 8%, white);
  border: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-updated-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

.legal-doc h2 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  margin: 32px 0 12px;
  padding-top: 4px;
}

.legal-doc h2::before {
  content: "";
  width: 4px;
  min-height: 22px;
  align-self: stretch;
  border-radius: 4px;
  background: var(--grad);
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-doc a {
  color: var(--purple);
  font-weight: inherit;
}

.legal-doc a:hover {
  text-decoration: underline;
}

.legal-doc h3 {
  font-size: 15px;
  margin: 22px 0 8px;
  color: var(--text);
}

.legal-doc p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 16px;
}

.legal-contact {
  margin-top: 36px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 55%, white);
}

.legal-contact-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.legal-contact-title::before {
  display: none;
}

.legal-contact-intro {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin: 0;
}

.legal-contact-grid div {
  margin: 0;
}

.legal-contact-grid dt {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.legal-contact-grid dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
}

.legal-contact-grid a {
  color: var(--muted);
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
}

.legal-contact-grid a:hover {
  color: var(--purple-deep);
  text-decoration: underline;
}

.legal-overview {
  display: grid;
  gap: 16px;
}

.legal-overview-card {
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 50%, white);
}

.legal-overview-card h2 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--text);
}

.legal-overview-card h2::before {
  display: none;
}

.legal-overview-card p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
}

.legal-overview-card a {
  font-size: 14px;
  font-weight: 600;
}

.page-legal .page-hero {
  padding-bottom: 24px;
}

@media (max-width: 960px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .legal-sidebar-link {
    border-left: none;
    border: 1px solid var(--line);
    padding: 8px 12px;
    font-size: 13px;
  }

  .legal-sidebar-link.is-active {
    border-color: color-mix(in srgb, var(--purple) 35%, var(--line));
  }

  .legal-contact-grid {
    grid-template-columns: 1fr;
  }
}

.prose-page .fb-main {
  max-width: 100%;
}

.page-story[data-page="features"] .feature-body .container.feature-body-inner,
.page-story[data-page="features"] .feature-hero .container.feature-hero-grid {
  max-width: var(--maxw);
}

.feature-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.feature-hero-copy .lede {
  max-width: none;
}

.feature-hero-mock .mock-panel,
.feature-mock-slot .mock-panel {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 40px 0 48px;
}

.feature-showcase--reverse .feature-mock-slot {
  order: -1;
}

.feature-showcase-copy h2 {
  margin-top: 0;
}

.feature-block {
  margin: 48px 0;
}

.feature-block h2 {
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: -.01em;
  color: var(--text);
}

.feature-footer-cta {
  margin-top: 32px;
}

.page-story .fb-grid {
  display: block;
}

.page-story .fb-side {
  display: none;
}

@media (max-width: 900px) {
  .feature-hero-grid,
  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-showcase--reverse .feature-mock-slot {
    order: 0;
  }

  .feature-hero-mock {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

.outcome-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.outcome-table th,
.outcome-table td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.outcome-table th {
  background: var(--grad-soft);
  font-weight: 600;
  color: var(--text);
}

.outcome-table td {
  color: var(--muted);
}

.outcome-note {
  font-size: 13px;
  color: var(--muted-2);
  margin-top: 8px;
  font-style: italic;
}

.story-chapter {
  margin: 48px 0;
  padding-top: 8px;
}

.story-chapter h2 {
  margin-bottom: 16px;
}

.product-simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.product-simple-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
}

.product-simple-card:hover {
  border-color: rgba(124, 58, 237, .35);
  box-shadow: 0 10px 28px -10px rgba(124, 58, 237, .12);
}

.product-simple-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--purple-deep);
}

.product-simple-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.blog-card-thumb-panel {
  width: 100%;
  max-width: 100%;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 6px 20px -10px rgba(48, 34, 62, .14);
}

.blog-card-v2 .blog-card-thumb-panel .ui-mock {
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: 0;
  background: transparent;
  width: 100%;
}

.blog-card-v2 .blog-card-thumb-panel .ui-mock--phone {
  max-width: none;
  margin: 0;
  border-radius: 0;
}

.blog-card-v2 .blog-card-thumb-panel .ui-mock-head {
  color: #764da3;
  font-size: 11px;
  margin-bottom: 8px;
}

.blog-card-v2 .blog-card-thumb-panel .mock-row {
  padding: 8px 0;
}

.blog-card-v2 .blog-card-thumb-panel .mock-row .label {
  font-size: 12px;
  color: #764da3;
  font-weight: 500;
}

.blog-card-v2 .blog-card-thumb-panel .mock-row .val,
.blog-card-v2 .blog-card-thumb-panel .pill {
  font-size: 12px;
  color: #30223e;
  font-weight: 600;
}

.blog-card-thumb-empty {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(128, 85, 180, .12);
}

/* Article page: plain header, no mocks (removed in JS) */
article.blog-post {
  background: transparent;
}

article.blog-post .blog-post-head,
article.blog-post > .container > .crumbs,
article.blog-post > .container > h1,
article.blog-post > .container > .blog-meta,
article.blog-post > .container > p:first-of-type {
  background: none;
  border: 0;
  box-shadow: none;
}

article.blog-post > .container > h1 {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
  margin-bottom: 12px;
}

article.blog-post > .container > p[style*="margin-bottom:32px"] {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 65ch;
}

.blog-hero-fig {
  margin-bottom: 28px;
}

.fig-placeholder {
  border-radius: 12px;
  border: 1px dashed var(--line-2);
  background: linear-gradient(145deg, var(--grad-soft) 0%, var(--surface) 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--muted-2);
  font-size: 14px;
}

.fig-placeholder--phone {
  min-height: 280px;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 24px;
}

.fig-placeholder--wide {
  min-height: 220px;
}

.blog-callout--terms {
  border-left-color: var(--purple-2);
}

.blog-callout--terms table {
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
  margin-top: 8px;
}

.blog-callout--terms td {
  padding: 6px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.blog-callout--terms td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 42%;
}

/* Product page v2 */
.product-hero-v2 {
  padding: 56px 0 48px;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.persona-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}

.persona-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.persona-card p,
.persona-card ul {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.cap-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
}

.cap-card:hover {
  border-color: rgba(124, 58, 237, .4);
  box-shadow: 0 8px 24px -8px rgba(124, 58, 237, .12);
}

.cap-card h4 {
  margin: 0 0 8px;
  color: var(--purple-deep);
  font-size: 16px;
}

.cap-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.impact-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.impact-item {
  padding: 16px 20px;
  background: var(--grad-soft);
  border-radius: 10px;
  border-left: 3px solid var(--purple);
}

.impact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.impact-item span {
  color: var(--muted);
  font-size: 14px;
}

.workflow-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
  align-items: center;
}

.workflow-strip .wf-step {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.workflow-strip .wf-arrow {
  color: var(--muted-2);
  font-size: 18px;
}

.segment-band {
  background: var(--grad-soft);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 32px;
  border: 1px solid var(--line);
}

.details-collapsed summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--purple);
  padding: 16px 0;
}

.feature-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.feature-problem-grid .item {
  padding: 18px;
  background: var(--bg-2);
  border-radius: 10px;
  border: 1px solid var(--line);
}

.feature-problem-grid .item h5 {
  margin: 0 0 8px;
  font-size: 15px;
}

.feature-problem-grid .item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.feature-steps {
  counter-reset: fstep;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.feature-steps li {
  counter-increment: fstep;
  padding-left: 36px;
  position: relative;
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-steps li::before {
  content: counter(fstep);
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* Responsive */
@media (max-width:960px) {

  .hero-grid,
  .story-grid,
  .band-inner,
  .fb-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr
  }

  .foot-top {
    gap: 28px;
    padding-bottom: 28px;
  }

  .foot-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }

  .foot-connect {
    padding: 24px 0;
  }

  .foot-legal-nav {
    gap: 4px 0;
  }

  .foot-legal-nav a {
    padding: 4px 10px;
    font-size: 11px;
  }

  .foot-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .fb-side {
    position: static
  }

  .blog-index-hero,
  .contact-page-grid,
  .blog-layout,
  .persona-grid,
  .feature-problem-grid {
    grid-template-columns: 1fr;
  }

  .blog-layout-main,
  .blog-sidebar {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-office-col {
    padding-right: 0;
    border-right: none;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line-2);
  }

  .contact-page-grid .contact-booking-block {
    padding: 36px 0 0;
  }

  .contact-booking-btn {
    max-width: none;
  }

  .blog-sidebar {
    position: static;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 14px;
    gap: 4px;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .1)
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    width: 100%
  }

  .nav-phone {
    display: none;
  }

  .utility-bar-by {
    display: none;
  }

  .has-menu .menu {
    position: static;
    transform: none;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    background: transparent;
    border: 0;
    padding: 6px 0;
    box-shadow: none
  }

  .menu-toggle {
    display: inline-block
  }

  section,
  .page {
    padding: 60px 0
  }

  .hero {
    padding: 60px 0 70px
  }
}

@media (max-width:560px) {
  .feature-grid {
    grid-template-columns: 1fr
  }

  .foot-links-grid {
    grid-template-columns: 1fr;
  }

  .kv {
    grid-template-columns: 1fr
  }
}

/* ---------- Home v2: carousel, splits, product bands (patterns from frontend-site) ---------- */
.scroll-anchor {
  scroll-margin-top: 100px;
}

.pain-carousel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.pain-carousel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.pain-carousel-head h2 {
  margin: 0;
  font-size: 22px;
}

.pain-carousel-nav {
  display: flex;
  gap: 8px;
}

.pain-carousel-nav button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--card);
  cursor: pointer;
  font-size: 18px;
  color: var(--text);
  line-height: 1;
}

.pain-carousel-nav button:hover {
  background: var(--secondary);
}

.pain-carousel-slide {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  min-height: 340px;
}

.pain-carousel-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  min-height: 300px;
}

.pain-carousel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pain-carousel-copy .eyebrow {
  align-self: flex-start;
  min-width: 7.75rem;
  justify-content: center;
  box-sizing: border-box;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.pain-carousel-copy h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.pain-carousel-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.pain-carousel-mock {
  display: flex;
  align-items: stretch;
  min-height: 280px;
}

.pain-carousel-mock .mock-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pain-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.pain-carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: var(--line-2);
  cursor: pointer;
  padding: 0;
}

.pain-carousel-dots button.active {
  width: 24px;
  background: var(--primary);
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.section-split.reverse .section-split-visual {
  order: -1;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.stat-strip .item {
  background: var(--grad-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.stat-strip .item strong {
  display: block;
  font-size: 22px;
  color: var(--purple-deep);
}

.stat-strip .item span {
  font-size: 12px;
  color: var(--muted);
}

.section-block {
  padding: 72px 0;
}

.section-block--alt {
  background: var(--mkt-band-a);
}

.section-split--vcenter {
  align-items: center;
}

.product-band {
  padding: 56px 0;
  display: flex;
  align-items: center;
  min-height: min(480px, 72vh);
}

/* Match hero lavender; avoid the brighter band-c wash on ONE */
.product-band--one {
  background: var(--mkt-band-a);
}

.product-band--ilp {
  background: var(--mkt-band-b);
}

.product-band--warranty {
  background: linear-gradient(180deg, var(--mkt-band-a), var(--mkt-band-b));
}

.product-band-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.product-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.product-band-copy h2 {
  margin-top: 0;
}

.product-band-visual {
  display: flex;
  align-items: center;
  align-self: center;
}

.mock-panel {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.mock-panel .ui-mock {
  margin: 0;
  box-shadow: none;
  background: var(--card, #f4eef9);
  border: 1px solid var(--border, var(--line));
  border-radius: 12px;
  padding: 16px;
}

.mock-panel .ui-mock--phone,
.pain-carousel-mock .ui-mock--phone {
  max-width: none;
  width: 100%;
  margin: 0;
  border-radius: 12px;
}

.mock-panel .mock-row .label,
.fieldaxis-app-preview .ui-mock .mock-row .label,
.fieldaxis-app-preview .mock-app .label {
  color: #764da3;
  font-weight: 500;
}

.mock-panel .mock-row .val,
.fieldaxis-app-preview .ui-mock .mock-row .val {
  color: #30223e;
  font-weight: 600;
}

.mock-panel .ui-mock-head {
  color: #764da3;
}

.feature-point-list {
  list-style: none;
  margin: 16px 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-point-list li {
  margin: 0;
}

.feature-point-list a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
}

.feature-point-list a:hover {
  border-color: rgba(128, 85, 180, .45);
  box-shadow: 0 8px 20px -10px rgba(48, 34, 62, .15);
}

.feature-point-list strong {
  display: block;
  font-size: 14px;
  color: var(--purple-deep);
  margin-bottom: 4px;
}

.feature-point-list span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.feature-point-list--compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0 6px;
}

.feature-point-list--compact a {
  padding: 10px 12px;
  height: 100%;
}

.feature-point-list--compact strong {
  font-size: 13px;
  margin-bottom: 2px;
}

.feature-point-list--compact span {
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-point-more {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
}

.feature-point-more a {
  color: var(--purple-3);
  text-decoration: none;
}

.feature-point-more a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .feature-point-list--compact {
    grid-template-columns: 1fr;
  }
}

.content-bullet-list {
  list-style: disc;
  padding-left: 1.35rem;
  margin: 16px 0 0;
}

.content-bullet-list li {
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.content-bullet-list strong {
  color: var(--text);
}

.module-bundle-wrap {
  overflow-x: auto;
  margin: 20px 0 0;
}

.module-bundle-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}

.module-bundle-table th,
.module-bundle-table td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.module-bundle-table th {
  background: var(--card);
  color: var(--purple-deep);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.module-bundle-table tbody tr:nth-child(even) td {
  background: color-mix(in srgb, var(--card) 40%, transparent);
}

.module-bundle-note {
  color: var(--muted);
  font-size: 13px;
}

.module-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
  align-items: stretch;
}

.module-catalog-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 20px -12px rgba(48, 34, 62, .12);
  min-height: 100%;
}

.module-catalog-item--featured {
  grid-column: 1 / -1;
  padding: 22px 24px 24px;
}

/* Center a lone module card on the last row of a 3-column grid */
.module-catalog-item:not(.module-catalog-item--featured):last-child:nth-child(3n + 2) {
  grid-column: 2;
}

.module-catalog-item-head {
  flex: 1 1 auto;
}

.module-catalog-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--purple-deep);
}

.module-catalog-item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.module-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.module-type-col {
  min-width: 0;
}

.module-type-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.module-type-list li {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
  padding: 3px 0;
}

.module-type-list li::before {
  content: "·";
  color: var(--purple-3);
  font-weight: 700;
  margin-right: 6px;
}

.module-inline-types {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.module-inline-types .module-lead-label {
  display: inline;
  margin-right: 4px;
}

.module-lead-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--purple-3);
  margin-bottom: 6px;
}

.section-cta-row {
  margin-top: 8px;
}

.pricing-layout {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-hero {
  padding-bottom: 48px;
}

.pricing-hero-cta {
  margin-top: 28px;
}

.pricing-section {
  padding: 72px 0;
}

.pricing-section--alt {
  background: linear-gradient(180deg, rgba(244, 238, 249, .5) 0%, transparent 100%);
}

.pricing-section--contact {
  padding-bottom: 80px;
}

.pricing-section .page-faq {
  margin-top: 48px;
  padding-top: 0;
  border-top: 0;
}

.pricing-prose h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 32px);
}

.pricing-contact-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
  margin-top: 28px;
}

.pricing-contact-aside {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 65%, white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  font-size: 15px;
  line-height: 1.6;
}

.pricing-contact-row {
  margin: 0 0 16px;
}

.pricing-contact-row:last-of-type {
  margin-bottom: 0;
}

.pricing-contact-aside a.pricing-contact-link {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.pricing-contact-aside a.pricing-contact-link:hover {
  color: var(--purple);
}

@media (max-width: 768px) {
  .pricing-contact-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 56px 0;
  }
}

.feature-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.feature-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--purple-deep);
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.phase-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}

.phase-card strong {
  display: block;
  color: var(--purple-3);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.phase-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.product-engage-section,
.home-blog-section {
  background: var(--mkt-band-a);
  padding: 80px 0;
}

.product-engage-header,
.home-blog-intro {
  max-width: 720px;
  width: 100%;
  text-align: left;
  align-self: stretch;
  margin-bottom: 0;
}

.product-engage-header h2,
.home-blog-intro h2 {
  margin: 8px 0 0;
}

.product-engage-actions {
  margin: 0;
}

.home-blog-section-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.home-blog-lede {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

.home-blog-all {
  margin: 0;
  text-align: center;
}

.home-blog-all--row {
  margin: 0;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  width: 100%;
  align-self: stretch;
}

.home-blog-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px -10px rgba(48, 34, 62, .12);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  isolation: isolate;
}

.home-blog-card:hover {
  border-color: rgba(128, 85, 180, .45);
  box-shadow: 0 16px 40px -14px rgba(48, 34, 62, .18);
  transform: translateY(-3px);
}

/* Top: lavender frame + white mock “screen” inside */
.home-blog-card-thumb {
  flex: 0 0 auto;
  height: 136px;
  min-height: 136px;
  max-height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  background: linear-gradient(155deg, #decbf1 0%, #ebe4f8 48%, #f4eef9 100%);
  overflow: hidden;
  box-sizing: border-box;
}

.home-blog-card-thumb .blog-card-thumb-panel {
  width: 100%;
  max-height: 108px;
  overflow: hidden;
  padding: 10px 12px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgba(128, 85, 180, .22);
  border-radius: 10px;
  box-shadow: 0 4px 16px -8px rgba(48, 34, 62, .14);
}

.home-blog-card-thumb .ui-mock {
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: #fff;
}

.home-blog-card-thumb .mock-row:nth-child(n+4) {
  display: none;
}

/* Bottom: clean white reading block — clearly separate from thumb */
.home-blog-card-body {
  padding: 18px 20px 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--line-2);
}

.home-blog-card time {
  font-size: 12px;
  color: var(--muted-2);
}

.home-blog-card h3 {
  margin: 8px 0 8px;
  font-size: 17px;
  line-height: 1.35;
  color: var(--purple-deep);
}

.home-blog-card:hover h3 {
  color: var(--primary);
}

.home-blog-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

.home-blog-card-foot {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-3);
}

/* Dashboard-scoped mock (workspace colors) */
.fieldaxis-app-preview {
  --background: #efe5fa;
  --foreground: #30223e;
  --card: #f4eef9;
  --card-foreground: #30223e;
  --primary: #8055b4;
  --primary-foreground: #ffffff;
  --muted: #ebe4f8;
  --muted-foreground: #764da3;
  --border: #decbf1;
  --accent: #decbf1;
}

.mock-app {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--background);
  overflow: hidden;
  font-size: 13px;
}

.mock-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.mock-app-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 9px;
  font-weight: 800;
}

.mock-app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.mock-app-row:last-child {
  border-bottom: 0;
}

.mock-app-row .label {
  color: var(--muted-foreground);
  font-size: 12px;
}

.mock-app-row .val {
  font-weight: 600;
  color: var(--foreground);
}

.mock-app-row .pill {
  margin-left: auto;
}

.mock-app-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--chart-1);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-simple {
  max-width: 520px;
}

.form-simple label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-simple input,
.form-simple textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 16px;
  background: var(--card);
}

.form-simple textarea {
  min-height: 120px;
  resize: vertical;
}

.blog-card-v2 .blog-card-image {
  background: var(--grad-soft) !important;
}

.blog-card-body time.blog-card-date {
  display: block;
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 6px;
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .section-split,
  .product-band-grid,
  .pain-carousel-body {
    grid-template-columns: 1fr;
  }

  .pain-carousel-slide {
    min-height: 0;
  }

  .pain-carousel-mock {
    min-height: 240px;
  }

  .page-faq-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-module-cards--two,
  .product-module-cards--three {
    grid-template-columns: 1fr;
  }

  .module-catalog {
    grid-template-columns: repeat(2, 1fr);
  }

  .module-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-catalog-item:not(.module-catalog-item--featured):last-child:nth-child(3n + 2) {
    grid-column: auto;
  }

  .insight-card-row {
    grid-template-columns: 1fr;
  }

  .insight-card {
    grid-template-columns: 1fr;
  }

  .product-band,
  .home-blog-section {
    padding: 56px 0;
  }

  .home-blog-section-inner {
    gap: 24px;
  }

  .section-split.reverse .section-split-visual {
    order: 0;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .foot-links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .module-catalog {
    grid-template-columns: 1fr;
  }

  .module-type-grid {
    grid-template-columns: 1fr;
  }
}

/* Branded booking landing (/book/) */
.book-landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.book-landing-bar {
  background: var(--purple-deep);
  color: rgba(255, 255, 255, 0.92);
  padding: 14px 0;
}

.book-landing-bar-inner {
  display: flex;
  align-items: center;
}

.book-landing-brand .brand-name {
  color: #fff;
}

.book-landing-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 64px;
}

.book-landing-card {
  width: 100%;
  max-width: 520px;
  padding: 40px 36px;
  border-radius: 20px;
  border: 1px solid var(--line-2);
  background: color-mix(in srgb, var(--card) 82%, white);
  box-shadow: var(--shadow);
  text-align: center;
}

.book-landing-card h1 {
  margin: 12px 0 14px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.15;
  letter-spacing: -.02em;
}

.book-landing-lede {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.book-landing-status {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
}

.book-landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.book-landing-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.5;
}

@media (max-width: 560px) {
  .book-landing-card {
    padding: 32px 22px;
  }

  .book-landing-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.products-intro {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.products-intro-block {
  margin-top: 24px;
  max-width: 720px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 70%, white);
}

.products-intro-lead {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

.products-intro-note {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.products-intro-block a,
.products-intro a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
}

.products-intro-block a:hover,
.products-intro a:hover {
  text-decoration: underline;
}

.page-hero--products {
  padding-bottom: 28px;
}

.products-page-body {
  padding-top: 12px;
}

.products-section-lede {
  margin: 0 0 20px;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.pricing-section--calc-teaser {
  padding-top: 0;
}

.pricing-calc-wizard-wrap {
  max-width: none;
  margin: 0;
}

.pricing-calc-wizard-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pricing-calc-wizard-progress {
  margin-bottom: 24px;
  padding-bottom: 0;
}

.pricing-calc-wizard-step-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 10px;
}

.pricing-calc-wizard-dots {
  display: flex;
  gap: 8px;
}

.pricing-calc-wizard-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.pricing-calc-wizard-dot.is-active {
  background: var(--purple);
  transform: scale(1.15);
}

.pricing-calc-wizard-dot.is-done {
  background: color-mix(in srgb, var(--purple) 45%, white);
}

.pricing-calc-wizard-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 0;
}

.pricing-calc-wizard-nav-spacer {
  flex: 1;
}

.pricing-calc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.pricing-calc-aside {
  position: sticky;
  top: 96px;
}

.pricing-calc-panel-title {
  margin: 0 0 20px;
  font-size: clamp(22px, 2.5vw, 28px);
}

.pricing-calc-configure,
.pricing-calc-summary-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface) 70%, white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.pricing-calc-field {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.pricing-calc-field legend {
  padding: 0;
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.pricing-calc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pricing-calc-chips--teaser {
  margin: 16px 0 12px;
}

.pricing-calc-chip {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.pricing-calc-chip:hover {
  border-color: color-mix(in srgb, var(--purple) 40%, var(--line));
}

.pricing-calc-chip.is-active {
  border-color: var(--purple);
  background: color-mix(in srgb, var(--purple) 10%, white);
  color: var(--purple);
}

.pricing-calc-slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-calc-slider-row input[type="range"] {
  flex: 1;
  accent-color: var(--purple);
}

.pricing-calc-slider-row output {
  min-width: 2.5ch;
  font-weight: 700;
  color: var(--purple);
}

.pricing-calc-bundles {
  display: grid;
  gap: 10px;
}

.pricing-calc-bundle {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-calc-bundle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pricing-calc-bundle strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.pricing-calc-bundle span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.pricing-calc-bundle.is-selected {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--purple) 25%, transparent);
}

.pricing-calc-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}

.pricing-calc-check,
.pricing-calc-toggle,
.pricing-calc-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}

.pricing-calc-check input,
.pricing-calc-toggle input,
.pricing-calc-radio input {
  accent-color: var(--purple);
}

.pricing-calc-subfield {
  margin-top: 12px;
}

.pricing-calc-subfield.is-hidden {
  display: none;
}

.pricing-calc-subfield label {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.pricing-calc-subfield input[type="number"],
.pricing-calc-field select {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: white;
}

.pricing-calc-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.pricing-calc-hint,
.pricing-calc-muted {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.pricing-calc-disclaimer {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--purple) 8%, white);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.pricing-calc-summary-block {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.pricing-calc-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  line-height: 1.45;
}

.pricing-calc-summary-row span {
  color: var(--muted);
}

.pricing-calc-summary-modules h3 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
}

.pricing-calc-summary-list {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.pricing-calc-timing {
  margin: 16px 0 20px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-2);
}

.pricing-calc-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing-calc-teaser-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--purple) 6%, white), white);
}

.pricing-calc-teaser-card h2 {
  margin: 8px 0 0;
  font-size: clamp(22px, 2.5vw, 28px);
}

.pricing-calc-teaser-hint {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .pricing-calc-layout {
    grid-template-columns: 1fr;
  }

  .pricing-calc-aside {
    position: static;
  }

  .pricing-calc-checks {
    grid-template-columns: 1fr;
  }

  .pricing-calc-teaser-card {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-calc-teaser-actions {
    width: 100%;
  }

  .pricing-calc-product-cards--two {
    grid-template-columns: 1fr;
  }

  .pricing-calc-product-picker {
    grid-template-columns: 1fr;
  }

  .pricing-calc-bundles-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-calc-picker-intro {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
}

.pricing-calc-product-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-calc-picker-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 18px 16px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-calc-picker-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 6px;
}

.pricing-calc-picker-card span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-calc-picker-card.is-selected {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--purple) 20%, transparent);
  background: color-mix(in srgb, var(--purple) 4%, white);
}

.pricing-calc-picker-card:hover {
  border-color: color-mix(in srgb, var(--purple) 50%, var(--line));
}

.pricing-calc-config-sections {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-calc-picker-empty {
  margin: 0 0 20px;
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  text-align: center;
}

.pricing-calc-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.pricing-calc-stepper-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pricing-calc-stepper-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-calc-stepper-suffix {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  pointer-events: none;
  user-select: none;
}

.pricing-calc-stepper-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--purple);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
}

.pricing-calc-stepper-btn:hover {
  border-color: var(--purple);
  background: color-mix(in srgb, var(--purple) 8%, white);
}

.pricing-calc-stepper-input {
  width: 72px;
  text-align: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  color: var(--purple);
}

.pricing-calc-stepper-input::-webkit-outer-spin-button,
.pricing-calc-stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pricing-calc-product-legend {
  font-size: 15px;
  font-weight: 800;
  color: var(--purple-deep);
  margin-bottom: 12px;
}

.pricing-calc-product-toggle--section {
  margin-bottom: 16px;
}

.pricing-calc-product-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.pricing-calc-product-toggle input {
  margin-top: 4px;
  accent-color: var(--purple);
}

.pricing-calc-product-toggle-text strong {
  display: block;
  font-size: 15px;
}

.pricing-calc-product-toggle-text span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}

.pricing-calc-product-cards--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-calc-product-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-calc-product-card.is-selected {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--purple) 20%, transparent);
}

.pricing-calc-bundle-card {
  display: block;
  cursor: pointer;
}

.pricing-calc-bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 16px;
}

.pricing-calc-product-card-head strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.pricing-calc-product-card-head span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-calc-module-list {
  margin: 8px 0 0;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.pricing-calc-module-list li {
  margin-bottom: 8px;
}

.pricing-calc-module-list strong {
  color: var(--purple-deep);
  font-weight: 700;
  font-size: 15px;
}

.pricing-calc-bundle-section-label {
  margin: 10px 0 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--purple);
}

.pricing-calc-bundle-modules {
  margin-top: 10px;
}

.pricing-calc-bundle-card .pricing-calc-bundle-modules {
  max-height: none;
  overflow: visible;
}

.pricing-calc-fieldset {
  border: 0;
  margin: 16px 0;
  padding: 0;
}

.pricing-calc-radio--stack {
  align-items: flex-start;
  margin-bottom: 10px;
}

.pricing-calc-radio--stack span {
  line-height: 1.45;
}

.pricing-calc-field-error {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #c0392b;
  font-weight: 500;
}

.pricing-calc-field-error--block {
  margin-top: 12px;
}

.pricing-calc-contact-form input.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 1px color-mix(in srgb, #c0392b 25%, transparent);
}

.pricing-calc-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.pricing-calc-actions-row .pricing-calc-icon-row {
  margin-top: 0;
}

.pricing-calc-product-expand {
  margin-top: 14px;
  padding-top: 14px;
}

.pricing-calc-product-expand.is-hidden,
.pricing-calc-one-section.is-hidden {
  display: none;
}

.pricing-calc-one-section {
  margin-top: 8px;
}

.pricing-calc-sub-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px;
}

.pricing-calc-field-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}

.pricing-calc-segment {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.pricing-calc-segment-btn {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
}

.pricing-calc-segment-btn.is-active {
  border-color: var(--purple);
  background: color-mix(in srgb, var(--purple) 10%, white);
  color: var(--purple);
}

.pricing-calc-hint--accent {
  color: var(--purple);
  font-weight: 500;
}

.pricing-calc-contact-form {
  margin: 20px 0;
  padding-top: 0;
}

.pricing-calc-contact-title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
}

.pricing-calc-contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.pricing-calc-contact-form input {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: white;
}

.pricing-calc-req {
  color: var(--purple);
}

.pricing-calc-opt {
  font-weight: 400;
  color: var(--muted);
}

.pricing-calc-actions,
.pricing-calc-teaser-actions {
  margin-top: 8px;
}

.pricing-calc-icon-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.pricing-calc-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--purple);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.pricing-calc-icon-btn:hover {
  border-color: var(--purple);
  background: color-mix(in srgb, var(--purple) 8%, white);
}

.pricing-calc-status {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.pricing-calc-status--success {
  color: #15803d;
}

.pricing-calc-status--error {
  color: #b91c1c;
}

.pricing-calc-status--info {
  color: var(--purple-deep);
  background: color-mix(in srgb, var(--purple) 8%, white);
  border: 1px solid color-mix(in srgb, var(--purple) 20%, white);
  padding: 10px 14px;
  border-radius: 10px;
  margin-top: 12px;
}

.pricing-calc-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Scope builder v3 */
:root {
  --scope-step-max: 820px;
}

.pricing-section--scope-builder {
  padding: 8px 0 64px;
  background: linear-gradient(180deg, rgba(244, 238, 249, .35) 0%, transparent 100%);
}

.scope-builder-page .pricing-hero--scope.page.page-hero {
  padding: 48px 0 12px;
}

.scope-builder-page .pricing-hero--scope.pricing-hero {
  padding-bottom: 0;
}

.scope-builder-page .scope-step-rail {
  margin-bottom: 20px;
}

.scope-builder-page .scope-builder-content {
  margin-top: 0;
}

#scope-builder {
  scroll-margin-top: 96px;
}

.scope-builder-shell {
  max-width: var(--maxw);
}

.scope-builder-wizard {
  width: 100%;
}

.scope-builder-wizard .scope-step-rail,
.scope-builder-wizard .pricing-calc-step,
.scope-builder-wizard .pricing-calc-wizard-nav {
  max-width: var(--scope-step-max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.scope-builder-content {
  margin-top: 8px;
}

.scope-step-rail {
  margin-bottom: 28px;
}

.scope-step-rail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.scope-step-rail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.scope-step-rail-item.is-active {
  border-color: var(--purple);
  background: color-mix(in srgb, var(--purple) 10%, white);
  color: var(--purple);
}

.scope-step-rail-item.is-done {
  border-color: color-mix(in srgb, var(--purple) 35%, var(--line));
  color: var(--purple-deep);
}

.scope-step-rail-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--line);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.scope-step-rail-item.is-active .scope-step-rail-marker,
.scope-step-rail-item.is-done .scope-step-rail-marker {
  background: var(--purple);
  color: white;
}

.scope-choice-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.scope-choice-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scope-choice-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scope-choice-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--card);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.scope-choice-tile:hover {
  border-color: color-mix(in srgb, var(--purple) 40%, var(--line-2));
}

.scope-choice-tile.is-selected {
  border-color: var(--purple);
  background: color-mix(in srgb, var(--purple) 8%, white);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--purple) 20%, transparent);
}

.scope-choice-tile-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.scope-choice-tile-note {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}

.scope-bundle-grid {
  margin-bottom: 16px;
}

.scope-bundle-detail {
  margin-bottom: 24px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 60%, white);
}

.scope-bundle-detail-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--purple-deep);
  letter-spacing: -0.01em;
  text-transform: none;
}

.scope-bundle-detail-lede {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.scope-module-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scope-module-section-head {
  margin: 0;
}

.scope-module-section-head:not(:first-child) {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.scope-module-section-head .pricing-calc-bundle-section-label {
  margin: 0 0 2px;
}

.scope-module-section-lede {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.scope-module-section-lede--solo {
  margin: 0;
}

.scope-module-grid {
  display: grid;
  gap: 8px;
  align-items: stretch;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.scope-module-card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  height: 100%;
}

.scope-module-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  margin-bottom: 6px;
}

.scope-module-card-name {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--purple-deep);
  line-height: 1.3;
}

.scope-module-card-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  line-height: 1.3;
}

.scope-module-card-desc {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}

.scope-form-field {
  margin-bottom: 0;
}

.scope-form-sheet > .scope-form-field:not(.scope-form-field--mcq),
.scope-form-sheet > .scope-bundle-detail {
  margin-bottom: 0;
}

.scope-form-field--plain {
  margin-bottom: 24px;
}

.scope-form-grid {
  display: grid;
  gap: 0 24px;
  grid-template-columns: 1fr;
}

.scope-form-field--full {
  grid-column: 1 / -1;
}

.scope-summary-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 20px;
}

.scope-summary-card {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.scope-summary-card-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--purple-deep);
}

.scope-summary-dl {
  margin: 0;
  display: grid;
  gap: 8px;
}

.scope-summary-dl div {
  display: grid;
  grid-template-columns: minmax(7.25rem, 42%) minmax(0, 1fr);
  gap: 4px 14px;
  align-items: start;
  font-size: 15px;
  line-height: 1.5;
}

.scope-summary-dl dt {
  margin: 0;
  min-width: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  overflow-wrap: break-word;
}

.scope-summary-dl dd {
  margin: 0;
  min-width: 0;
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
  overflow-wrap: break-word;
}

.scope-summary-card--billing .scope-choice-grid {
  margin-bottom: 0;
}

.scope-review-lede {
  margin-bottom: 20px;
}

.scope-modal-form label {
  margin-bottom: 0;
}

.scope-modal-form input.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 1px color-mix(in srgb, #c0392b 25%, transparent);
}

.pricing-section--faq {
  padding-top: 48px;
}

@media (min-width: 768px) {
  .scope-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .scope-choice-grid--2,
  .scope-choice-grid--3 {
    grid-template-columns: 1fr;
  }

  .scope-step-rail-label {
    font-size: 13px;
  }

  .scope-summary-dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .scope-summary-dl dd {
    margin-bottom: 6px;
  }
}

.scope-dropdown {
  position: relative;
  max-width: 100%;
}

.scope-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--card);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.scope-dropdown-trigger:hover {
  border-color: color-mix(in srgb, var(--purple) 35%, var(--line-2));
}

.scope-dropdown.is-open .scope-dropdown-trigger,
.scope-dropdown-trigger:focus-visible {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--purple) 18%, transparent);
}

.scope-dropdown-value {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.scope-dropdown-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.scope-dropdown-note {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}

.scope-dropdown-chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transition: transform 0.2s;
}

.scope-dropdown.is-open .scope-dropdown-chevron {
  transform: rotate(-135deg) translateY(2px);
}

.scope-dropdown-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 280px;
  overflow-y: auto;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: white;
  box-shadow: 0 16px 40px rgba(40, 20, 60, 0.12);
}

.scope-dropdown-option {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}

.scope-dropdown-option:hover,
.scope-dropdown-option:focus-visible {
  outline: none;
  background: color-mix(in srgb, var(--purple) 8%, white);
}

.scope-dropdown-option.is-selected {
  background: color-mix(in srgb, var(--purple) 12%, white);
}

.scope-dropdown-option-label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.scope-dropdown-option-note {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}

.scope-question-card {
  max-width: 720px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.scope-form-sheet {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.scope-form-field--mcq {
  margin-bottom: 0;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.scope-form-field--bundle-detail {
  background: color-mix(in srgb, var(--surface) 60%, white);
}

.scope-add-products {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.scope-add-products-label {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.scope-add-products-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scope-add-product-btn {
  font-size: 14px;
}

.scope-review-actions-start,
.scope-review-actions-end {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-calc-actions-row--review {
  align-items: center;
}

.scope-copy-status {
  margin: 12px 0 0;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.scope-copy-status.is-success {
  color: #15803d;
  background: color-mix(in srgb, #15803d 10%, white);
  border: 1px solid color-mix(in srgb, #15803d 25%, white);
}

.scope-copy-status.is-error {
  color: #b91c1c;
  background: color-mix(in srgb, #b91c1c 8%, white);
  border: 1px solid color-mix(in srgb, #b91c1c 20%, white);
}

.scope-modal-form input {
  font-size: 16px;
}

.scope-modal-form label {
  font-size: 15px;
}

.scope-bundle-detail-title {
  font-size: 15px;
}

.pricing-calc-bundle-section-label {
  font-size: 12px;
}