/* ==========================================================================
   NBS Q360 Strategic Discovery
   Scoped under .q360-* so it cannot collide with the active WordPress theme.
   ========================================================================== */

.q360-app,
.q360-report,
.q360-internal,
.q360-transcript,
.q360-book,
.q360-nda,
.q360-nda-page,
.q360-admin,
.q360-notice {
	--q360-red: #c8232c;
	--q360-red-dark: #a11d24;
	--q360-ink: #46151a;
	--q360-body: #4a3a3e;
	--q360-muted: #6f5c62;
	--q360-teal: #007789;
	--q360-teal-deep: #005e70;
	--q360-gold: #d6a943;
	--q360-gold-deep: #8a6a12;
	--q360-line: #e7d8d8;
	--q360-line-soft: #f0e6e4;
	--q360-pale: #faf7f5;
	--q360-cream: #fdfbfa;
	--q360-white: #ffffff;
	--q360-radius: 14px;
	--q360-shadow: 0 18px 48px rgba(70, 21, 26, .07);
	--q360-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--q360-serif: "Fraunces", Georgia, "Times New Roman", serif;

	font-family: var(--q360-sans);
	color: var(--q360-ink);
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
}

.q360-app *,
.q360-report *,
.q360-internal *,
.q360-transcript *,
.q360-book *,
.q360-nda *,
.q360-nda-page *,
.q360-notice * {
	box-sizing: border-box;
}

.q360-app [hidden],
.q360-app [hidden="hidden"] { display: none !important; }

.q360-app {
	max-width: 1120px;
	margin: 0 auto;
	padding: 8px 20px 48px;
	line-height: 1.6;
}

.q360-kicker,
.q360-side-kicker {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: var(--q360-red);
}

/* -------------------------------------------------------------- buttons */

.q360-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 10px;
	border: 1px solid transparent;
	font-family: var(--q360-sans);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	text-decoration: none;
	transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.q360-btn:hover { transform: translateY(-1px); }
.q360-btn:disabled,
.q360-btn.is-busy { opacity: .62; cursor: progress; transform: none; }

.q360-btn-primary {
	background: var(--q360-red);
	border-color: var(--q360-red);
	color: #fff;
	box-shadow: 0 10px 24px rgba(200, 35, 44, .22);
}
.q360-btn-primary:hover { background: var(--q360-red-dark); color: #fff; }

/* Used by "Open my UPI app" and "Send this document" - a deliberate second
   rank below the primary red, so the page has one obvious main action. */
.q360-btn-secondary {
	background: var(--q360-cream);
	border-color: var(--q360-teal);
	color: var(--q360-teal-deep);
}
.q360-btn-secondary:hover,
.q360-btn-secondary:focus {
	background: #f2f9fa;
	border-color: var(--q360-teal-deep);
	color: var(--q360-teal-deep);
}

.q360-btn-ghost {
	background: #fff;
	border-color: var(--q360-line);
	color: var(--q360-ink);
}
.q360-btn-ghost:hover { border-color: var(--q360-ink); color: var(--q360-ink); }

/* ------------------------------------------------------ stage: gate form */

.q360-gate-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 0;
	background: #fff;
	border: 1px solid var(--q360-line);
	border-top: 4px solid var(--q360-red);
	border-radius: var(--q360-radius);
	box-shadow: var(--q360-shadow);
	overflow: hidden;
}

.q360-gate-aside {
	background: linear-gradient(168deg, #fbf4f2 0%, #f6ebe8 100%);
	color: var(--q360-body);
	padding: 40px 34px;
	border-right: 1px solid #ecdcd8;
}

.q360-gate-logo {
	display: block;
	width: 148px;
	height: auto;
	margin-bottom: 26px;
}

.q360-gate-aside .q360-kicker { color: var(--q360-red); }

.q360-gate-title {
	font-family: var(--q360-serif);
	font-size: 32px;
	line-height: 1.15;
	margin: 10px 0 12px;
	color: var(--q360-ink);
	font-weight: 600;
}

.q360-gate-sub {
	margin: 0 0 26px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--q360-muted);
}

.q360-gate-steps {
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
	counter-reset: q360step;
}

.q360-gate-steps li {
	counter-increment: q360step;
	position: relative;
	padding: 0 0 20px 42px;
	border-left: 1px solid var(--q360-line);
	margin-left: 13px;
}
.q360-gate-steps li:last-child { border-left-color: transparent; padding-bottom: 4px; }

.q360-gate-steps li::before {
	content: counter(q360step);
	position: absolute;
	left: -13px;
	top: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--q360-red);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.q360-gate-steps strong { display: block; font-size: 15px; color: var(--q360-ink); }
.q360-gate-steps span { display: block; font-size: 13.5px; color: var(--q360-muted); margin-top: 3px; line-height: 1.55; }

.q360-gate-trust {
	margin: 0;
	padding-top: 18px;
	border-top: 1px solid var(--q360-line);
	font-size: 12.5px;
	color: var(--q360-muted);
}

.q360-gate-form { padding: 40px 36px; }
.q360-gate-form h3 { font-family: var(--q360-serif); font-size: 24px; margin: 0 0 4px; font-weight: 600; color: var(--q360-ink); }
.q360-gate-note { margin: 0 0 24px; font-size: 13px; color: var(--q360-muted); }

.q360-field-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 18px;
}

.q360-field { display: block; }
.q360-field > span {
	display: block;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--q360-muted);
	margin-bottom: 6px;
	letter-spacing: .2px;
}

.q360-field input,
.q360-field select,
.q360-textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--q360-line);
	border-radius: 9px;
	background: #fff;
	font-family: var(--q360-sans);
	font-size: 15px;
	color: var(--q360-ink);
	line-height: 1.4;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.q360-field input:focus,
.q360-field select:focus,
.q360-textarea:focus {
	outline: none;
	border-color: var(--q360-teal);
	box-shadow: 0 0 0 3px rgba(0, 119, 137, .12);
}

.q360-field em {
	display: none;
	font-style: normal;
	font-size: 12px;
	color: var(--q360-red);
	margin-top: 5px;
}
.q360-field em.is-shown { display: block; }

em[data-q360-error].is-shown { display: block; font-style: normal; font-size: 12px; color: var(--q360-red); margin: -6px 0 8px; }

.q360-consents { margin: 24px 0 8px; display: grid; gap: 12px; }

.q360-check {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--q360-ink);
}
.q360-check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--q360-red); flex: 0 0 auto; }
.q360-check a { color: var(--q360-teal); }

.q360-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.q360-form-foot { margin-top: 22px; }
.q360-form-message { margin: 12px 0 0; font-size: 13.5px; color: var(--q360-muted); }
.q360-form-message.is-error { color: var(--q360-red); font-weight: 600; }

/* ---------------------------------------------------- stage: conversation */

.q360-stage-flow {
	background: #fff;
	border: 1px solid var(--q360-line);
	border-radius: var(--q360-radius);
	box-shadow: var(--q360-shadow);
	overflow: hidden;
}

.q360-flow-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	padding: 20px 30px;
	background: var(--q360-pale);
	border-bottom: 1px solid var(--q360-line);
}

.q360-flow-brand { display: flex; align-items: center; gap: 14px; }
.q360-flow-logo { width: 92px; height: auto; }
.q360-flow-brand strong { display: block; font-size: 15px; margin-top: 2px; }

.q360-progress { min-width: 220px; flex: 0 1 300px; }
.q360-progress-bar {
	height: 6px;
	border-radius: 4px;
	background: var(--q360-line-soft);
	overflow: hidden;
}
.q360-progress-bar i {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--q360-teal) 0%, var(--q360-red) 100%);
	border-radius: 4px;
	transition: width .45s cubic-bezier(.4, 0, .2, 1);
}
.q360-progress-label { display: block; margin-top: 7px; font-size: 12px; color: var(--q360-muted); text-align: right; }

.q360-flow-body { padding: 34px 34px 30px; }

.q360-ack {
	margin: 0 0 22px;
	padding: 15px 18px 15px 20px;
	background: rgba(0, 119, 137, .06);
	border-left: 3px solid var(--q360-teal);
	border-radius: 0 9px 9px 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--q360-teal-deep);
	animation: q360fade .4s ease both;
}

@keyframes q360fade {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: none; }
}

.q360-chapter {
	display: inline-block;
	margin: 0 0 14px;
	padding: 5px 12px;
	border-radius: 20px;
	background: var(--q360-pale);
	border: 1px solid var(--q360-line);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--q360-muted);
}

.q360-question {
	font-family: var(--q360-serif);
	font-size: 27px;
	line-height: 1.28;
	margin: 0 0 10px;
	font-weight: 600;
	color: var(--q360-ink);
}

.q360-helper { margin: 0 0 24px; font-size: 14.5px; color: var(--q360-muted); }

.q360-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.q360-option {
	display: block;
	width: 100%;
	text-align: left;
	padding: 15px 18px;
	border: 1px solid var(--q360-line);
	border-radius: 11px;
	background: #fff;
	font-family: var(--q360-sans);
	font-size: 15px;
	line-height: 1.45;
	color: var(--q360-ink);
	cursor: pointer;
	transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.q360-option:hover { border-color: var(--q360-teal); transform: translateY(-1px); }
.q360-option.is-selected {
	border-color: var(--q360-red);
	background: rgba(200, 35, 44, .05);
	box-shadow: inset 0 0 0 1px var(--q360-red);
}

.q360-option-label { display: block; font-weight: 500; }
.q360-option-note { display: block; margin-top: 4px; font-size: 12.5px; color: var(--q360-muted); }

.q360-multi-hint { margin: 12px 0 0; font-size: 12.5px; color: var(--q360-muted); }

.q360-textarea { margin-top: 4px; resize: vertical; min-height: 120px; }
.q360-textarea-note { margin-top: 16px; min-height: 62px; font-size: 14px; }

.q360-inline-error { margin: 16px 0 0; font-size: 13.5px; color: var(--q360-red); font-weight: 600; }

.q360-flow-foot {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var(--q360-line);
}

.q360-thinking { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--q360-muted); }
.q360-thinking i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--q360-teal);
	display: inline-block;
	animation: q360pulse 1.05s infinite ease-in-out;
}
.q360-thinking i:nth-child(2) { animation-delay: .16s; }
.q360-thinking i:nth-child(3) { animation-delay: .32s; margin-right: 6px; }

@keyframes q360pulse {
	0%, 80%, 100% { opacity: .25; transform: scale(.8); }
	40% { opacity: 1; transform: scale(1); }
}

.q360-flow-foot-note {
	padding: 14px 34px;
	background: var(--q360-pale);
	border-top: 1px solid var(--q360-line);
	font-size: 12.5px;
	color: var(--q360-muted);
}

/* ------------------------------------------------------ stage: building */

.q360-building {
	text-align: center;
	padding: 76px 24px 84px;
	background: #fff;
	border: 1px solid var(--q360-line);
	border-radius: var(--q360-radius);
	box-shadow: var(--q360-shadow);
}

.q360-building-ring {
	width: 62px;
	height: 62px;
	margin: 0 auto 26px;
	border-radius: 50%;
	border: 3px solid var(--q360-line);
	border-top-color: var(--q360-red);
	border-right-color: var(--q360-teal);
	animation: q360spin 1.05s linear infinite;
}

@keyframes q360spin { to { transform: rotate(360deg); } }

.q360-building h3 { font-family: var(--q360-serif); font-size: 25px; margin: 0 0 12px; font-weight: 600; }
.q360-building p { margin: 0 0 6px; font-size: 15px; color: var(--q360-muted); }
.q360-building-note { font-size: 13px !important; color: var(--q360-muted) !important; margin-top: 14px !important; }

/* --------------------------------------------------------- stage: notice */

.q360-notice {
	background: #fff;
	border: 1px solid var(--q360-line);
	border-radius: var(--q360-radius);
	padding: 46px 40px;
	box-shadow: var(--q360-shadow);
	max-width: 760px;
	margin: 40px auto;
}
.q360-notice h1,
.q360-notice h3 { font-family: var(--q360-serif); font-size: 26px; margin: 0 0 14px; font-weight: 600; }
.q360-notice p { margin: 0 0 12px; font-size: 15px; color: var(--q360-muted); line-height: 1.65; }
.q360-fatal-contact { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 20px !important; }
.q360-fatal-contact a { color: var(--q360-teal); }

/* ================================================================ REPORT */

.q360-standalone { margin: 0; background: var(--q360-pale); }
.q360-report-page { padding: 32px 16px 64px; }

.q360-report {
	max-width: 940px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--q360-line);
	border-radius: var(--q360-radius);
	box-shadow: var(--q360-shadow);
	padding: 46px 52px 40px;
	line-height: 1.62;
}

.q360-rep-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
	padding-bottom: 22px;
	border-bottom: 2px solid var(--q360-red);
}

.q360-rep-brand { display: flex; align-items: center; gap: 16px; }
.q360-rep-logo { width: 116px; height: auto; }
.q360-rep-kicker {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.7px;
	text-transform: uppercase;
	color: var(--q360-red);
}
.q360-rep-org { display: block; font-size: 19px; font-weight: 600; margin-top: 3px; }

.q360-rep-meta { display: grid; grid-template-columns: repeat(2, auto); gap: 6px 26px; margin: 0; }
.q360-rep-meta dt { font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--q360-muted); margin: 0; }
.q360-rep-meta dd { margin: 1px 0 0; font-size: 13.5px; font-weight: 600; color: var(--q360-ink); }

.q360-rep-hero { padding: 30px 0 6px; }
.q360-rep-hero h1 {
	font-family: var(--q360-serif);
	font-size: 33px;
	line-height: 1.22;
	margin: 0 0 14px;
	font-weight: 600;
	color: var(--q360-ink);
}
.q360-rep-reflection { margin: 0; font-size: 16px; line-height: 1.7; color: var(--q360-body); }

.q360-rep-section { padding: 30px 0; border-top: 1px solid var(--q360-line); }

.q360-rep-section > h2 {
	display: flex;
	align-items: baseline;
	gap: 12px;
	font-family: var(--q360-serif);
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 14px;
	color: var(--q360-ink);
}
.q360-rep-section > h2 span {
	font-family: var(--q360-sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.4px;
	color: var(--q360-red);
}
.q360-rep-section h3 { font-size: 16.5px; font-weight: 600; margin: 20px 0 8px; color: var(--q360-ink); }
.q360-rep-section h4 { font-size: 13px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--q360-muted); margin: 20px 0 8px; }
.q360-rep-section p { font-size: 14.8px; }

.q360-lede { margin: 0 0 18px; color: var(--q360-muted); font-size: 14.5px; }
.q360-sub { color: var(--q360-muted); font-size: 13px; }
.q360-accent { color: var(--q360-teal-deep); font-weight: 600; }

.q360-heard { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.q360-heard li {
	position: relative;
	padding: 12px 16px 12px 42px;
	background: var(--q360-pale);
	border-radius: 9px;
	font-size: 14.8px;
}
.q360-heard li::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 20px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--q360-red);
}

.q360-chart { margin: 6px 0 22px; text-align: center; }
.q360-chart-tight { margin: 14px 0 0; }
.q360-svg { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.q360-gauge { display: block; margin: 0 auto; }

.q360-table-wrap { overflow-x: auto; margin: 6px 0 0; }
.q360-table { width: 100%; border-collapse: collapse; font-size: 13.8px; }
.q360-table th {
	text-align: left;
	padding: 10px 12px;
	background: var(--q360-pale);
	border-bottom: 2px solid var(--q360-line);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .9px;
	text-transform: uppercase;
	color: var(--q360-muted);
	white-space: nowrap;
}
.q360-table td { padding: 11px 12px; border-bottom: 1px solid var(--q360-line-soft); vertical-align: top; line-height: 1.55; }
.q360-table tbody tr:last-child td { border-bottom: none; }
.q360-num { text-align: center; white-space: nowrap; }
.q360-gap { color: var(--q360-teal-deep); font-weight: 600; }

.q360-pill {
	display: inline-block;
	padding: 3px 11px;
	border-radius: 20px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .3px;
}
.q360-pill-high { background: rgba(200, 35, 44, .12); color: var(--q360-red-dark); }
.q360-pill-medium { background: rgba(214, 169, 67, .18); color: var(--q360-gold-deep); }
.q360-pill-low { background: rgba(0, 119, 137, .12); color: var(--q360-teal-deep); }

.q360-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.q360-card {
	padding: 20px 22px;
	background: #fff;
	border: 1px solid var(--q360-line);
	border-left: 4px solid var(--q360-teal);
	border-radius: 11px;
}
.q360-card h3 { margin: 6px 0 8px; font-size: 16.5px; }
.q360-card p { margin: 0 0 8px; font-size: 14.2px; color: var(--q360-body); }
.q360-card-tag {
	display: inline-block;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	color: var(--q360-muted);
}
.q360-card-impact { color: var(--q360-muted) !important; font-size: 13.4px !important; margin-bottom: 0 !important; }
.q360-sev-5 { border-left-color: var(--q360-red); }
.q360-sev-4 { border-left-color: var(--q360-red); }
.q360-sev-3 { border-left-color: var(--q360-gold); }
.q360-sev-2 { border-left-color: var(--q360-teal); }
.q360-sev-1 { border-left-color: #c2a9ab; }

.q360-pathway { display: grid; grid-template-columns: 1.55fr 1fr; gap: 26px; align-items: start; }
.q360-pathway-main {
	padding: 26px 28px;
	background: linear-gradient(160deg, var(--q360-cream) 0%, var(--q360-pale) 100%);
	border: 1px solid var(--q360-line);
	border-radius: 12px;
}
.q360-pathway-icon { font-size: 30px; line-height: 1; display: block; margin-bottom: 8px; }
.q360-pathway-main h3 { margin: 0 0 8px; font-family: var(--q360-serif); font-size: 22px; }
.q360-pathway-summary { font-size: 15px !important; color: var(--q360-muted); margin: 0 0 14px !important; }
.q360-pathway-side {
	padding: 22px 24px;
	background: var(--q360-pale);
	border: 1px solid var(--q360-line);
	border-radius: 12px;
}
.q360-pathway-side strong { display: block; margin: 6px 0 8px; font-size: 16px; }
.q360-pathway-side p { font-size: 13.8px !important; color: var(--q360-muted); margin: 0; }

.q360-ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.q360-ticks li { position: relative; padding-left: 26px; font-size: 14.4px; }
.q360-ticks li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 7px;
	width: 11px;
	height: 6px;
	border-left: 2px solid var(--q360-teal);
	border-bottom: 2px solid var(--q360-teal);
	transform: rotate(-45deg);
}

.q360-phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.q360-phase {
	padding: 22px 22px 20px;
	background: #fff;
	border: 1px solid var(--q360-line);
	border-top: 4px solid var(--q360-red);
	border-radius: 11px;
}
.q360-phase-window {
	display: inline-block;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--q360-red);
}
.q360-phase h3 { margin: 6px 0 8px; font-size: 17px; }
.q360-phase p { font-size: 14px !important; margin: 0 0 10px; }
.q360-phase ul { margin: 0 0 10px; padding-left: 18px; }
.q360-phase li { font-size: 13.8px; margin-bottom: 5px; }
.q360-phase-outcome { color: var(--q360-teal-deep) !important; font-size: 13.4px !important; margin-bottom: 0 !important; }

.q360-invest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 14px; }
.q360-invest-grid p { margin: 6px 0 0; font-size: 14.2px; color: var(--q360-body); }

.q360-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.q360-dots, .q360-numbered { margin: 0; padding-left: 20px; }
.q360-dots li, .q360-numbered li { font-size: 14.2px; margin-bottom: 7px; line-height: 1.55; }
.q360-dots { list-style: none; padding-left: 0; }
.q360-dots li { position: relative; padding-left: 20px; }
.q360-dots li::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 8px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--q360-teal);
}
.q360-dots-red li::before { background: var(--q360-red); }

.q360-disclaimer { margin-top: 18px !important; font-size: 12.5px !important; color: var(--q360-muted); font-style: italic; }

.q360-rep-cta {
	margin-top: 30px;
	padding: 34px 34px 30px;
	background: linear-gradient(160deg, var(--q360-cream) 0%, var(--q360-pale) 100%);
	border: 1px solid var(--q360-red);
	border-left: 5px solid var(--q360-red);
	border-radius: 13px;
	color: var(--q360-body);
}
.q360-rep-cta .q360-side-kicker { color: var(--q360-red); }
.q360-rep-cta h2 { font-family: var(--q360-serif); font-size: 26px; margin: 8px 0 10px; color: var(--q360-ink); font-weight: 600; }
.q360-rep-cta p { margin: 0 0 18px; color: var(--q360-body); font-size: 15px; }
.q360-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.q360-cta-alt { margin: 16px 0 0 !important; font-size: 13.5px !important; }
.q360-cta-alt a { color: var(--q360-teal-deep); }

.q360-rep-foot {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--q360-line);
}
.q360-rep-foot p { margin: 0 0 8px; font-size: 12.2px; line-height: 1.65; color: var(--q360-muted); }
.q360-rep-foot a { color: var(--q360-teal); }

/* ------------------------------------------------- internal + transcript */

.q360-internal,
.q360-transcript {
	background: #fff;
	border: 1px solid var(--q360-line);
	border-radius: 12px;
	padding: 28px 30px;
	line-height: 1.6;
}

.q360-internal-head { padding-bottom: 16px; border-bottom: 2px solid var(--q360-red); margin-bottom: 22px; }
.q360-internal-head h2 { font-family: var(--q360-serif); font-size: 23px; margin: 6px 0 0; font-weight: 600; }

.q360-internal-top { display: grid; grid-template-columns: 210px 1fr; gap: 28px; align-items: start; margin-bottom: 26px; }
.q360-internal-gauge { text-align: center; }
.q360-internal-gauge strong { display: block; margin-top: 10px; font-size: 16px; }

.q360-internal-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 0; }
.q360-internal-facts dt { font-size: 10.5px; letter-spacing: 1.1px; text-transform: uppercase; color: var(--q360-muted); margin: 0; }
.q360-internal-facts dd { margin: 2px 0 0; font-size: 13.8px; word-break: break-word; }
.q360-internal-facts a { color: var(--q360-teal); }

.q360-internal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.q360-internal-grid h3 { font-size: 13px; font-weight: 700; letter-spacing: .9px; text-transform: uppercase; color: var(--q360-red); margin: 0 0 10px; }
.q360-internal-grid h3 + * { margin-top: 0; }
.q360-internal-grid p { font-size: 13.8px; margin: 0 0 8px; }

.q360-internal-notes { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--q360-line); }
.q360-internal-notes h3 { font-size: 13px; font-weight: 700; letter-spacing: .9px; text-transform: uppercase; color: var(--q360-red); margin: 0 0 10px; }
.q360-internal-notes p { font-size: 14px; margin: 0 0 9px; }

.q360-transcript h2 { font-family: var(--q360-serif); font-size: 21px; margin: 0 0 18px; font-weight: 600; }
.q360-transcript-list { margin: 0; padding-left: 22px; }
.q360-transcript-list li { margin-bottom: 18px; }
.q360-transcript-list strong { display: block; font-size: 14.6px; margin: 3px 0 5px; }
.q360-transcript-list p { margin: 0; font-size: 14.2px; color: var(--q360-body); white-space: pre-wrap; }
.q360-transcript-lens { font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--q360-muted); }

/* ------------------------------------------------------------ WP admin */

.q360-admin .q360-admin-panel { margin-top: 20px; max-width: 1080px; }
.q360-admin .q360-admin-report { background: var(--q360-pale); padding: 22px; border-radius: 12px; }
.q360-admin .q360-report { padding: 34px 36px; box-shadow: none; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 980px) {
	.q360-gate-grid { grid-template-columns: 1fr; }
	.q360-gate-aside {
		border-right: 0;
		border-bottom: 1px solid var(--q360-line);
	}
	.q360-pathway { grid-template-columns: 1fr; }
	.q360-phases { grid-template-columns: 1fr; }
	.q360-internal-grid { grid-template-columns: 1fr; }
	.q360-internal-top { grid-template-columns: 1fr; }
	.q360-report { padding: 34px 26px 30px; }
	.q360-rep-hero h1 { font-size: 27px; }
}

@media (max-width: 720px) {
	.q360-app { padding: 4px 14px 40px; }
	.q360-field-grid { grid-template-columns: 1fr; }
	.q360-options { grid-template-columns: 1fr; }
	.q360-cards { grid-template-columns: 1fr; }
	.q360-two-col,
	.q360-invest-grid { grid-template-columns: 1fr; }
	.q360-internal-facts { grid-template-columns: 1fr; }
	.q360-gate-aside,
	.q360-gate-form { padding: 30px 22px; }
	.q360-flow-body { padding: 26px 22px 24px; }
	.q360-flow-head { padding: 16px 22px; }
	.q360-flow-foot-note { padding: 13px 22px; }
	.q360-question { font-size: 22px; }
	.q360-gate-title { font-size: 26px; }
	.q360-rep-meta { grid-template-columns: 1fr 1fr; }
	.q360-report { padding: 26px 18px 24px; }
	.q360-rep-cta { padding: 26px 22px 24px; }
}

/* ---------------------------------------------------------------- print */

@media print {
	@page { size: A4; margin: 14mm 12mm; }

	body { background: #fff !important; }

	.q360-noprint,
	.q360-app > .q360-stage:not(.q360-stage-report),
	#wpadminbar,
	header[role="banner"],
	nav,
	footer[role="contentinfo"] { display: none !important; }

	.q360-report-page { padding: 0 !important; }

	.q360-report {
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
		border: none !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		font-size: 11.4pt;
	}

	.q360-rep-section,
	.q360-card,
	.q360-phase,
	.q360-pathway-main,
	.q360-pathway-side,
	.q360-heard li,
	.q360-table tr { break-inside: avoid; page-break-inside: avoid; }

	.q360-break { break-before: page; page-break-before: always; }

	.q360-rep-head { break-after: avoid; page-break-after: avoid; }
	.q360-rep-section > h2 { break-after: avoid; page-break-after: avoid; }

	.q360-table th { background: #f7f2f0 !important; }

	.q360-svg, .q360-chart { break-inside: avoid; page-break-inside: avoid; }

	* { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
}

/* ==========================================================================
   Booking and payment
   The standalone page reached from the report CTA and the client emails.
   ========================================================================== */

.q360-book-page {
	padding: 34px 18px 60px;
	background: var(--q360-pale);
	min-height: 100vh;
}

.q360-book {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	background: var(--q360-white);
	border-radius: 18px;
	box-shadow: var(--q360-shadow);
	overflow: hidden;
}

.q360-book [hidden] { display: none !important; }

/* --- header ------------------------------------------------------------ */

.q360-book-head {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	padding: 28px 34px 22px;
	border-bottom: 1px solid var(--q360-line);
}

.q360-book-logo {
	width: 132px;
	height: auto;
	display: block;
	flex: 0 0 auto;
}

.q360-book-head-text { min-width: 240px; flex: 1 1 320px; }

.q360-book-head-text .q360-kicker {
	display: block;
	font-size: 10px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: var(--q360-red);
	font-weight: 700;
}

.q360-book-head-text h1 {
	margin: 6px 0 4px;
	font-family: var(--q360-serif);
	font-size: clamp(22px, 3vw, 30px);
	line-height: 1.2;
	color: var(--q360-ink);
	font-weight: 600;
}

.q360-book-head-text p {
	margin: 0;
	font-size: 13px;
	color: var(--q360-muted);
}

/* --- progress rail ------------------------------------------------------ */

.q360-book-rail {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 26px;
	margin: 0;
	padding: 16px 34px;
	list-style: none;
	background: var(--q360-pale);
	border-bottom: 1px solid var(--q360-line);
}

.q360-book-rail li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--q360-muted);
	letter-spacing: .2px;
}

.q360-book-rail li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid var(--q360-line);
	background: var(--q360-white);
	font-size: 11.5px;
	font-weight: 700;
	color: var(--q360-muted);
}

.q360-book-rail li.is-active { color: var(--q360-ink); }
.q360-book-rail li.is-active span {
	background: var(--q360-red);
	border-color: var(--q360-red);
	color: #fff;
}

.q360-book-rail li.is-done { color: var(--q360-teal-deep); }
.q360-book-rail li.is-done span {
	background: var(--q360-teal);
	border-color: var(--q360-teal);
	color: #fff;
}

/* --- stages and layout -------------------------------------------------- */

.q360-book-stage { padding: 30px 34px 36px; }

.q360-book-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}

.q360-book-main h2 {
	margin: 0 0 8px;
	font-family: var(--q360-serif);
	font-size: clamp(20px, 2.4vw, 26px);
	line-height: 1.25;
	font-weight: 600;
	color: var(--q360-ink);
}

.q360-book-lead {
	margin: 0 0 22px;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--q360-muted);
	max-width: 62ch;
}

.q360-bk-block { margin: 0 0 24px; }

.q360-bk-h3 {
	margin: 26px 0 10px;
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--q360-red);
	font-weight: 700;
}

.q360-bk-hint {
	margin: -4px 0 14px;
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--q360-muted);
}

.q360-bk-error {
	margin: 6px 0 0;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--q360-red);
	display: none;
}

.q360-bk-error.is-shown { display: block; }

/* --- choice tiles (format and duration) --------------------------------- */

.q360-bk-choices {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 10px;
}

.q360-bk-choice {
	position: relative;
	display: block;
	cursor: pointer;
}

.q360-bk-choice input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.q360-bk-choice-body {
	display: block;
	padding: 14px 16px;
	border: 1px solid var(--q360-line);
	border-radius: 12px;
	background: var(--q360-white);
	transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
	height: 100%;
}

.q360-bk-choice-body strong {
	display: block;
	font-size: 14px;
	font-weight: 650;
	color: var(--q360-ink);
	line-height: 1.35;
}

.q360-bk-choice-body em {
	display: block;
	margin-top: 4px;
	font-style: normal;
	font-size: 12.5px;
	line-height: 1.55;
	color: var(--q360-muted);
}

.q360-bk-choice:hover .q360-bk-choice-body { border-color: #d7b9b9; }

.q360-bk-choice input:checked + .q360-bk-choice-body {
	border-color: var(--q360-red);
	background: #fdf6f6;
	box-shadow: 0 0 0 1px var(--q360-red) inset;
}

.q360-bk-choice input:focus-visible + .q360-bk-choice-body {
	outline: 2px solid var(--q360-teal);
	outline-offset: 2px;
}

.q360-bk-price {
	display: inline-block;
	margin-top: 8px;
	padding: 3px 9px;
	border-radius: 99px;
	background: var(--q360-pale);
	font-size: 12px;
	font-weight: 700;
	color: var(--q360-teal-deep);
	letter-spacing: .2px;
}

/* --- slot fields -------------------------------------------------------- */

.q360-bk-slots {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}

.q360-bk-foot { margin-top: 26px; }

/* --- aside cards -------------------------------------------------------- */

.q360-book-aside {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: sticky;
	top: 20px;
}

.q360-bk-card {
	padding: 20px 22px;
	border: 1px solid var(--q360-line);
	border-radius: 14px;
	background: var(--q360-white);
}

.q360-bk-card .q360-side-kicker {
	display: block;
	margin-bottom: 10px;
	font-size: 10px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--q360-red);
}

.q360-bk-card p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.65;
	color: var(--q360-muted);
}

.q360-bk-card-fee {
	background: linear-gradient(160deg, var(--q360-cream) 0%, #f2f9fa 100%);
	border-color: var(--q360-teal);
	border-left-width: 4px;
}

.q360-bk-card-fee .q360-side-kicker { color: var(--q360-teal-deep); }

.q360-bk-card p.q360-bk-amount {
	margin: 0;
	font-family: var(--q360-serif);
	font-size: 32px;
	line-height: 1.1;
	font-weight: 600;
	color: var(--q360-ink);
}

.q360-bk-card p.q360-bk-amount-note {
	margin: 6px 0 0;
	font-size: 12.5px;
	color: var(--q360-muted);
}

.q360-bk-card-quiet { background: var(--q360-pale); }

/* --- payment summary ---------------------------------------------------- */

.q360-bk-summary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 0;
	margin: 0 0 26px;
	border: 1px solid var(--q360-line);
	border-radius: 12px;
	overflow: hidden;
	background: var(--q360-pale);
}

.q360-bk-summary > div {
	padding: 13px 16px;
	border-right: 1px solid var(--q360-line);
}

.q360-bk-summary > div:last-child { border-right: 0; }

.q360-bk-summary dt {
	margin: 0 0 4px;
	font-size: 10px;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--q360-muted);
}

.q360-bk-summary dd {
	margin: 0;
	font-size: 13.5px;
	font-weight: 650;
	line-height: 1.45;
	color: var(--q360-ink);
}

/* --- payment methods ---------------------------------------------------- */

.q360-bk-methods {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 10px;
	margin-bottom: 22px;
}

.q360-bk-method { position: relative; display: block; cursor: pointer; }

.q360-bk-method input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.q360-bk-method-body {
	display: block;
	padding: 14px 16px;
	border: 1px solid var(--q360-line);
	border-radius: 12px;
	background: var(--q360-white);
	height: 100%;
	transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.q360-bk-method-body strong {
	display: block;
	font-size: 14px;
	font-weight: 650;
	color: var(--q360-ink);
}

.q360-bk-method-body em {
	display: block;
	margin-top: 4px;
	font-style: normal;
	font-size: 12.5px;
	line-height: 1.55;
	color: var(--q360-muted);
}

.q360-bk-method input:checked + .q360-bk-method-body {
	border-color: var(--q360-teal);
	background: #f2fafb;
	box-shadow: 0 0 0 1px var(--q360-teal) inset;
}

.q360-bk-method input:focus-visible + .q360-bk-method-body {
	outline: 2px solid var(--q360-teal);
	outline-offset: 2px;
}

.q360-bk-method-badge {
	display: inline-block;
	margin-top: 8px;
	padding: 2px 8px;
	border-radius: 99px;
	background: #e8f4f6;
	color: var(--q360-teal-deep);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .6px;
	text-transform: uppercase;
}

/* --- payment panels ----------------------------------------------------- */

.q360-bk-panel {
	padding: 22px 24px;
	border: 1px solid var(--q360-line);
	border-radius: 14px;
	background: var(--q360-pale);
	margin-bottom: 18px;
}

.q360-bk-panel > p {
	margin: 0 0 16px;
	font-size: 13.5px;
	line-height: 1.65;
	color: var(--q360-muted);
	max-width: 60ch;
}

.q360-bk-upi {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.q360-bk-upi-main { flex: 1 1 260px; min-width: 240px; }

.q360-bk-upi-qr {
	flex: 0 0 auto;
	padding: 12px;
	background: var(--q360-white);
	border: 1px solid var(--q360-line);
	border-radius: 12px;
	text-align: center;
}

.q360-bk-upi-qr img {
	display: block;
	width: 170px;
	height: auto;
	margin: 0 auto;
}

.q360-bk-upi-qr span {
	display: block;
	margin-top: 8px;
	font-size: 11.5px;
	color: var(--q360-muted);
}

.q360-bk-upi-link { margin: 0 0 14px; }

.q360-bk-vpa {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	padding: 11px 14px;
	background: var(--q360-white);
	border: 1px solid var(--q360-line);
	border-radius: 10px;
	margin-bottom: 14px;
}

.q360-bk-vpa code {
	font-size: 14px;
	font-weight: 650;
	color: var(--q360-ink);
	background: none;
	padding: 0;
	word-break: break-all;
}

.q360-bk-bank {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
	background: var(--q360-white);
	border: 1px solid var(--q360-line);
	border-radius: 10px;
	overflow: hidden;
}

.q360-bk-bank th,
.q360-bk-bank td {
	padding: 10px 14px;
	text-align: left;
	border-bottom: 1px solid var(--q360-line);
	font-size: 13.5px;
	vertical-align: middle;
}

.q360-bk-bank tr:last-child th,
.q360-bk-bank tr:last-child td { border-bottom: 0; }

.q360-bk-bank th {
	width: 34%;
	font-size: 11.5px;
	letter-spacing: .6px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--q360-muted);
}

.q360-bk-bank td { font-weight: 600; color: var(--q360-ink); word-break: break-word; }

.q360-bk-bank td button { margin-left: 10px; vertical-align: middle; }

/* --- declare form ------------------------------------------------------- */

.q360-bk-declare {
	padding-top: 16px;
	border-top: 1px dashed var(--q360-line);
}

.q360-bk-declare-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 14px;
	margin-bottom: 14px;
}

.q360-bk-fineprint {
	margin: 14px 0 0;
	font-size: 12px;
	line-height: 1.6;
	color: var(--q360-muted);
}

.q360-bk-steps {
	margin: 0 0 18px;
	padding-left: 20px;
}

.q360-bk-steps li {
	margin-bottom: 8px;
	font-size: 13.5px;
	line-height: 1.65;
	color: var(--q360-muted);
}

.q360-bk-back { margin-top: 18px; }

/* --- outcome stages ----------------------------------------------------- */

.q360-bk-outcome {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
	padding: 18px 0 8px;
}

.q360-bk-outcome-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	margin-bottom: 18px;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
}

.q360-bk-outcome-good { background: var(--q360-teal); }
.q360-bk-outcome-wait { background: var(--q360-gold); }

.q360-bk-outcome h2 {
	margin: 0 0 10px;
	font-family: var(--q360-serif);
	font-size: clamp(21px, 2.6vw, 27px);
	line-height: 1.25;
	font-weight: 600;
	color: var(--q360-ink);
}

.q360-bk-outcome > p {
	margin: 0 auto 20px;
	max-width: 56ch;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--q360-muted);
}

.q360-bk-outcome-panel {
	text-align: left;
	padding: 22px 24px;
	border: 1px solid var(--q360-line);
	border-radius: 14px;
	background: var(--q360-pale);
	margin-bottom: 20px;
}

.q360-bk-outcome-contact {
	font-size: 13px;
	line-height: 1.7;
	color: var(--q360-muted);
}

/* --- footer ------------------------------------------------------------- */

.q360-book-foot {
	padding: 20px 34px 26px;
	border-top: 1px solid var(--q360-line);
	background: var(--q360-pale);
	font-size: 12px;
	line-height: 1.7;
	color: var(--q360-muted);
}

.q360-book-foot p { margin: 0 0 6px; }

.q360-book-foot-links a {
	color: var(--q360-teal-deep);
	text-decoration: none;
	margin-right: 14px;
}

.q360-book-foot-links a:hover { text-decoration: underline; }

.q360-btn-tiny {
	padding: 5px 11px !important;
	font-size: 11.5px !important;
	border-radius: 7px !important;
}

.q360-notice-inline {
	padding: 20px 22px;
	border: 1px solid var(--q360-gold);
	border-radius: 12px;
	background: #fdf8ec;
	margin-bottom: 20px;
}

.q360-notice-inline h3 {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 650;
	color: var(--q360-ink);
}

.q360-notice-inline p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.65;
	color: var(--q360-muted);
}

/* --- responsive --------------------------------------------------------- */

@media (max-width: 900px) {
	.q360-book-grid { grid-template-columns: 1fr; gap: 26px; }
	.q360-book-aside { position: static; }
}

@media (max-width: 640px) {
	.q360-book-page { padding: 18px 10px 40px; }
	.q360-book-head { padding: 22px 20px 18px; }
	.q360-book-rail { padding: 13px 20px; gap: 6px 16px; }
	.q360-book-rail li { font-size: 11.5px; }
	.q360-book-stage { padding: 24px 20px 30px; }
	.q360-book-foot { padding: 18px 20px 22px; }
	.q360-bk-summary > div { border-right: 0; border-bottom: 1px solid var(--q360-line); }
	.q360-bk-summary > div:last-child { border-bottom: 0; }
	.q360-bk-panel { padding: 18px 16px; }
	.q360-bk-bank th { width: 40%; }
}

/* --- admin bookings console --------------------------------------------- */

.q360-bk-card-head {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-bottom: 14px;
}

.q360-admin .q360-bk-card {
	background: #fff;
	border: 1px solid var(--q360-line);
	border-radius: 8px;
	padding: 18px 20px;
	margin: 14px 0;
	box-shadow: 0 1px 2px rgba(70, 21, 26, .06);
}

.q360-admin .q360-bk-card h2 { margin: 0 0 4px; font-size: 17px; }
.q360-admin .q360-bk-card h3 {
	margin: 0 0 6px;
	font-size: 10.5px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #c8232c;
}
.q360-admin .q360-bk-card h3:not(:first-child) { margin-top: 14px; }
.q360-admin .q360-bk-card p { margin: 0 0 6px; font-size: 13px; line-height: 1.6; }

.q360-bk-sub { color: var(--q360-muted); font-size: 12.5px !important; }
.q360-bk-muted { color: var(--q360-muted); }

.q360-bk-stat { text-align: right; }

.q360-bk-pill {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 99px;
	color: #fff;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .3px;
}

.q360-bk-fee {
	display: block;
	margin-top: 8px;
	font-size: 18px;
	font-weight: 700;
	color: var(--q360-ink);
}

.q360-bk-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 22px;
	padding: 14px 0;
	border-top: 1px solid var(--q360-line-soft);
	border-bottom: 1px solid var(--q360-line-soft);
}

.q360-admin .q360-bk-slots {
	margin: 0;
	padding-left: 20px;
	display: block;
}

.q360-admin .q360-bk-slots li {
	margin-bottom: 8px;
	font-size: 13px;
	line-height: 1.5;
}

.q360-admin .q360-bk-slots li.is-confirmed {
	font-weight: 700;
	color: #1f7a3d;
}

.q360-bk-extras { margin-top: 12px; padding: 10px 12px; border-radius: 8px; background: #f7f2f0; }
.q360-bk-extras p { margin: 0 0 5px; }
.q360-bk-extras p:last-child { margin-bottom: 0; }
.q360-bk-actions { padding-top: 14px; }
.q360-bk-actions .button { margin: 0 6px 6px 0; }

.q360-admin .q360-bk-danger {
	color: #a11d24 !important;
	border-color: #d8a1a4 !important;
}

/* ==========================================================================
   Closing panels: private documents and the invoice request (v3.1.0)
   ========================================================================== */

.q360-bk-docs-lead {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.62;
	color: var(--q360-muted);
}

.q360-bk-docs-ideas,
.q360-bk-inv-blanks {
	margin: 0 0 16px;
	padding: 0 0 0 2px;
}

.q360-bk-docs-ideas li,
.q360-bk-inv-blanks li {
	font-size: 14px;
	line-height: 1.55;
	color: var(--q360-ink);
}

.q360-bk-docs-privacy {
	margin: 0 0 18px;
	padding: 13px 16px;
	border-left: 3px solid var(--q360-teal);
	border-radius: 0 8px 8px 0;
	background: rgba(0, 119, 137, 0.055);
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--q360-ink);
}

.q360-bk-docs-privacy strong {
	color: var(--q360-teal-deep);
}

/* -- the list of what has already landed ---------------------------------- */

.q360-bk-docs-list {
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
	border: 1px solid var(--q360-line);
	border-radius: 10px;
	overflow: hidden;
}

.q360-bk-docs-list[hidden] {
	display: none;
}

.q360-bk-docs-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 11px 14px;
	background: #fff;
	font-size: 14px;
}

.q360-bk-docs-list li + li {
	border-top: 1px solid var(--q360-line);
}

.q360-bk-docs-tick {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: #1f7a3d;
	position: relative;
}

.q360-bk-docs-tick::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 4px;
	width: 4px;
	height: 8px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(40deg);
}

.q360-bk-docs-name {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 600;
	color: var(--q360-ink);
}

.q360-bk-docs-size {
	flex: 0 0 auto;
	font-size: 12.5px;
	color: var(--q360-muted);
	font-variant-numeric: tabular-nums;
}

/* -- the upload form ------------------------------------------------------ */

.q360-bk-docs-form[hidden],
.q360-bk-docs-full[hidden] {
	display: none;
}

.q360-field-wide {
	display: block;
	width: 100%;
	margin: 0 0 14px;
}

.q360-field-wide input[type="file"] {
	display: block;
	width: 100%;
	padding: 11px 12px;
	border: 1px dashed var(--q360-line);
	border-radius: 9px;
	background: var(--q360-pale);
	font: inherit;
	font-size: 14px;
	color: var(--q360-ink);
	cursor: pointer;
}

.q360-field-wide input[type="file"]:hover {
	border-color: var(--q360-teal);
}

.q360-field-wide input[type="file"]::file-selector-button {
	margin-right: 12px;
	padding: 7px 14px;
	border: 0;
	border-radius: 6px;
	background: var(--q360-teal-deep);
	color: #fff;
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.q360-bk-docs-foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
}

.q360-bk-docs-limit {
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--q360-muted);
}

.q360-bk-docs-form.is-busy {
	opacity: 0.62;
	pointer-events: none;
}

.q360-bk-docs-full {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--q360-muted);
}

/* -- the invoice request -------------------------------------------------- */

.q360-bk-inv-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	margin: 0 0 18px;
	padding: 14px 16px;
	border: 1px solid var(--q360-line);
	border-radius: 10px;
	background: var(--q360-pale);
}

.q360-bk-inv-meta div {
	min-width: 0;
}

.q360-bk-inv-meta dt {
	margin: 0 0 3px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--q360-muted);
}

.q360-bk-inv-meta dd {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--q360-ink);
	word-break: break-word;
}

.q360-bk-inv-blanks-intro {
	margin: 0 0 8px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--q360-muted);
}

.q360-bk-inv-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
}

.q360-bk-inv-preview {
	margin: 18px 0 0;
}

.q360-bk-inv-preview[hidden] {
	display: none;
}

.q360-bk-inv-preview textarea {
	display: block;
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--q360-line);
	border-radius: 10px;
	background: #fff;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 12.5px;
	line-height: 1.7;
	color: var(--q360-ink);
	resize: vertical;
}

.q360-bk-inv-preview-foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin-top: 11px;
	font-size: 12.5px;
	line-height: 1.55;
	color: var(--q360-muted);
}

@media (max-width: 640px) {
	.q360-bk-docs-foot,
	.q360-bk-inv-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.q360-bk-docs-foot .q360-btn,
	.q360-bk-inv-actions .q360-btn {
		width: 100%;
		text-align: center;
	}

	.q360-bk-inv-meta {
		flex-direction: column;
	}
}

/* -- single fixed session length (v3.2.0) --------------------------------- */

.q360-bk-fixed {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 20px;
	padding: 16px 18px;
	border: 1px solid var(--q360-line);
	border-left: 3px solid var(--q360-teal);
	border-radius: 10px;
	background: var(--q360-pale);
}

.q360-bk-fixed-main {
	flex: 1 1 240px;
	min-width: 0;
}

.q360-bk-fixed-main strong {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: var(--q360-ink);
}

.q360-bk-fixed-main em {
	display: block;
	margin-top: 4px;
	font-style: normal;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--q360-muted);
}

.q360-bk-fixed-price {
	flex: 0 0 auto;
	font-family: var(--q360-serif);
	font-size: 24px;
	font-weight: 700;
	color: var(--q360-red);
	white-space: nowrap;
}

@media (max-width: 640px) {
	.q360-bk-fixed-price {
		font-size: 21px;
	}
}

/* == NDA signing page (v3.2.0) ============================================ */

.q360-nda-page {
	max-width: 940px;
	margin: 0 auto;
	padding: 30px 18px 90px;
}

.q360-nda-head {
	margin-bottom: 26px;
}

.q360-nda-eyebrow {
	margin: 0 0 8px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--q360-red);
}

.q360-nda-head h1 {
	margin: 0 0 12px;
	font-family: var(--q360-serif);
	font-size: 34px;
	line-height: 1.18;
	letter-spacing: -0.015em;
	color: var(--q360-ink);
}

.q360-nda-sub {
	margin: 0 0 12px;
	max-width: 62ch;
	font-size: 15.5px;
	line-height: 1.65;
	color: var(--q360-muted);
}

.q360-nda-meta {
	margin: 0;
	font-size: 13px;
	color: var(--q360-muted);
}

.q360-nda-meta strong {
	color: var(--q360-ink);
}

/* -- the agreement itself, embedded in the page -------------------------- */

.q360-nda-paper {
	margin: 0 0 34px;
	padding: 40px 44px 46px;
	max-height: 620px;
	overflow-y: auto;
	background: var(--q360-white);
	border: 1px solid var(--q360-line);
	border-radius: var(--q360-radius);
	box-shadow: var(--q360-shadow);
	font-family: var(--q360-serif);
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--q360-ink);
	-webkit-overflow-scrolling: touch;
}

.q360-nda-paper-final {
	max-height: none;
	overflow: visible;
}

.q360-nda-doc-head {
	border-bottom: 3px solid var(--q360-red);
	padding-bottom: 18px;
	margin-bottom: 26px;
}

.q360-nda-kicker {
	margin: 0 0 6px;
	font-family: var(--q360-sans);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--q360-red);
}

.q360-nda-doc h1 {
	margin: 0 0 10px;
	font-family: var(--q360-serif);
	font-size: 27px;
	line-height: 1.2;
	color: var(--q360-ink);
}

.q360-nda-ref {
	margin: 0;
	font-family: var(--q360-sans);
	font-size: 12px;
	color: var(--q360-muted);
}

.q360-nda-parties {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	margin: 0 0 24px;
}

.q360-nda-party {
	flex: 1 1 260px;
	padding: 16px 18px;
	border: 1px solid var(--q360-line);
	background: var(--q360-pale);
	border-radius: 8px;
}

.q360-nda-party h4 {
	margin: 0 0 8px;
	font-family: var(--q360-sans);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--q360-teal);
}

.q360-nda-party-name {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
}

.q360-nda-party-line {
	margin: 0 0 3px;
	font-size: 13px;
	color: var(--q360-body);
}

.q360-nda-party-role {
	margin: 8px 0 0;
	font-size: 12px;
	font-style: italic;
	color: var(--q360-muted);
}

.q360-nda-tofill {
	color: var(--q360-red-dark);
	font-style: italic;
}

.q360-nda-recital {
	margin: 0 0 22px;
}

.q360-nda-clauses {
	margin: 0;
	padding-left: 26px;
}

.q360-nda-clauses > li {
	margin: 0 0 20px;
	padding-left: 6px;
}

.q360-nda-clauses h3 {
	margin: 0 0 7px;
	font-family: var(--q360-sans);
	font-size: 12.5px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--q360-teal-deep);
}

.q360-nda-clauses p {
	margin: 0 0 9px;
}

.q360-nda-exec-title {
	margin: 34px 0 6px;
	padding-top: 20px;
	border-top: 2px solid var(--q360-ink);
	font-family: var(--q360-serif);
	font-size: 20px;
}

.q360-nda-exec-lead {
	margin: 0 0 20px;
	font-size: 13px;
	color: var(--q360-muted);
}

.q360-nda-signatures {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	margin: 0 0 30px;
}

.q360-nda-sig {
	flex: 1 1 280px;
}

.q360-nda-sig-for {
	margin: 0 0 10px;
	font-family: var(--q360-sans);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--q360-muted);
}

.q360-nda-sig-mark {
	min-height: 74px;
	display: flex;
	align-items: flex-end;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--q360-ink);
}

.q360-nda-sig-mark img {
	max-height: 70px;
	max-width: 100%;
}

.q360-nda-sig-typed {
	font-family: "Segoe Script", "Brush Script MT", cursive;
	font-size: 26px;
	color: var(--q360-teal-deep);
}

.q360-nda-sig-meta {
	padding-top: 9px;
}

.q360-nda-sig-meta p {
	margin: 0 0 2px;
	font-size: 13px;
}

.q360-nda-sig-when {
	font-size: 12px;
	color: var(--q360-muted);
}

.q360-nda-audit-title {
	margin: 0 0 10px;
	font-family: var(--q360-sans);
	font-size: 11.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--q360-muted);
}

.q360-nda-audit {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--q360-sans);
	font-size: 11.5px;
}

.q360-nda-audit th,
.q360-nda-audit td {
	padding: 7px 10px;
	border: 1px solid var(--q360-line);
	text-align: left;
	vertical-align: top;
}

.q360-nda-audit th {
	width: 33%;
	background: var(--q360-pale);
	color: var(--q360-muted);
	font-weight: 600;
}

.q360-nda-audit td {
	word-break: break-word;
}

/* -- the signing form ---------------------------------------------------- */

.q360-nda-form {
	padding: 34px 36px 40px;
	background: var(--q360-white);
	border: 1px solid var(--q360-line);
	border-top: 3px solid var(--q360-red);
	border-radius: var(--q360-radius);
	box-shadow: var(--q360-shadow);
}

.q360-nda-form-title {
	margin: 0 0 6px;
	font-family: var(--q360-serif);
	font-size: 21px;
	color: var(--q360-ink);
}

.q360-nda-form-title + .q360-nda-form-lead {
	margin-top: 0;
}

.q360-nda-form-lead {
	margin: 0 0 20px;
	max-width: 60ch;
	font-size: 14px;
	line-height: 1.6;
	color: var(--q360-muted);
}

.q360-nda-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 22px;
	margin-bottom: 26px;
}

.q360-nda-grid .q360-field-wide {
	grid-column: 1 / -1;
}

.q360-nda-legal-note {
	margin: 0 0 24px;
	padding: 14px 16px;
	border-left: 3px solid var(--q360-gold);
	background: var(--q360-pale);
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--q360-ink);
}

/* -- signature pad ------------------------------------------------------- */

.q360-nda-pad-wrap {
	position: relative;
	margin-bottom: 10px;
	border: 1px solid var(--q360-line);
	border-radius: 10px;
	background: var(--q360-cream);
	overflow: hidden;
}

.q360-nda-pad {
	display: block;
	width: 100%;
	height: 210px;
	touch-action: none;
	cursor: crosshair;
}

.q360-nda-pad-hint {
	position: absolute;
	left: 34px;
	bottom: 46px;
	margin: 0;
	font-size: 13px;
	letter-spacing: 0.06em;
	color: #c2a9ab;
	pointer-events: none;
}

.q360-nda-pad-line {
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 40px;
	height: 1px;
	background: #d9c4c4;
	pointer-events: none;
}

.q360-nda-pad-actions {
	margin-bottom: 6px;
}

.q360-nda-consents {
	display: grid;
	gap: 12px;
	margin: 26px 0 4px;
	padding: 20px 22px;
	background: var(--q360-pale);
	border-radius: 10px;
}

.q360-nda-privacy {
	margin: 22px 0 0;
}

.q360-nda-privacy p {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--q360-muted);
}

.q360-nda-submit {
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var(--q360-line);
}

.q360-nda-submit-note {
	margin: 12px 0 0;
	font-size: 12.5px;
	color: var(--q360-muted);
}

/* -- executed confirmation ----------------------------------------------- */

.q360-nda-done {
	margin-bottom: 30px;
	padding: 34px 36px 32px;
	background: var(--q360-white);
	border: 1px solid var(--q360-line);
	border-top: 3px solid #1f7a3d;
	border-radius: var(--q360-radius);
	box-shadow: var(--q360-shadow);
}

.q360-nda-done-tick {
	margin: 0 0 12px;
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	border-radius: 50%;
	background: #e8f4ec;
	color: #1f7a3d;
	font-size: 22px;
	font-weight: 700;
}

.q360-nda-done h1 {
	margin: 0 0 12px;
	font-family: var(--q360-serif);
	font-size: 30px;
	line-height: 1.2;
	color: var(--q360-ink);
}

.q360-nda-done p {
	margin: 0 0 12px;
	max-width: 62ch;
	font-size: 15px;
	line-height: 1.65;
	color: var(--q360-muted);
}

.q360-nda-done-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

@media (max-width: 720px) {
	.q360-nda-page {
		padding: 22px 14px 70px;
	}

	.q360-nda-head h1 {
		font-size: 26px;
	}

	.q360-nda-paper {
		padding: 24px 20px 28px;
		max-height: 460px;
	}

	.q360-nda-form {
		padding: 24px 20px 28px;
	}

	.q360-nda-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.q360-nda-pad {
		height: 170px;
	}
}

@media print {
	.q360-nda-head,
	.q360-nda-done-actions {
		display: none;
	}

	.q360-nda-paper {
		max-height: none;
		overflow: visible;
		border: 0;
		box-shadow: none;
		padding: 0;
	}
}

/* -- NDA issued banner inside the discovery app -------------------------- */

.q360-nda-banner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px 20px;
	margin: 0 0 26px;
	padding: 16px 20px;
	border: 1px solid var(--q360-line);
	border-left: 4px solid var(--q360-teal);
	border-radius: 10px;
	background: #f2f9fa;
}

.q360-nda-banner-text {
	flex: 1 1 320px;
	margin: 0;
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--q360-ink);
}

.q360-nda-banner-link {
	flex: 0 0 auto;
	display: inline-block;
	padding: 10px 18px;
	border-radius: 9px;
	background: var(--q360-teal);
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.q360-nda-banner-link:hover,
.q360-nda-banner-link:focus {
	background: var(--q360-teal-deep);
	color: #ffffff;
}

.q360-check-note {
	display: block;
	margin-top: 5px;
	font-style: normal;
	font-size: 12.5px;
	line-height: 1.55;
	color: var(--q360-muted);
}

.q360-req {
	display: inline;
	margin-left: 6px;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--q360-red);
}

.q360-nda-form .q360-bk-error.is-shown {
	display: block;
}

.q360-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--q360-line);
	border-radius: 9px;
	background: #fff;
	font-family: var(--q360-sans);
	font-size: 15px;
	line-height: 1.5;
	color: var(--q360-ink);
	resize: vertical;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.q360-field textarea:focus {
	outline: none;
	border-color: var(--q360-teal);
	box-shadow: 0 0 0 3px rgba(0, 119, 137, .12);
}

/* --- brand mark ---------------------------------------------------------
   The NBS logo is supplied as a JPEG with a solid white ground. Multiply
   blending drops that white away so the mark sits cleanly on the off-white
   panels without a visible rectangle behind it.
   ---------------------------------------------------------------------- */

.q360-gate-logo,
.q360-flow-logo,
.q360-rep-logo,
.q360-book-logo,
.q360-nda-logo {
	mix-blend-mode: multiply;
}

.q360-nda-paper-note {
	margin: -24px 0 32px;
	padding-left: 2px;
	font-size: 12.5px;
	font-style: italic;
	color: var(--q360-muted);
}
