/* ==========================================================================
   ArzTeq landing site — Bootstrap 5 + a Material-3-derived color/type system.
   Bootstrap supplies grid, utilities, navbar/accordion/collapse behavior.
   This file supplies the brand palette, typography scale, and the small set
   of bespoke components (POS mockup, pricing cards, etc.) Bootstrap has no
   opinion on.
   ========================================================================== */

:root {
	/* ---- Material-3-derived palette, exposed as plain custom properties ---- */
	--erp-primary: #0084ff;
	--erp-primary-container: #0070ea;
	--erp-on-primary: #ffffff;
	--erp-on-primary-container: #fefcff;
	--erp-primary-fixed: #d8e2ff;
	--erp-primary-fixed-dim: #adc7ff;
	--erp-on-primary-fixed: #001a41;
	--erp-on-primary-fixed-variant: #004493;
	--erp-secondary: #506070;
	--erp-secondary-container: #d3e4f7;
	--erp-on-secondary: #ffffff;
	--erp-on-secondary-container: #566676;
	--erp-secondary-fixed: #d3e4f7;
	--erp-secondary-fixed-dim: #b7c8db;
	--erp-tertiary: #8d4b00;
	--erp-tertiary-container: #b15f00;
	--erp-on-tertiary: #ffffff;
	--erp-tertiary-fixed: #ffdcc3;
	--erp-tertiary-fixed-dim: #ffb77d;
	--erp-error: #ba1a1a;
	--erp-error-container: #ffdad6;
	--erp-on-error: #ffffff;
	--erp-on-error-container: #93000a;
	--erp-surface: #f7f9ff;
	--erp-surface-dim: #d4dae5;
	--erp-surface-container-lowest: #ffffff;
	--erp-surface-container-low: #eef4ff;
	--erp-surface-container: #e8eef9;
	--erp-surface-container-high: #e2e9f4;
	--erp-surface-container-highest: #dce3ee;
	--erp-on-surface: #151c24;
	--erp-on-surface-variant: #414754;
	--erp-outline: #717786;
	--erp-outline-variant: #c1c6d7;
	--erp-inverse-surface: #2a3139;
	--erp-inverse-on-surface: #eaf1fc;
	--erp-inverse-primary: #adc7ff;
	--erp-font-display: "Plus Jakarta Sans", system-ui, sans-serif;
	--erp-font-body: "Inter", system-ui, sans-serif;
	--erp-font-mono: "JetBrains Mono", ui-monospace, monospace;
	/* ---- Re-theme Bootstrap itself, so plain .btn-primary / .bg-primary /
	   .text-primary / .border-primary already read the right colors ---- */
	--bs-primary: var(--erp-primary);
	--bs-primary-rgb: 0, 132, 255; 
	--bs-secondary: var(--erp-secondary);
	--bs-secondary-rgb: 80, 96, 112;
	--bs-body-bg: var(--erp-surface);
	--bs-body-color: var(--erp-on-surface);
	--bs-border-color: var(--erp-outline-variant);
	--bs-link-color: var(--erp-primary);
	--bs-link-hover-color: var(--erp-primary-container);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body.lp-body {
	background-color: var(--erp-surface);
	color: var(--erp-on-surface);
	font-family: var(--erp-font-body);
	font-size: 14px;
	line-height: 20px;
	-webkit-font-smoothing: antialiased;
}

.lp-body a {
	text-decoration: none;
}

.lp-body img {
	max-width: 100%;
}

/* ==========================================================================
   Typography scale
   ========================================================================== */

.text-display-lg { font-family: var(--erp-font-display); font-size: 36px; line-height: 44px; letter-spacing: -0.02em; font-weight: 700; }
.text-headline-lg { font-family: var(--erp-font-display); font-size: 28px; line-height: 36px; letter-spacing: -0.015em; font-weight: 700; }
.text-headline-md { font-family: var(--erp-font-display); font-size: 20px; line-height: 28px; letter-spacing: -0.01em; font-weight: 600; }
.text-title-lg { font-family: var(--erp-font-display); font-size: 18px; line-height: 24px; font-weight: 600; }
.text-title-md { font-family: var(--erp-font-body); font-size: 16px; line-height: 22px; font-weight: 600; }
.text-label-lg { font-family: var(--erp-font-display); font-size: 14px; line-height: 18px; letter-spacing: 0.01em; font-weight: 600; }
.text-label-md { font-family: var(--erp-font-body); font-size: 12px; line-height: 16px; letter-spacing: 0.02em; font-weight: 500; }
.text-body-lg { font-family: var(--erp-font-body); font-size: 16px; line-height: 24px; font-weight: 400; }
.text-body-md { font-family: var(--erp-font-body); font-size: 14px; line-height: 20px; font-weight: 400; }
.text-body-sm { font-family: var(--erp-font-body); font-size: 12px; line-height: 16px; font-weight: 400; }
.text-data-tabular { font-family: var(--erp-font-mono); font-size: 15px; line-height: 20px; letter-spacing: -0.02em; font-weight: 500; }
.text-receipt-code { font-family: var(--erp-font-mono); font-size: 12px; line-height: 16px; letter-spacing: 0.04em; font-weight: 400; }

@media (max-width: 575.98px) {
	.text-headline-lg { font-size: 22px; line-height: 28px; letter-spacing: -0.01em; font-weight: 700; }
	.text-display-lg { font-size: 30px; line-height: 38px; }
}

h1, h2, h3, h4 {
	color: var(--erp-on-surface);
	margin: 0;
}

.text-muted-erp { color: var(--erp-on-surface-variant); }
.text-inverse-muted { color: #b9c4d6; }

/* ==========================================================================
   Surface utility classes (M3 surfaces Bootstrap has no equivalent for)
   ========================================================================== */

.bg-surface { background-color: var(--erp-surface) !important; }
.bg-surface-lowest { background-color: var(--erp-surface-container-lowest) !important; }
.bg-surface-low { background-color: var(--erp-surface-container-low) !important; }
.bg-surface-container { background-color: var(--erp-surface-container) !important; }
.bg-surface-high { background-color: var(--erp-surface-container-high) !important; }
.bg-surface-highest { background-color: var(--erp-surface-container-highest) !important; }
.bg-inverse-surface { background-color: var(--erp-inverse-surface) !important; color: var(--erp-inverse-on-surface); }
.bg-primary-fixed { background-color: var(--erp-primary-fixed) !important; }
.bg-tertiary-fixed { background-color: var(--erp-tertiary-fixed) !important; }
.bg-error-soft { background-color: var(--erp-error-container) !important; }

.text-on-surface { color: var(--erp-on-surface) !important; }
.text-on-surface-variant { color: var(--erp-on-surface-variant) !important; }
.text-inverse-primary { color: var(--erp-inverse-primary) !important; }
.text-tertiary { color: var(--erp-tertiary) !important; }
.text-error { color: var(--erp-error) !important; }

.border-surface { border-color: var(--erp-surface-container-high) !important; }

/* ==========================================================================
   Buttons — same Bootstrap classes, re-themed
   ========================================================================== */

.btn {
	font-family: var(--erp-font-display);
	font-weight: 600;
	font-size: 14px;
	border-radius: 0.7rem;
}

.btn-primary {
	background-color: var(--erp-primary);
	border-color: var(--erp-primary);
	color: var(--erp-on-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background-color: var(--erp-primary-container) !important;
	border-color: var(--erp-primary-container) !important;
	color: var(--erp-on-primary) !important;
}

.btn-outline-light-erp {
	background-color: var(--erp-surface-container-lowest);
	border: 1px solid var(--erp-surface-container-high);
	color: var(--erp-on-surface);
}

.btn-outline-light-erp:hover {
	background-color: var(--erp-surface-container);
	color: var(--erp-on-surface);
}

.btn-ghost-erp {
	background-color: transparent;
	border: none;
	color: var(--erp-on-surface);
}

.btn-ghost-erp:hover {
	background-color: var(--erp-surface-container-high);
	color: var(--erp-on-surface);
}

.btn-dark-erp {
	background-color: var(--erp-inverse-surface);
	border-color: var(--erp-inverse-surface);
	color: #ffffff;
}

.btn-dark-erp:hover {
	background-color: #171c22;
	color: #ffffff;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.lp-navbar {
	/*position: fixed;*/
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1030;
	background-color: rgba(247, 249, 255, 0.92);
	backdrop-filter: blur(16px);
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.lp-navbar .navbar-brand-mark {
	width: 40px;
	height: 40px;
	border-radius: 0.9rem;
	background-color: var(--erp-primary);
	color: var(--erp-on-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--erp-font-display);
	font-weight: 700;
	font-size: 20px;
}

.lp-navbar .nav-link {
	color: var(--erp-on-surface-variant);
	font-family: var(--erp-font-display);
	font-weight: 600;
	font-size: 14px;
	padding: 0.5rem 0.9rem;
}

.lp-navbar .nav-link.active,
.lp-navbar .nav-link:hover {
	color: var(--erp-primary);
}

/* ==========================================================================
   Cards: trust tiles, feature pillars, steps, screenshot placeholders
   ========================================================================== */

.card-erp {
	background-color: var(--erp-surface-container-lowest);
	border: none;
	border-radius: 1rem;
	box-shadow: 0 1px 3px rgba(21, 28, 36, 0.06);
}

.card-erp-icon {
	width: 48px;
	height: 48px;
	border-radius: 0.9rem;
	background-color: var(--erp-surface-container-high);
	color: var(--erp-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.spec-strip {
	background-color: var(--erp-surface-container-low);
	border-radius: 0.75rem;
	padding: 0.85rem 1rem;
}

.shot-placeholder {
	height: 224px;
	border-radius: 0.9rem;
	background-color: var(--erp-surface-container-high);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1.25rem;
	color: var(--erp-on-surface-variant);
	position: relative;
	overflow: hidden;
}

.shot-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.photo-placeholder {
	border-radius: 0.9rem;
	background-color: var(--erp-surface-container-high);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1.25rem;
	color: var(--erp-on-surface-variant);
	min-height: 200px;
	position: relative;
	overflow: hidden;
}
	.photo-placeholder img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover; /* fills the box, crops edges if needed */
		border-radius: inherit; /* keeps the rounded corners */
	}


/* ==========================================================================
   Steps ("how it fits into your shift")
   ========================================================================== */

.step-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--erp-primary);
	color: var(--erp-on-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--erp-font-display);
	font-weight: 700;
	font-size: 18px;
}

/* ==========================================================================
   Pricing banner / final CTA
   ========================================================================== */

.cta-banner {
	background-color: var(--erp-inverse-surface);
	color: var(--erp-inverse-on-surface);
	border-radius: 1.5rem;
}

.cta-form-card {
	background-color: var(--erp-surface-container-lowest);
	border-radius: 1rem;
	box-shadow: 0 4px 24px -10px rgba(21, 28, 36, 0.2);
}

.form-control-erp {
	background-color: var(--erp-surface-container);
	border: 1px solid transparent;
	border-radius: 0.6rem;
	padding: 0.7rem 1rem;
	font-family: var(--erp-font-body);
	font-size: 14px;
}

.form-control-erp:focus {
	background-color: var(--erp-surface-container-low);
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 89, 187, 0.15);
}

/* ==========================================================================
   Pricing page — billing switcher + pricing cards
   ========================================================================== */

.billing-switch {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.35rem;
	border-radius: 0.9rem;
	background-color: var(--erp-surface-container);
	box-shadow: inset 0 1px 3px rgba(21, 28, 36, 0.08);
}

.billing-switch-btn {
	border: none;
	background: transparent;
	padding: 0.6rem 1.1rem;
	border-radius: 0.6rem;
	font-family: var(--erp-font-display);
	font-weight: 600;
	font-size: 14px;
	color: var(--erp-on-surface-variant);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.billing-switch-btn.active {
	background-color: var(--erp-surface-container-lowest);
	color: var(--erp-primary);
	box-shadow: 0 1px 2px rgba(21, 28, 36, 0.08);
}

.billing-switch-badge {
	padding: 0.1rem 0.5rem;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
}

.pricing-card {
	background-color: var(--erp-surface-container-lowest);
	border-radius: 1rem;
	padding: 1.75rem;
	box-shadow: 0 1px 3px rgba(21, 28, 36, 0.06);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.pricing-card--featured {
	box-shadow: 0 24px 45px -18px rgba(0, 89, 187, 0.35);
}

.pricing-card__badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--erp-primary);
	color: var(--erp-on-primary);
	font-family: var(--erp-font-display);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.03em;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	white-space: nowrap;
}

.pricing-card__price {
	font-family: var(--erp-font-display);
	font-weight: 700;
	font-size: 36px;
	line-height: 1;
}

.pricing-card hr {
	border-top: 1px solid var(--erp-surface-container-high);
	opacity: 1;
}

/* ==========================================================================
   Included / excluded comparison
   ========================================================================== */

.compare-icon {
	width: 40px;
	height: 40px;
	border-radius: 0.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.compare-icon--yes {
	background-color: var(--erp-secondary-container);
	color: var(--erp-primary);
}

.compare-icon--no {
	background-color: var(--erp-error-container);
	color: var(--erp-error);
}

/* ==========================================================================
   FAQ accordion (re-themed Bootstrap accordion)
   ========================================================================== */

.accordion-erp .accordion-item {
	background-color: var(--erp-surface-container-lowest);
	border: none;
	border-radius: 1rem !important;
	margin-bottom: 1rem;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(21, 28, 36, 0.06);
}

.accordion-erp .accordion-button {
	font-family: var(--erp-font-display);
	font-weight: 600;
	font-size: 16px;
	color: var(--erp-on-surface);
	background-color: var(--erp-surface-container-lowest);
	box-shadow: none;
}

.accordion-erp .accordion-button:not(.collapsed) {
	color: var(--erp-primary);
	background-color: var(--erp-surface-container-lowest);
}

.accordion-erp .accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
}

.accordion-erp .accordion-button::after {
	filter: none;
}

.accordion-erp .accordion-body {
	color: var(--erp-on-surface-variant);
	border-top: 1px solid var(--erp-surface-container-high);
	line-height: 24px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.lp-footer {
	background-color: var(--erp-inverse-surface);
	color: var(--erp-inverse-on-surface);
	padding: 4rem 0 2.5rem;
}

.lp-footer h6 {
	color: #ffffff;
	font-family: var(--erp-font-display);
	font-weight: 600;
	font-size: 16px;
}

.lp-footer a,
.lp-footer li {
	color: #c3ccdb;
}

.lp-footer a:hover {
	color: #ffffff;
}

.lp-footer-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	background-color: rgba(255, 255, 255, 0.08);
	color: var(--erp-inverse-primary);
	font-size: 12px;
	font-weight: 600;
}

.lp-footer-note {
	background-color: rgba(255, 255, 255, 0.06);
	border-radius: 0.75rem;
	padding: 1rem;
}

.lp-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 1.5rem;
	margin-top: 2rem;
	font-size: 12px;
	color: #9aa6ba;
}

/* ==========================================================================
   Section rhythm
   ========================================================================== */

.section-eyebrow {
	color: var(--erp-primary);
	font-family: var(--erp-font-body);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}
