/* ═══════════════════════════════════════════
   Sell Your Land — Frontend Styles
   CTA Button, Inquiry Modal
   ═══════════════════════════════════════════ */

/* ── CTA Button ─────────────────────────── */

.syl-cta-btn {
	display: inline-block;
	padding: 16px 40px;
	background: #f0c33c;
	color: #1d2327;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	touch-action: manipulation;
	transition: background .2s ease, transform .15s ease;
}

.syl-cta-btn:hover {
	background: #e5b52e;
	transform: translateY(-2px);
}

.syl-cta-btn--full {
	display: block;
	width: 100%;
}

/* ── Secondary Link ─────────────────────── */

.syl-cta-secondary {
	display: block;
	margin-top: 16px;
	font-size: 14px;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color .2s ease;
}
/* ── Modal Overlay ───────────────────────── */

.syl-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 999999;
	align-items: center;
	justify-content: center;
}

.syl-modal[aria-hidden="false"] {
	display: flex;
}

.syl-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.6);
	backdrop-filter: blur(4px);
}

/* ── Modal Card ──────────────────────────── */

.syl-modal__card {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 12px;
	padding: 40px 36px 32px;
	box-shadow: 0 20px 60px rgba(0,0,0,.25);
	animation: sylModalIn .25s ease;
}

@keyframes sylModalIn {
	from { opacity: 0; transform: translateY(20px) scale(.97); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.syl-modal__close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	font-size: 28px;
	color: #999;
	cursor: pointer;
	line-height: 1;
	padding: 4px;
	transition: color .15s ease;
}

.syl-modal__close:hover {
	color: #1d2327;
}

/* ── Progress Bar ────────────────────────── */

.syl-modal__progress {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-bottom: 32px;
	border-bottom: 2px solid #eee;
}

.syl-modal__progress-step {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding-bottom: 14px;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	color: #bbb;
	transition: color .2s ease, border-color .2s ease;
}

.syl-modal__progress-step--active {
	color: #1d2327;
	border-bottom-color: #f0c33c;
}

.syl-modal__progress-step--done {
	color: #1d2327;
	border-bottom-color: #1d2327;
}

.syl-modal__progress-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #eee;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
	transition: background .2s ease, color .2s ease;
}

.syl-modal__progress-step--active .syl-modal__progress-num {
	background: #f0c33c;
	color: #1d2327;
}

.syl-modal__progress-step--done .syl-modal__progress-num {
	background: #1d2327;
	color: #fff;
}

.syl-modal__progress-label {
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

/* ── Steps ───────────────────────────────── */

.syl-modal__step {
	display: none;
}

.syl-modal__step--active {
	display: block;
	animation: sylStepIn .2s ease;
}

@keyframes sylStepIn {
	from { opacity: 0; transform: translateX(10px); }
	to   { opacity: 1; transform: translateX(0); }
}

.syl-modal__title {
	margin: 0 0 24px;
	font-size: 22px;
	font-weight: 700;
	color: #1d2327;
	line-height: 1.3;
}

/* ── Fields ──────────────────────────────── */

.syl-modal__field {
	margin-bottom: 20px;
}

.syl-modal__field label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #1d2327;
}

.syl-modal__optional {
	font-weight: 400;
	color: #999;
	font-style: italic;
}

.syl-modal__field input[type="text"],
.syl-modal__field input[type="email"],
.syl-modal__field input[type="tel"],
.syl-modal__field select {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid #d0d5dd;
	border-radius: 6px;
	font-size: 15px;
	color: #1d2327;
	transition: border-color .15s ease;
	box-sizing: border-box;
}

.syl-modal__field input:focus,
.syl-modal__field select:focus {
	border-color: #f0c33c;
	outline: none;
	box-shadow: 0 0 0 3px rgba(240,195,60,.15);
}

.syl-modal__field--error input,
.syl-modal__field--error select {
	border-color: #dc2626;
}

.syl-modal__field--error .syl-modal__checkboxes {
	border: 1.5px solid #dc2626;
	border-radius: 8px;
	padding: 8px;
}

.syl-modal__error-msg {
	display: none;
	margin-top: 6px;
	font-size: 13px;
	color: #dc2626;
}

.syl-modal__field--error .syl-modal__error-msg {
	display: block;
}

/* ── Acreage Slider ─────────────────────── */

.syl-modal__slider-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
}

.syl-modal__slider-wrap input[type="range"] {
	flex: 1;
	height: 6px;
	-webkit-appearance: none;
	appearance: none;
	background: #e0e0e0;
	border-radius: 3px;
	outline: none;
	cursor: pointer;
}

.syl-modal__slider-wrap input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #f0c33c;
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.syl-modal__slider-wrap input[type="range"]::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #f0c33c;
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.syl-modal__acreage-input {
	width: 80px !important;
	padding: 8px 10px !important;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	border: 1.5px solid #d0d5dd;
	border-radius: 6px;
	color: #1d2327;
	box-sizing: border-box;
	-moz-appearance: textfield;
}

.syl-modal__acreage-input::-webkit-inner-spin-button,
.syl-modal__acreage-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.syl-modal__acreage-unit {
	font-size: 14px;
	color: #888;
	font-weight: 600;
	flex-shrink: 0;
}

/* ── Checkbox Cards ──────────────────────── */

.syl-modal__checkboxes {
	display: grid;
	gap: 10px;
}

.syl-modal__checkboxes--land {
	grid-template-columns: 1fr 1fr;
}

.syl-modal__checkboxes--marketing {
	grid-template-columns: 1fr;
}

.syl-modal__checkbox-card {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	border: 1.5px solid #e0e0e0;
	border-radius: 8px;
	cursor: pointer;
	transition: border-color .15s ease, background .15s ease;
	user-select: none;
	position: relative;
}

.syl-modal__checkbox-card:hover {
	border-color: #c9a227;
	background: #fffdf5;
}

.syl-modal__checkbox-card input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.syl-modal__checkbox-card:has(input:checked) {
	border-color: #f0c33c;
	background: #fffceb;
}

.syl-modal__checkbox-icon {
	font-size: 24px;
	line-height: 1;
	grid-row: 1;
	grid-column: 1;
}

.syl-modal__checkbox-label {
	font-size: 14px;
	font-weight: 600;
	color: #1d2327;
	grid-row: 1;
	grid-column: 2;
}

/* Compact card for land types (2-col grid) */
.syl-modal__checkbox-card--compact {
	padding: 12px 14px;
}

.syl-modal__checkbox-card--compact .syl-modal__checkbox-icon {
	font-size: 22px;
}

/* Wide card for marketing (emoji left, title+desc right) */
.syl-modal__checkbox-card--wide {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center;
	gap: 14px;
	padding: 16px;
}

.syl-modal__checkbox-card--wide .syl-modal__checkbox-icon {
	font-size: 32px;
	flex-shrink: 0;
	line-height: 1;
}

.syl-modal__checkbox-content {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
	min-width: 0;
}

.syl-modal__checkbox-content strong {
	font-size: 14px;
	color: #1d2327;
}

.syl-modal__checkbox-content small {
	font-size: 12px;
	color: #888;
}

/* ── Nav Buttons ─────────────────────────── */

.syl-modal__nav {
	margin-top: 28px;
}

.syl-modal__btn {
	display: block;
	width: 100%;
	padding: 14px 24px;
	font-size: 14px;
	font-weight: 700;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background .15s ease, transform .1s ease;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.syl-modal__btn--next,
.syl-modal__btn--submit {
	background: #f0c33c;
	color: #1d2327;
}

.syl-modal__btn--next:hover,
.syl-modal__btn--submit:hover {
	background: #e5b52e;
}

.syl-modal__btn:disabled {
	opacity: .5;
	cursor: not-allowed;
}

/* ── Success State ───────────────────────── */

.syl-modal__step--success {
	text-align: center;
	padding: 20px 0;
}

.syl-modal__success-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	background: #f0c33c;
	color: #1d2327;
	font-size: 32px;
	font-weight: 700;
	line-height: 64px;
	text-align: center;
	border-radius: 50%;
}

.syl-modal__success-text {
	font-size: 15px;
	color: #666;
	line-height: 1.6;
	text-align: center;
}

.syl-modal__restart-link {
	display: inline-block;
	margin-top: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #c9a227;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color .15s ease;
}

.syl-modal__restart-link:hover {
	color: #1d2327;
}

/* ── Mobile Modal ────────────────────────── */

@media (max-width: 600px) {
	.syl-modal__card {
		max-width: 100%;
		max-height: 100vh;
		height: 100%;
		border-radius: 0;
		padding: 32px 20px 24px;
	}

	.syl-modal__title {
		font-size: 20px;
	}

	.syl-modal__progress-label {
		font-size: 11px;
	}
}

/* ═══════════════════════════════════════════════════════════
   SYL Comparison — Exclusive vs Standard
   ═══════════════════════════════════════════════════════════ */

.syl-comparison {
	margin: 0 auto;
	text-align: center;
}

.syl-comparison__heading {
	font-size: 32px;
	font-weight: 700;
	color: #1d2327;
	margin: 0 0 8px;
}

.syl-comparison__subheading {
	font-size: 16px;
	color: #666;
	margin: 0 0 40px;
}

.syl-comparison__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: stretch;
}

.syl-comparison__card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
	text-align: left;
	transition: box-shadow .2s ease;
	display: flex;
	flex-direction: column;
}

.syl-comparison__card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.syl-comparison__card--exclusive {
	border-color: #f0c33c;
	position: relative;
}

.syl-comparison__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #f0c33c;
	color: #1d2327;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 4px;
	letter-spacing: .5px;
	z-index: 1;
}

.syl-comparison__img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
}

.syl-comparison__title {
	font-size: 18px;
	font-weight: 700;
	color: #1d2327;
	margin: 16px 20px 8px;
}

.syl-comparison__bullets {
	list-style: none;
	padding: 0;
	margin: 0 20px 20px;
}

.syl-comparison__bullets li {
	font-size: 14px;
	color: #444;
	padding: 4px 0 4px 20px;
	position: relative;
}

.syl-comparison__bullets li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #f0c33c;
	font-weight: 700;
}

.syl-comparison__desc {
	font-size: 14px;
	color: #666;
	margin: 0 20px 20px;
	line-height: 1.5;
}

.syl-comparison__card--standard {
	opacity: .7;
}

@media (max-width: 600px) {
	.syl-comparison__grid {
		grid-template-columns: 1fr;
	}

	.syl-comparison__heading {
		font-size: 24px;
	}
}

/* ═══════════════════════════════════════════════════════════
   SYL Features — "How We Feature Your Land"
   ═══════════════════════════════════════════════════════════ */

.syl-features {
	margin: 0 auto;
	text-align: center;
}

.syl-features__heading {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 40px;
}

.syl-features__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.syl-features__card {
	background: #1d2327;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 12px;
	padding: 28px 24px;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease;
}

.syl-features__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(0,0,0,.3);
}

.syl-features__icon {
	margin-bottom: 12px;
}

.syl-features__icon img {
	width: 96px;
	height: 96px;
	object-fit: contain;
}

.syl-features__icon span {
	font-size: 96px;
	line-height: 1;
}

.syl-features__title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 6px;
	text-transform: uppercase;
	letter-spacing: .5px;
}

.syl-features__desc {
	font-size: 13px;
	color: rgba(255,255,255,.65);
	margin: 0;
	line-height: 1.4;
}

@media (max-width: 600px) {
	.syl-features__grid {
		grid-template-columns: 1fr;
	}

	.syl-features__heading {
		font-size: 24px;
	}
}

/* ═══════════════════════════════════════════════════════════
   SYL Journey — "Your Property Journey"
   ═══════════════════════════════════════════════════════════ */

.syl-journey {
	margin: 0 auto;
	text-align: center;
}

.syl-journey__heading {
	font-size: 32px;
	font-weight: 700;
	color: #1d2327;
	margin: 0 0 48px;
}

.syl-journey__timeline {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 0;
}

.syl-journey__step {
	flex: 1;
	position: relative;
	text-align: center;
	padding: 0 12px;
}

.syl-journey__num {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #f0c33c;
	color: #1d2327;
	font-size: 20px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	position: relative;
	z-index: 1;
}

.syl-journey__connector {
	position: absolute;
	top: 24px;
	left: calc(50% + 28px);
	width: calc(100% - 56px);
	height: 2px;
	background: #e0e0e0;
}

.syl-journey__title {
	font-size: 15px;
	font-weight: 700;
	color: #1d2327;
	margin: 0 0 4px;
	text-transform: uppercase;
	letter-spacing: .3px;
}

.syl-journey__desc {
	font-size: 13px;
	color: #666;
	margin: 0;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.syl-journey__timeline {
		flex-wrap: wrap;
	}

	.syl-journey__step {
		flex: 0 0 50%;
		margin-bottom: 32px;
	}

	.syl-journey__connector {
		display: none;
	}
}

@media (max-width: 480px) {
	.syl-journey__step {
		flex: 0 0 100%;
	}

	.syl-journey__heading {
		font-size: 24px;
		margin-bottom: 32px;
	}
}

/* ═══════════════════════════════════════════════════════════
   SYL Stats — "Our Marketing Reach"
   ═══════════════════════════════════════════════════════════ */

.syl-stats {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 12px;
	overflow: hidden;
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.syl-stats__overlay {
	position: absolute;
	inset: 0;
	background: #1d2327;
	z-index: 1;
}

.syl-stats__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 48px 24px;
	width: 100%;
}

.syl-stats__heading {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 40px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.syl-stats__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px 48px;
}

.syl-stats__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.syl-stats__value {
	font-size: 36px;
	font-weight: 800;
	color: #f0c33c;
	line-height: 1;
}

.syl-stats__label {
	font-size: 12px;
	color: rgba(255,255,255,.7);
	text-transform: uppercase;
	letter-spacing: .5px;
	max-width: 140px;
}

@media (max-width: 600px) {
	.syl-stats__grid {
		gap: 24px 32px;
	}

	.syl-stats__value {
		font-size: 28px;
	}

	.syl-stats__heading {
		font-size: 22px;
	}
}
