/* =========================================================
   B2B / "Who We Serve" / Business Services pages
   assets/css/page-b2b.css
   Namespaced with .dc-b2b- to avoid clashing with existing
   theme classes. Shares the same token values as
   page-hard-drives.css so all pages feel like one site.
   Used by: net-terms, tax-exempt-purchasing, bulk-order-inquiry,
   small-medium-business, education, government, healthcare,
   systems-integrators, enterprise
   ========================================================= */

   :root {
	--dc-b2b-navy: #0D0D0D;
	--dc-b2b-navy-2: #1A1A1A;
	--dc-b2b-accent: var(--primary, #7A171B);
	--dc-b2b-accent-dark: #5C1114;
	--dc-b2b-ink: #0D0D0D;
	--dc-b2b-muted: #6E6E6E;
	--dc-b2b-border: #E2E2E2;
	--dc-b2b-bg-soft: #FCFAF8;
	--dc-b2b-success-bg: #e4f8ec;
	--dc-b2b-success-ink: #1e8a4c;
}

/* ---------- Hero ---------- */
.dc-b2b-hero {
	position: relative;
	background: var(--dc-b2b-navy);
	color: #FFFFFF;
	padding: 56px 24px 44px;
	overflow: hidden;
}

.dc-b2b-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 980px;
	margin: 0 auto;
}

.dc-b2b-breadcrumb {
	font-size: 12.5px;
	color: rgba(255,255,255,.65);
	margin-bottom: 18px;
}

.dc-b2b-breadcrumb a {
	color: rgba(255,255,255,.85);
	text-decoration: none;
}

.dc-b2b-breadcrumb a:hover {
	text-decoration: underline;
}

.dc-b2b-hero__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #F0F0F0;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.18);
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.dc-b2b-hero__title {
	font-size: 36px;
	line-height: 1.15;
	font-weight: 800;
	margin: 0 0 10px;
	max-width: 760px;
}

.dc-b2b-hero__sub {
	font-size: 16px;
	color: #E2E2E2;
	margin: 0 0 24px;
	max-width: 640px;
}

/* Contact strip — phone / email / hours, shown on every page per doc */
.dc-b2b-contact-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 13.5px;
	color: #E7ECF3;
}

.dc-b2b-contact-strip a {
	color: #FFFFFF;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.dc-b2b-contact-strip a:hover {
	text-decoration: underline;
}

/* ---------- Main wrapper ---------- */
.dc-b2b-main {
	max-width: 980px;
	margin: 0 auto;
	padding: 48px 24px 72px;
}

.dc-b2b-main--wide {
	max-width: 1160px;
}

.dc-b2b-intro {
	font-size: 15.5px;
	line-height: 1.7;
	color: #2b2f36;
	margin-bottom: 8px;
}

.dc-b2b-intro p {
	margin: 0 0 14px;
}

/* Callout / note box (HIPAA note, multi-state note, etc.) */
.dc-b2b-note {
	background: var(--dc-b2b-bg-soft);
	border-left: 3px solid var(--dc-b2b-accent);
	border-radius: 0 8px 8px 0;
	padding: 16px 20px;
	font-size: 13.5px;
	line-height: 1.65;
	color: var(--dc-b2b-muted);
	font-style: italic;
	margin: 24px 0 32px;
}

/* Highlight banner, e.g. "we guarantee..." */
.dc-b2b-highlight {
	background: var(--dc-b2b-navy);
	color: #FFFFFF;
	border-radius: 10px;
	padding: 18px 24px;
	font-size: 14.5px;
	line-height: 1.6;
	margin: 24px 0 8px;
}

/* ---------- Section scaffolding ---------- */
.dc-b2b-section {
	margin: 40px 0;
}

.dc-b2b-section-title {
	font-size: 20px;
	font-weight: 800;
	color: var(--dc-b2b-ink);
	margin: 0 0 18px;
}

.dc-b2b-section-title--sub {
	font-size: 13px;
	font-weight: 600;
	color: var(--dc-b2b-muted);
	margin: -12px 0 18px;
}

/* ---------- Benefit / value-prop cards (4-up) ---------- */
.dc-b2b-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.dc-b2b-cards--2 { grid-template-columns: repeat(2, 1fr); }
.dc-b2b-cards--3 { grid-template-columns: repeat(3, 1fr); }

.dc-b2b-card {
	background: #FFFFFF;
	border: 1px solid var(--dc-b2b-border);
	border-radius: 12px;
	padding: 20px;
}

.dc-b2b-card__icon {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	background: #fdf1f1;
	color: var(--dc-b2b-accent);
	margin-bottom: 12px;
}

.dc-b2b-card__title {
	font-size: 14.5px;
	font-weight: 700;
	color: var(--dc-b2b-ink);
	margin: 0 0 6px;
}

.dc-b2b-card__text {
	font-size: 13px;
	color: var(--dc-b2b-muted);
	line-height: 1.55;
	margin: 0;
}

/* ---------- Numbered steps (How to Apply / Set Up) ---------- */
.dc-b2b-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	counter-reset: dc-b2b-step;
}

.dc-b2b-steps--2 { grid-template-columns: repeat(2, 1fr); }

.dc-b2b-step {
	position: relative;
	background: var(--dc-b2b-bg-soft);
	border: 1px solid var(--dc-b2b-border);
	border-radius: 10px;
	padding: 20px 18px 18px;
	counter-increment: dc-b2b-step;
}

.dc-b2b-step::before {
	content: counter(dc-b2b-step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--dc-b2b-accent);
	color: #FFFFFF;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 10px;
}

.dc-b2b-step__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--dc-b2b-accent);
	display: block;
	margin-bottom: 4px;
}

.dc-b2b-step__text {
	font-size: 13.5px;
	color: #2b2f36;
	line-height: 1.55;
	margin: 0;
}

/* ---------- Checklist (who qualifies / what you need) ---------- */
.dc-b2b-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.dc-b2b-checklist--split {
	grid-template-columns: repeat(2, 1fr);
	column-gap: 24px;
}

.dc-b2b-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	line-height: 1.55;
	color: #2b2f36;
}

.dc-b2b-checklist li::before {
	content: "\2713";
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--dc-b2b-accent);
	color: #FFFFFF;
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}

/* ---------- Project / "common X" table rows ---------- */
.dc-b2b-rows {
	border: 1px solid var(--dc-b2b-border);
	border-radius: 10px;
	overflow: hidden;
}

.dc-b2b-row {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 20px;
	padding: 16px 20px;
	background: #FFFFFF;
}

.dc-b2b-row + .dc-b2b-row {
	border-top: 1px solid var(--dc-b2b-border);
}

.dc-b2b-row__label {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--dc-b2b-ink);
}

.dc-b2b-row__text {
	font-size: 13.5px;
	color: var(--dc-b2b-muted);
	line-height: 1.55;
}

/* ---------- Brand tag list ---------- */
.dc-b2b-brand-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dc-b2b-brand {
	background: var(--dc-b2b-accent);
	color: #FFFFFF;
	padding: 4px 12px;
	border-radius: 5px;
	font-size: 12.5px;
	font-weight: 600;
}

/* ---------- Restocking fee style panel (reused where relevant) ---------- */
.dc-b2b-stat-panel {
	background: var(--dc-b2b-bg-soft);
	border: 1px dashed var(--dc-b2b-border);
	border-radius: 10px;
	padding: 24px;
	text-align: center;
	margin: 24px 0;
}

.dc-b2b-stat-panel .tag {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--dc-b2b-accent);
	background: #fdf1f1;
	padding: 4px 10px;
	border-radius: 999px;
	margin-bottom: 8px;
}

.dc-b2b-stat-panel .pct {
	font-size: 40px;
	font-weight: 800;
	color: var(--dc-b2b-ink);
	line-height: 1;
	margin: 4px 0 10px;
}

/* ---------- Bottom CTA banner ---------- */
.dc-b2b-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: var(--dc-b2b-navy);
	color: #FFFFFF;
	border-radius: 10px;
	padding: 28px 32px;
	flex-wrap: wrap;
	margin-top: 48px;
}

.dc-b2b-banner h3 {
	margin: 0 0 4px;
	font-size: 18px;
}

.dc-b2b-banner p {
	margin: 0;
	font-size: 14px;
	color: #E2E2E2;
}

.dc-b2b-banner__ctas {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.dc-b2b-banner__cta,
.dc-b2b-banner__cta--ghost {
	font-weight: 700;
	font-size: 14px;
	padding: 12px 22px;
	border-radius: 6px;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background .15s ease, border-color .15s ease;
}

.dc-b2b-banner__cta {
	background: var(--dc-b2b-accent);
	color: #FFFFFF !important;
}

.dc-b2b-banner__cta:hover {
	background: var(--dc-b2b-accent-dark);
}

.dc-b2b-banner__cta--ghost {
	background: transparent;
	color: #FFFFFF !important;
	border: 1px solid rgba(255,255,255,.4);
}

.dc-b2b-banner__cta--ghost:hover {
	background: rgba(255,255,255,.08);
}

/* ---------- Inline links inside contact rows (e.g. HIPAA / mini text) ---------- */
.dc-b2b-inline-contact {
	font-size: 13.5px;
	color: var(--dc-b2b-muted);
	margin-top: 8px;
}

.dc-b2b-inline-contact a {
	color: var(--dc-b2b-accent);
	text-decoration: none;
	font-weight: 600;
}

.dc-b2b-inline-contact a:hover {
	text-decoration: underline;
}

/* ---------- Simple contact-style form (Bulk Order Inquiry) ---------- */
.dc-b2b-form {
	background: #FFFFFF;
	border: 1px solid var(--dc-b2b-border);
	border-radius: 12px;
	padding: 28px;
}

.dc-b2b-form fieldset {
	border: none;
	padding: 0;
	margin: 0 0 28px;
}

.dc-b2b-form fieldset:last-of-type {
	margin-bottom: 0;
}

.dc-b2b-form legend {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--dc-b2b-accent);
	padding: 0 0 12px;
	width: 100%;
	border-bottom: 1px solid var(--dc-b2b-border);
	margin-bottom: 16px;
}

.dc-b2b-form__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.dc-b2b-form__field {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.dc-b2b-form__field--full {
	grid-column: 1 / -1;
}

.dc-b2b-form__field label {
	font-size: 13px;
	font-weight: 600;
	color: var(--dc-b2b-ink);
	display: block;
	line-height: 1.3;
	/* Reserves just enough space for a 2-line label+hint pair, so a
	   field with a short one-line label (e.g. "How will you pay?")
	   still lines up its input with a row-mate whose hint wraps to
	   2 lines (e.g. "Are you tax-exempt?"), without leaving a big gap
	   on fields that only need one line. */
	min-height: 2.2em;
}

.dc-b2b-form__field .hint {
	display: block;
	margin-top: 1px;
	font-size: 11.5px;
	font-weight: 400;
	color: var(--dc-b2b-muted);
}

.dc-b2b-form__field input[type="text"],
.dc-b2b-form__field input[type="email"],
.dc-b2b-form__field input[type="tel"],
.dc-b2b-form__field input[type="date"],
.dc-b2b-form__field select,
.dc-b2b-form__field textarea {
	border: 1px solid var(--dc-b2b-border);
	border-radius: 8px;
	padding: 10px 12px;
	font-size: 13.5px;
	color: var(--dc-b2b-ink);
	font-family: inherit;
	background: #FFFFFF;
}

.dc-b2b-form__field textarea {
	resize: vertical;
	min-height: 84px;
}

.dc-b2b-form__field input:focus,
.dc-b2b-form__field select:focus,
.dc-b2b-form__field textarea:focus {
	outline: 2px solid var(--dc-b2b-accent);
	outline-offset: 1px;
}

.dc-b2b-form__submit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--dc-b2b-accent);
	color: #FFFFFF;
	font-weight: 700;
	font-size: 14.5px;
	padding: 13px 28px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: background .15s ease;
}

.dc-b2b-form__submit:hover {
	background: var(--dc-b2b-accent-dark);
}

.dc-b2b-form__note {
	font-size: 12.5px;
	color: var(--dc-b2b-muted);
	margin-top: 12px;
}

/* Response-timeline rows, reused .dc-b2b-rows above */

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
	.dc-b2b-cards { grid-template-columns: repeat(2, 1fr); }
	.dc-b2b-steps { grid-template-columns: repeat(2, 1fr); }
	.dc-b2b-hero__title { font-size: 30px; }
}

@media (max-width: 640px) {
	.dc-b2b-cards,
	.dc-b2b-cards--2,
	.dc-b2b-cards--3,
	.dc-b2b-steps,
	.dc-b2b-steps--2 { grid-template-columns: 1fr; }
	.dc-b2b-checklist--split { grid-template-columns: 1fr; }
	.dc-b2b-row { grid-template-columns: 1fr; gap: 6px; }
	.dc-b2b-banner { flex-direction: column; align-items: flex-start; }
	.dc-b2b-form__grid { grid-template-columns: 1fr; }
	.dc-b2b-hero__title { font-size: 25px; }
}