/**
 * Instant SEO Sites by Appora — public landing
 * Shortcode: [appora_contractor_landing]
 */

.dte-iss {
	--iss-navy: #0b1b49;
	--iss-navy-2: #162b63;
	--iss-text: #12224c;
	--iss-muted: #657697;
	--iss-blue: #159cff;
	--iss-blue-2: #2563eb;
	--iss-purple: #6f3cff;
	--iss-line: #dce5f4;
	--iss-shadow: 0 18px 50px rgba(60, 73, 140, 0.14);
	--iss-shadow-strong: 0 24px 70px rgba(78, 61, 196, 0.18);
	--iss-max: 1180px;
	--iss-grad: linear-gradient(90deg, var(--iss-blue), var(--iss-blue-2) 48%, var(--iss-purple));
	color: var(--iss-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
	background: #fff;
}

.dte-iss *,
.dte-iss *::before,
.dte-iss *::after {
	box-sizing: border-box;
}

.dte-iss a {
	text-decoration: none;
	color: inherit;
}

.dte-iss-wrap {
	width: min(var(--iss-max), calc(100% - 40px));
	margin: 0 auto;
}

.dte-iss-center {
	text-align: center;
}

.dte-iss-center .dte-iss-sub {
	margin-left: auto;
	margin-right: auto;
}

/* Hero */
.dte-iss-hero {
	position: relative;
	overflow: hidden;
	padding: 28px 0 80px;
	background:
		radial-gradient(circle at 12% 10%, rgba(124, 77, 255, 0.12), transparent 28%),
		radial-gradient(circle at 88% 12%, rgba(21, 156, 255, 0.14), transparent 30%),
		linear-gradient(180deg, #fdfdff 0%, #ffffff 88%);
	border-bottom: 1px solid #edf1f8;
}

.dte-iss-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(115deg, rgba(255, 255, 255, 0.4), transparent 40%),
		linear-gradient(245deg, rgba(255, 255, 255, 0.35), transparent 45%);
}

.dte-iss-nav {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 0 28px;
	gap: 16px;
}

.dte-iss-brand {
	font-size: clamp(20px, 3vw, 27px);
	line-height: 1.05;
	font-weight: 950;
	letter-spacing: -0.045em;
	color: var(--iss-navy);
}

.dte-iss-brand span {
	background: var(--iss-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.dte-iss-brand em {
	display: block;
	margin-top: 4px;
	font-style: normal;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--iss-muted);
}

.dte-iss-nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 12px;
	color: #fff !important;
	font-weight: 900;
	font-size: 14px;
	background: var(--iss-grad);
	box-shadow: 0 10px 26px rgba(81, 79, 231, 0.2);
	transition: 0.2s ease;
	white-space: nowrap;
}

.dte-iss-nav-cta:hover {
	transform: translateY(-2px);
}

.dte-iss-hero-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	padding-top: 12px;
}

.dte-iss-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid #dbe4f4;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 6px 18px rgba(60, 83, 138, 0.08);
	color: var(--iss-blue-2);
	font-weight: 900;
	font-size: 13px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.dte-iss-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--iss-blue-2);
	box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.08);
}

.dte-iss-hero h1 {
	max-width: 1020px;
	margin: 32px auto 18px;
	font-size: clamp(42px, 7vw, 84px);
	line-height: 0.98;
	letter-spacing: -0.065em;
	color: var(--iss-navy);
	font-weight: 950;
}

.dte-iss-grad {
	background: var(--iss-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.dte-iss-hero-copy {
	max-width: 800px;
	margin: 0 auto;
	color: var(--iss-muted);
	font-size: clamp(18px, 2vw, 23px);
}

.dte-iss-hero-copy strong {
	color: var(--iss-navy);
}

.dte-iss-video {
	max-width: 820px;
	margin: 28px auto 0;
}

.dte-iss-video-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 18px;
	overflow: hidden;
	background: #0b1228;
	border: 1px solid #dbe4f4;
	box-shadow: 0 18px 50px rgba(60, 73, 140, 0.16);
}

.dte-iss-video-embed,
.dte-iss-video-file {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	background: #000;
}

.dte-iss-video-file {
	object-fit: cover;
}

.dte-iss-playlist {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	margin-top: 12px;
}

.dte-iss-playlist-item {
	appearance: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: center;
	color: inherit;
	font: inherit;
}

.dte-iss-playlist-thumb {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	background: #0b1228 center / cover no-repeat;
	border: 2px solid transparent;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}

.dte-iss-playlist-item.is-active .dte-iss-playlist-thumb,
.dte-iss-playlist-item:hover .dte-iss-playlist-thumb,
.dte-iss-playlist-item:focus-visible .dte-iss-playlist-thumb {
	border-color: var(--iss-blue);
}

.dte-iss-playlist-play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 36px;
	height: 36px;
	margin: -18px 0 0 -18px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.28);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.dte-iss-playlist-play::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 53%;
	width: 0;
	height: 0;
	margin: -6px 0 0 -4px;
	border-style: solid;
	border-width: 7px 0 7px 11px;
	border-color: transparent transparent transparent #fff;
}

.dte-iss-playlist-title {
	display: block;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--iss-navy);
}

.dte-iss-cta-row {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.dte-iss-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	padding: 17px 26px;
	font-weight: 950;
	font-size: 17px;
	transition: 0.2s ease;
	border: 0;
	cursor: pointer;
}

.dte-iss-btn--primary {
	color: #fff !important;
	background: var(--iss-grad);
	box-shadow: 0 14px 34px rgba(81, 79, 231, 0.25);
	font-size: 13px;
}

.dte-iss-btn--primary:hover {
	transform: translateY(-2px);
}

.dte-iss-btn--secondary {
	color: var(--iss-navy) !important;
	background: #fff;
	border: 1px solid #d9e2f1;
	box-shadow: 0 10px 28px rgba(60, 73, 140, 0.09);
}

.dte-iss-btn--secondary:hover {
	transform: translateY(-2px);
}

.dte-iss-btn--block {
	width: 100%;
}

.dte-iss-micro {
	margin-top: 14px;
	color: #7a89a4;
	font-size: 13px;
	font-weight: 700;
}

.dte-iss-micro--spaced {
	margin-top: 20px;
}

.dte-iss-trust {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 30px;
	color: #607190;
	font-weight: 800;
	font-size: 14px;
}

.dte-iss-trust span::before {
	content: "✓";
	color: var(--iss-blue-2);
	font-weight: 950;
	margin-right: 7px;
}

/* Sections */
.dte-iss-section {
	padding: 82px 0;
}

.dte-iss-kicker {
	color: var(--iss-blue-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.dte-iss h2 {
	margin: 0;
	color: var(--iss-navy);
	font-size: clamp(32px, 5vw, 60px);
	line-height: 1.02;
	letter-spacing: -0.055em;
	font-weight: 950;
}

.dte-iss-sub {
	margin: 16px 0 0;
	color: var(--iss-muted);
	font-size: 18px;
	max-width: 760px;
}

.dte-iss-how {
	background:
		radial-gradient(circle at 10% 0%, rgba(124, 77, 255, 0.08), transparent 24%),
		radial-gradient(circle at 95% 10%, rgba(21, 156, 255, 0.08), transparent 24%),
		#fbfcff;
	border-top: 1px solid #edf1f8;
	border-bottom: 1px solid #edf1f8;
}

.dte-iss-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 34px;
	text-align: left;
}

.dte-iss-step {
	background: #fff;
	border: 1px solid var(--iss-line);
	border-radius: 18px;
	padding: 23px;
	box-shadow: 0 12px 28px rgba(60, 73, 140, 0.07);
}

.dte-iss-step-num {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	background: var(--iss-grad);
	font-weight: 950;
	font-size: 13px;
	margin-bottom: 16px;
}

.dte-iss-step h3 {
	margin: 0 0 7px;
	color: var(--iss-navy);
	font-size: 19px;
}

.dte-iss-step p {
	margin: 0;
	color: var(--iss-muted);
	font-size: 14px;
}

.dte-iss-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 34px;
}

.dte-iss-card {
	background: #fff;
	border: 1px solid var(--iss-line);
	border-radius: 20px;
	padding: 28px;
	box-shadow: var(--iss-shadow);
}

.dte-iss-icon {
	width: 48px;
	height: 48px;
	border-radius: 15px;
	display: grid;
	place-items: center;
	margin-bottom: 22px;
	background: linear-gradient(135deg, #ebf7ff, #efe9ff);
	color: var(--iss-purple);
	font-weight: 950;
	font-size: 19px;
	border: 1px solid #dfe6f5;
}

.dte-iss-card h3 {
	margin: 0 0 10px;
	color: var(--iss-navy);
	font-size: 23px;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.dte-iss-card p {
	margin: 0;
	color: var(--iss-muted);
}

/* Pricing */
.dte-iss-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 36px;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.dte-iss-price-card {
	position: relative;
	border: 1px solid var(--iss-line);
	border-radius: 24px;
	padding: 34px;
	background: #fff;
	box-shadow: var(--iss-shadow);
	overflow: hidden;
}

.dte-iss-price-card.is-featured {
	border: 2px solid transparent;
	background:
		linear-gradient(#fff, #fff) padding-box,
		var(--iss-grad) border-box;
	box-shadow: var(--iss-shadow-strong);
}

.dte-iss-badge {
	position: absolute;
	right: 22px;
	top: 22px;
	padding: 7px 11px;
	border-radius: 999px;
	color: #fff;
	background: var(--iss-grad);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.dte-iss-plan {
	color: var(--iss-blue-2);
	font-size: 13px;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.11em;
}

.dte-iss-price {
	margin: 14px 0 4px;
	color: var(--iss-navy);
	font-size: 62px;
	font-weight: 950;
	letter-spacing: -0.07em;
	line-height: 1;
}

.dte-iss-price span {
	color: var(--iss-muted);
	font-size: 18px;
	letter-spacing: 0;
	font-weight: 700;
}

.dte-iss-price-desc {
	color: var(--iss-muted);
	min-height: 52px;
	margin: 0;
}

.dte-iss-list {
	list-style: none;
	padding: 0;
	margin: 24px 0;
	display: grid;
	gap: 13px;
}

.dte-iss-list li {
	color: #4f6286;
	font-weight: 700;
}

.dte-iss-list li::before {
	content: "✓";
	display: inline-grid;
	place-items: center;
	width: 21px;
	height: 21px;
	margin-right: 9px;
	border-radius: 50%;
	color: #fff;
	background: var(--iss-grad);
	font-size: 12px;
	font-weight: 950;
	vertical-align: 1px;
}

.dte-iss-hosting {
	margin-top: 16px;
	padding: 15px 16px;
	border-radius: 14px;
	background: linear-gradient(135deg, #f0f8ff, #f5efff);
	color: #536487;
	font-size: 14px;
	border: 1px solid #dfe7f5;
}

.dte-iss-hosting strong {
	color: var(--iss-navy);
}

/* Lifecycle */
.dte-iss-lifecycle {
	background: linear-gradient(120deg, #f4efff 0%, #fff 48%, #edf9ff 100%);
	border-top: 1px solid #e7ecf6;
	border-bottom: 1px solid #e7ecf6;
}

.dte-iss-timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 34px;
	text-align: left;
}

.dte-iss-timeline-item {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--iss-line);
	border-radius: 18px;
	padding: 23px;
	box-shadow: 0 12px 28px rgba(60, 73, 140, 0.07);
}

.dte-iss-timeline-day {
	color: var(--iss-purple);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.dte-iss-timeline-item h3 {
	margin: 8px 0 7px;
	color: var(--iss-navy);
	font-size: 19px;
}

.dte-iss-timeline-item p {
	margin: 0;
	color: var(--iss-muted);
	font-size: 14px;
}

.dte-iss-callout {
	margin-top: 26px;
	padding: 22px;
	border-radius: 18px;
	color: var(--iss-navy);
	background: #fff;
	border: 1px solid #dfe6f3;
	box-shadow: var(--iss-shadow);
	font-weight: 850;
}

.dte-iss-callout strong {
	background: var(--iss-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* FAQ */
.dte-iss-faq {
	display: grid;
	gap: 12px;
	max-width: 880px;
	margin: 30px auto 0;
	text-align: left;
}

.dte-iss-faq details {
	background: #fff;
	border: 1px solid var(--iss-line);
	border-radius: 16px;
	padding: 20px 22px;
	box-shadow: 0 8px 22px rgba(60, 73, 140, 0.05);
}

.dte-iss-faq summary {
	cursor: pointer;
	color: var(--iss-navy);
	font-weight: 900;
	font-size: 17px;
}

.dte-iss-faq details p {
	margin: 12px 0 0;
	color: var(--iss-muted);
}

.dte-iss-faq details ul {
	margin: 12px 0 0;
	padding-left: 1.2em;
	color: var(--iss-muted);
	display: grid;
	gap: 8px;
}

.dte-iss-faq details li {
	line-height: 1.45;
}

/* Final CTA */
.dte-iss-final {
	text-align: center;
	padding: 92px 0;
	background:
		radial-gradient(circle at 15% 20%, rgba(124, 77, 255, 0.12), transparent 28%),
		radial-gradient(circle at 88% 30%, rgba(21, 156, 255, 0.12), transparent 26%),
		#fbfcff;
	border-top: 1px solid #edf1f8;
}

.dte-iss-final-copy {
	max-width: 700px;
	margin: 18px auto 0;
	color: var(--iss-muted);
	font-size: 19px;
}

.dte-iss-footer {
	padding: 28px 0 40px;
	border-top: 1px solid #e9eef7;
	color: #7c89a3;
	font-size: 13px;
}

.dte-iss-footer-row {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

/* Theme chrome hide on dedicated landing page */
body.dte-cl-landing-page .site-header,
body.dte-cl-landing-page .site-footer,
body.dte-cl-landing-page #masthead,
body.dte-cl-landing-page #colophon,
body.dte-cl-landing-page .elementor-location-header,
body.dte-cl-landing-page .elementor-location-footer {
	display: none !important;
}

body.dte-cl-landing-page .site-content,
body.dte-cl-landing-page #content,
body.dte-cl-landing-page .entry-content {
	margin: 0 !important;
	padding: 0 !important;
	max-width: none !important;
}

@media (max-width: 900px) {
	.dte-iss-cards,
	.dte-iss-steps,
	.dte-iss-pricing-grid,
	.dte-iss-timeline {
		grid-template-columns: 1fr;
	}

	.dte-iss-nav-cta {
		display: none;
	}

	.dte-iss-hero {
		padding-bottom: 58px;
	}

	.dte-iss-hero h1 {
		font-size: clamp(40px, 11vw, 70px);
	}

	.dte-iss-price-card {
		padding: 28px;
	}

	.dte-iss-price {
		font-size: 52px;
	}

	.dte-iss-playlist {
		display: flex;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 4px;
	}

	.dte-iss-playlist-item {
		flex: 0 0 68%;
		max-width: 240px;
	}
}
