/* DreamsPOS landing-page styling for the round-3 pages (Custom Dev, Pricing,
 * Demo, Comparison). Scoped under .dpos-lp so nothing leaks site-wide.
 * Brand palette taken from the theme: navy #02026A, mint #1EE3C0. */

.dpos-lp {
	--dpos-navy: #02026a;
	--dpos-navy-2: #000427;
	--dpos-mint: #1ee3c0;
	--dpos-ink: #232323;
	--dpos-muted: #606060;
	--dpos-line: #e4e8eb;
	font-family: "Roboto", sans-serif;
	color: var(--dpos-ink);
}

/* ---- Hero ---------------------------------------------------------- */
.dpos-lp-hero {
	background: linear-gradient(135deg, var(--dpos-navy) 0%, var(--dpos-navy-2) 100%);
	border-radius: 22px;
	padding: 64px 40px;
	text-align: center;
	color: #fff;
	margin: 8px 0 48px;
	position: relative;
	overflow: hidden;
}
.dpos-lp-hero::after {
	content: "";
	position: absolute;
	width: 320px;
	height: 320px;
	right: -90px;
	top: -90px;
	background: radial-gradient(circle, rgba(30, 227, 192, 0.25) 0%, rgba(30, 227, 192, 0) 70%);
	pointer-events: none;
}
.dpos-lp-eyebrow {
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--dpos-mint);
	margin-bottom: 16px;
}
.dpos-lp-hero h1 {
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	font-size: clamp(28px, 5vw, 46px);
	line-height: 1.15;
	color: #fff;
	margin: 0 auto 18px;
	max-width: 820px;
}
.dpos-lp-hero .dpos-lp-sub {
	font-size: clamp(16px, 2.4vw, 19px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.82);
	max-width: 640px;
	margin: 0 auto 30px;
}

/* ---- Buttons ------------------------------------------------------- */
.dpos-lp-cta-row {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
.dpos-lp-btn,
.dpos-lp-btn:hover,
.dpos-lp-btn:focus {
	display: inline-block;
	padding: 14px 30px;
	border-radius: 10px;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
	border: 2px solid transparent;
}
.dpos-lp-btn-primary {
	background: var(--dpos-mint);
	color: var(--dpos-navy);
}
.dpos-lp-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(30, 227, 192, 0.35);
	color: var(--dpos-navy);
}
.dpos-lp-btn-outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
}
.dpos-lp-btn-outline:hover {
	border-color: #fff;
	color: #fff;
	transform: translateY(-2px);
}

/* ---- Body content -------------------------------------------------- */
.dpos-lp-body {
	max-width: 860px;
	margin: 0 auto;
}
.dpos-lp-body h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	font-size: clamp(22px, 3.2vw, 30px);
	color: var(--dpos-navy);
	margin: 44px 0 18px;
}
.dpos-lp-body p {
	font-size: 17px;
	line-height: 1.75;
	color: var(--dpos-muted);
	margin: 0 0 18px;
}
.dpos-lp-body p strong,
.dpos-lp-body li strong {
	color: var(--dpos-ink);
}
.dpos-lp-body a {
	color: var(--dpos-navy);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Feature / benefit lists become mint-ticked cards */
.dpos-lp-body ul {
	list-style: none;
	padding: 0;
	margin: 8px 0 24px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 14px;
}
.dpos-lp-body ul li {
	position: relative;
	background: #fff;
	border: 1px solid var(--dpos-line);
	border-radius: 12px;
	padding: 16px 18px 16px 48px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--dpos-muted);
	box-shadow: 0 2px 10px rgba(2, 2, 106, 0.04);
}
.dpos-lp-body ul li::before {
	content: "\2713";
	position: absolute;
	left: 16px;
	top: 16px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(30, 227, 192, 0.18);
	color: #0a8f78;
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Ordered lists (process steps) stay numbered, no card grid */
.dpos-lp-body ol {
	max-width: 720px;
	margin: 8px 0 24px;
	padding-left: 20px;
}
.dpos-lp-body ol li {
	font-size: 17px;
	line-height: 1.7;
	color: var(--dpos-muted);
	margin-bottom: 10px;
}

/* ---- Comparison table --------------------------------------------- */
.dpos-lp-compare {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin: 8px 0 28px;
	font-size: 15px;
	border: 1px solid var(--dpos-line);
	border-radius: 12px;
	overflow: hidden;
}
.dpos-lp-compare th,
.dpos-lp-compare td {
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid var(--dpos-line);
	vertical-align: top;
}
.dpos-lp-compare thead th {
	background: var(--dpos-navy);
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
}
.dpos-lp-compare thead th:last-child {
	background: #03038a;
}
.dpos-lp-compare tbody tr:nth-child(even) td {
	background: #f7f9fb;
}
.dpos-lp-compare td:first-child {
	font-weight: 600;
	color: var(--dpos-ink);
}
.dpos-lp-compare .dpos-yes {
	color: #0a8f78;
	font-weight: 600;
}
.dpos-lp-compare .dpos-no {
	color: #c0392b;
}
.dpos-lp-compare tr td:last-child {
	color: var(--dpos-navy);
	font-weight: 600;
}

/* ---- Closing CTA band --------------------------------------------- */
.dpos-lp-ctaband {
	margin: 48px 0 8px;
	background: rgba(30, 227, 192, 0.1);
	border: 1px solid rgba(30, 227, 192, 0.35);
	border-radius: 18px;
	padding: 40px 32px;
	text-align: center;
}
.dpos-lp-ctaband h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	color: var(--dpos-navy);
	font-size: clamp(22px, 3.4vw, 30px);
	margin: 0 0 12px;
}
.dpos-lp-ctaband p {
	color: var(--dpos-muted);
	font-size: 17px;
	margin: 0 0 24px;
}
.dpos-lp-ctaband .dpos-lp-btn-primary {
	background: var(--dpos-navy);
	color: #fff;
}
.dpos-lp-ctaband .dpos-lp-btn-primary:hover {
	background: #03038a;
	color: #fff;
	box-shadow: 0 10px 24px rgba(2, 2, 106, 0.25);
}

/* ---- Embedded Contact Form 7 (demo request) ---------------------- */
.dpos-lp-form {
	max-width: 760px;
	margin: 12px auto 0;
	background: #fff;
	border: 1px solid var(--dpos-line);
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 6px 28px rgba(2, 2, 106, 0.06);
}
.dpos-lp-form .wpcf7 label {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: var(--dpos-ink);
	margin-bottom: 6px;
}
.dpos-lp-form .form-wrap {
	margin-bottom: 18px;
}
.dpos-lp-form .wpcf7 .form-control,
.dpos-lp-form .wpcf7 input[type="text"],
.dpos-lp-form .wpcf7 input[type="email"],
.dpos-lp-form .wpcf7 input[type="tel"],
.dpos-lp-form .wpcf7 select,
.dpos-lp-form .wpcf7 textarea {
	width: 100%;
	padding: 11px 14px;
	font-size: 15px;
	font-family: "Roboto", sans-serif;
	color: var(--dpos-ink);
	background: #fff;
	border: 1px solid var(--dpos-line);
	border-radius: 9px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.dpos-lp-form .wpcf7 .form-control:focus,
.dpos-lp-form .wpcf7 input:focus,
.dpos-lp-form .wpcf7 select:focus,
.dpos-lp-form .wpcf7 textarea:focus {
	outline: none;
	border-color: var(--dpos-mint);
	box-shadow: 0 0 0 3px rgba(30, 227, 192, 0.18);
}
.dpos-lp-form .wpcf7 textarea {
	min-height: 130px;
	resize: vertical;
}
/* Checkbox groups ("What can we help with?", terms) */
.dpos-lp-form .wpcf7-checkbox .wpcf7-list-item {
	display: inline-flex;
	align-items: flex-start;
	gap: 6px;
	margin: 0 16px 8px 0;
	font-size: 14px;
	color: var(--dpos-muted);
}
.dpos-lp-form .wpcf7-checkbox .wpcf7-list-item label {
	display: inline;
	font-weight: 400;
	margin: 0;
}
/* Submit button — navy, full width, matches CTA styling */
.dpos-lp-form .wpcf7 input[type="submit"],
.dpos-lp-form .wpcf7 .wpcf7-submit {
	background: var(--dpos-navy);
	color: #fff;
	border: 0;
	border-radius: 10px;
	padding: 14px 30px;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 15px;
	width: 100%;
	cursor: pointer;
	transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.dpos-lp-form .wpcf7 input[type="submit"]:hover,
.dpos-lp-form .wpcf7 .wpcf7-submit:hover {
	background: #03038a;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(2, 2, 106, 0.25);
}
.dpos-lp-form .wpcf7-spinner {
	margin: 14px auto 0;
	display: block;
}

@media (max-width: 600px) {
	.dpos-lp-hero { padding: 48px 22px; }
	.dpos-lp-ctaband { padding: 32px 20px; }
	.dpos-lp-form { padding: 22px 18px; }
}
