/*
Theme Name: Lucky Tyke Child
Template: greenlight
Description: Lucky Tyke WordPress Development Studio - light theme child of GreenLight
Author: Ryan Davis
Version: 2.2.0
*/

/* ================================================================
   CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
	--lt-cream: #faf7f2;
	--lt-teal: #1a7a6d;
	--lt-coral: #e8725a;
	--lt-gold: #f0c05a;
	--lt-charcoal: #2d3436;
	--lt-dark: #1a1a2e;
	--lt-white: #ffffff;
	--lt-font-heading: 'Fraunces', serif;
	--lt-font-body: 'DM Sans', sans-serif;
}

::selection {
	background-color: var(--lt-teal);
	color: var(--lt-white);
}

/* Iconify consistent stroke */
iconify-icon {
	stroke-width: 1.5px;
}

/* ================================================================
   WORDPRESS FIXES
   ================================================================ */

/* Greenshift injects inline <style> tags before blocks.
   WordPress constrained layout applies margin-block-start to all children except :first-child.
   The <style> tag becomes first-child, so the nav gets the gap (~25.6px). */
.lt-nav {
	margin-top: 0 !important;
	margin-block-start: 0 !important;
}

/* Admin bar offset for fixed nav */
body.admin-bar .lt-nav {
	top: var(--wp-admin--admin-bar--height, 0px) !important;
}

/* GreenLight sets root padding; WordPress applies negative margins to .alignfull
   which causes overflow on blank templates with zero parent padding. */
.has-global-padding > .alignfull {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* ================================================================
   LAYOUT UTILITIES
   ================================================================ */
.lt-container {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.lt-section {
	padding-top: 6rem;
	padding-bottom: 8rem;
	position: relative;
}

.lt-section-lg {
	padding-top: 8rem;
	padding-bottom: 8rem;
	position: relative;
}

@media (max-width: 767px) {
	.lt-section {
		padding-top: 3.5rem;
		padding-bottom: 4rem;
	}
	.lt-section-lg {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
}

.lt-section-header {
	text-align: center;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5rem;
}

.lt-section-desc {
	font-size: 1.125rem;
	color: rgba(45, 52, 54, 0.7);
	line-height: 1.7;
	margin-top: 1rem;
}

.lt-text-white .lt-section-desc {
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.25rem;
}

.lt-hide-mobile {
	display: inline;
}

@media (max-width: 991px) {
	.lt-hide-mobile {
		display: none !important;
	}
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.lt-h1 {
	font-family: var(--lt-font-heading);
	font-size: clamp(2.75rem, 5vw + 1rem, 5rem);
	line-height: 1.05;
	font-weight: 500;
	color: var(--lt-charcoal);
	letter-spacing: -0.02em;
}

.lt-h2 {
	font-family: var(--lt-font-heading);
	font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem);
	line-height: 1.15;
	font-weight: 500;
	color: var(--lt-charcoal);
}

.lt-h3 {
	font-family: var(--lt-font-heading);
	font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
	line-height: 1.25;
	font-weight: 600;
	color: var(--lt-charcoal);
	margin-bottom: 1rem;
}

.lt-h4 {
	font-family: var(--lt-font-heading);
	font-size: 1.5rem;
	line-height: 1.3;
	font-weight: 600;
	color: var(--lt-charcoal);
	margin-bottom: 0.75rem;
}

.lt-teal-italic {
	color: var(--lt-teal);
	font-family: var(--lt-font-heading);
	font-style: italic;
	font-weight: 300;
	padding-right: 0.25rem;
}

.lt-text-primary { color: var(--lt-teal); }
.lt-text-coral { color: var(--lt-coral); }
.lt-text-gold { color: var(--lt-gold); }
.lt-text-white { color: var(--lt-white); }

/* ================================================================
   NAVIGATION
   ================================================================ */
.lt-glass-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(250, 247, 242, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(26, 122, 109, 0.1);
	transition: all 0.3s ease;
}

.lt-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 5rem;
}

.lt-wordmark {
	font-family: var(--lt-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lt-charcoal);
	text-decoration: none;
}

.lt-logo-icon {
	height: 2rem;
	width: auto;
	vertical-align: middle;
	margin-right: 0.4rem;
	border-radius: 4px;
}

.lt-footer .lt-logo-icon {
	height: 1.5rem;
}


.lt-nav-links {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	font-family: var(--lt-font-body);
	font-weight: 500;
	font-size: 0.95rem;
}

.lt-nav-links a {
	color: rgba(45, 52, 54, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

.lt-nav-links a:hover {
	color: var(--lt-teal);
}

/* Mobile hamburger toggle */
.lt-hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 60;
}

.lt-hamburger span {
	display: block;
	width: 1.5rem;
	height: 2px;
	background: var(--lt-charcoal);
	margin: 5px 0;
	transition: all 0.3s ease;
	border-radius: 2px;
}

@media (max-width: 767px) {
	.lt-nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(250, 247, 242, 0.98);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		flex-direction: column;
		padding: 1rem 1.5rem;
		gap: 0;
		border-bottom: 1px solid rgba(26, 122, 109, 0.1);
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	}

	.lt-nav-links.lt-nav-open {
		display: flex;
	}

	.lt-nav-links a {
		padding: 0.875rem 0;
		font-size: 1.0625rem;
		border-bottom: 1px solid rgba(26, 122, 109, 0.06);
	}

	.lt-nav-links a:last-child {
		border-bottom: none;
	}

	.lt-hamburger {
		display: block;
	}

	/* Hamburger → X animation */
	.lt-hamburger.lt-active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}
	.lt-hamburger.lt-active span:nth-child(2) {
		opacity: 0;
	}
	.lt-hamburger.lt-active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}
}

/* ================================================================
   BUTTONS
   ================================================================ */
.lt-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--lt-font-body);
	font-weight: 500;
	text-decoration: none;
	border-radius: 9999px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.lt-btn-nav {
	background: var(--lt-teal);
	color: var(--lt-white);
	padding: 0.625rem 1.5rem;
	font-size: 0.875rem;
}

.lt-btn-nav:hover {
	background: rgba(26, 122, 109, 0.9);
	box-shadow: 0 8px 24px rgba(26, 122, 109, 0.2);
	transform: translateY(-2px);
}

@media (max-width: 767px) {
	.lt-btn-nav {
		font-size: 0.8rem;
		padding: 0.5rem 1.25rem;
	}
}

.lt-btn-primary {
	background: var(--lt-coral);
	color: var(--lt-white);
	padding: 0.75rem 2rem;
	font-size: 1rem;
}

.lt-btn-primary:hover {
	background: rgba(232, 114, 90, 0.9);
	box-shadow: 0 12px 32px rgba(232, 114, 90, 0.3);
	transform: translateY(-4px);
}

.lt-btn-lg {
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
}

.lt-btn-outline {
	background: transparent;
	color: var(--lt-charcoal);
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
	border: 2px solid rgba(45, 52, 54, 0.2);
}

.lt-btn-outline:hover {
	border-color: var(--lt-charcoal);
	background: var(--lt-charcoal);
	color: var(--lt-white);
	box-shadow: 0 12px 32px rgba(45, 52, 54, 0.15);
	transform: translateY(-4px);
}

.lt-btn-text-link {
	color: rgba(45, 52, 54, 0.8);
	font-family: var(--lt-font-body);
	font-weight: 500;
	font-size: 1.125rem;
	text-decoration: none;
	transition: color 0.3s ease;
}

.lt-btn-text-link:hover {
	color: var(--lt-coral);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.lt-hero {
	overflow: hidden;
	padding-top: 5rem;
	padding-bottom: 8rem;
}

@media (min-width: 992px) {
	.lt-hero {
		padding-top: 8rem;
		padding-bottom: 12rem;
	}
}

.lt-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

@media (min-width: 992px) {
	.lt-hero-grid {
		grid-template-columns: 7fr 5fr;
	}
}

.lt-hero-text {
	position: relative;
	z-index: 10;
}

.lt-hero-desc {
	font-size: 1.25rem;
	color: rgba(45, 52, 54, 0.7);
	margin-bottom: 2.5rem;
	max-width: 36rem;
	line-height: 1.7;
}

.lt-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

/* Badge pill */
.lt-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(240, 192, 90, 0.2);
	color: rgba(45, 52, 54, 0.9);
	padding: 0.5rem 1.25rem;
	border-radius: 9999px;
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: 2rem;
	border: 1px solid rgba(240, 192, 90, 0.3);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lt-badge-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--lt-gold);
	animation: ltPulse 2s infinite;
}

@keyframes ltPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

/* Hero visual column */
.lt-hero-visual {
	position: relative;
	height: 500px;
}

/* Animated blobs */
.lt-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	mix-blend-mode: multiply;
	animation: ltBlob 7s infinite;
}

.lt-blob-teal {
	top: 2.5rem;
	left: -2.5rem;
	width: 20rem;
	height: 20rem;
	background: rgba(26, 122, 109, 0.2);
}

.lt-blob-coral {
	top: 0;
	right: -1rem;
	width: 18rem;
	height: 18rem;
	background: rgba(232, 114, 90, 0.2);
}

.lt-blob-gold {
	bottom: -2rem;
	left: 4rem;
	width: 20rem;
	height: 20rem;
	background: rgba(240, 192, 90, 0.2);
}

.lt-blob-delay-2 { animation-delay: 2s; }
.lt-blob-delay-4 { animation-delay: 4s; }

@keyframes ltBlob {
	0% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(30px, -50px) scale(1.1); }
	66% { transform: translate(-20px, 20px) scale(0.9); }
	100% { transform: translate(0, 0) scale(1); }
}

/* Glass performance card */
.lt-glass-card {
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	border-radius: 2rem;
}

.lt-hero-card {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 320px;
	padding: 2rem;
	z-index: 10;
}

.lt-hero-card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.lt-hero-card-title {
	font-family: var(--lt-font-heading);
	font-weight: 600;
	color: var(--lt-charcoal);
	font-size: 1.25rem;
}

.lt-hero-card-sub {
	font-size: 0.875rem;
	color: rgba(45, 52, 54, 0.6);
	font-weight: 500;
}

.lt-hero-score {
	font-family: var(--lt-font-body);
	font-size: 4.5rem;
	font-weight: 700;
	color: var(--lt-teal);
	letter-spacing: -0.05em;
	line-height: 1;
	margin-bottom: 1rem;
}

.lt-progress-bar {
	width: 100%;
	height: 0.75rem;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 9999px;
	overflow: hidden;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
	margin-bottom: 0.5rem;
}

.lt-progress-fill {
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, var(--lt-teal), #34d399);
	border-radius: 9999px;
	position: relative;
	overflow: hidden;
}

.lt-hero-card-footer {
	display: flex;
	justify-content: space-between;
	font-size: 0.6875rem;
	font-weight: 700;
	color: rgba(45, 52, 54, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 1rem;
}

/* Float animation */
.lt-float {
	animation: ltFloat 6s ease-in-out infinite;
}

@keyframes ltFloat {
	0% { transform: translate(-50%, -50%) translateY(0); }
	50% { transform: translate(-50%, -50%) translateY(-15px); }
	100% { transform: translate(-50%, -50%) translateY(0); }
}

/* Shimmer effect */
.lt-shimmer {
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
	transform: skewX(12deg);
	animation: ltShimmer 3s infinite;
}

@keyframes ltShimmer {
	100% { transform: skewX(12deg) translateX(800%); }
}

/* ================================================================
   ICON BOXES
   ================================================================ */
.lt-icon-box {
	width: 4rem;
	height: 4rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.875rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.lt-icon-teal {
	background: rgba(26, 122, 109, 0.1);
	color: var(--lt-teal);
}

.lt-icon-coral {
	background: rgba(232, 114, 90, 0.1);
	color: var(--lt-coral);
}

.lt-icon-gold {
	background: rgba(240, 192, 90, 0.2);
	color: var(--lt-gold);
}

.lt-hero-card-header .lt-icon-box {
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 0;
}

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.lt-services {
	z-index: 10;
}

.lt-services::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.4);
	z-index: -1;
}

.lt-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	align-items: start;
}

@media (min-width: 992px) {
	.lt-grid-2 {
		gap: 3rem;
	}
}

@media (max-width: 767px) {
	.lt-grid-2 {
		grid-template-columns: 1fr;
	}
}

.lt-grid-col {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (min-width: 992px) {
	.lt-grid-col {
		gap: 3rem;
	}
}

.lt-col-stagger {
	margin-top: 0;
}

@media (min-width: 768px) {
	.lt-col-stagger {
		margin-top: 6rem;
	}
}

.lt-service-card {
	background: rgba(250, 247, 242, 0.8);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 2rem;
	padding: 2.5rem;
	border: 1px solid rgba(26, 122, 109, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

@media (min-width: 992px) {
	.lt-service-card {
		padding: 3rem;
	}
}

.lt-service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.lt-service-card:hover .lt-icon-box {
	transform: scale(1.1);
}

.lt-service-card:hover .lt-icon-teal {
	background: var(--lt-teal);
	color: var(--lt-white);
}

.lt-service-card:hover .lt-icon-coral {
	background: var(--lt-coral);
	color: var(--lt-white);
}

.lt-service-card:hover .lt-icon-gold {
	background: var(--lt-gold);
	color: var(--lt-white);
}

.lt-service-card p {
	color: rgba(45, 52, 54, 0.7);
	line-height: 1.7;
	font-size: 1.125rem;
}

/* Corner accent shape */
.lt-card-accent {
	position: absolute;
	top: 0;
	right: 0;
	width: 12rem;
	height: 12rem;
	border-bottom-left-radius: 100%;
	z-index: -1;
	transition: transform 0.7s ease-out;
}

.lt-service-card:hover .lt-card-accent {
	transform: scale(1.25);
}

.lt-accent-teal { background: rgba(26, 122, 109, 0.05); }
.lt-accent-coral { background: rgba(232, 114, 90, 0.05); }
.lt-accent-gold { background: rgba(240, 192, 90, 0.1); }

/* ================================================================
   TIMELINE
   ================================================================ */
.lt-timeline {
	position: relative;
	max-width: 64rem;
	margin-left: auto;
	margin-right: auto;
}

.lt-timeline-line {
	position: absolute;
	left: 2.5rem;
	top: 1rem;
	bottom: 1rem;
	width: 2px;
	background-image: linear-gradient(to bottom, rgba(26, 122, 109, 0.4) 50%, transparent 50%);
	background-size: 2px 20px;
	z-index: -1;
	opacity: 0.6;
}

@media (min-width: 768px) {
	.lt-timeline-line {
		left: 50%;
		transform: translateX(-50%);
	}
}

.lt-timeline-step {
	position: relative;
	display: flex;
	align-items: flex-start;
	margin-bottom: 4rem;
}

@media (min-width: 768px) {
	.lt-timeline-step {
		align-items: center;
		justify-content: space-between;
		margin-bottom: 6rem;
	}
}

.lt-timeline-step:last-child {
	margin-bottom: 0;
}

/* Step card */
.lt-step-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 2rem;
	padding: 2rem;
	border: 1px solid rgba(26, 122, 109, 0.1);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
	position: relative;
	width: 100%;
	margin-left: 5rem;
}

@media (min-width: 768px) {
	.lt-step-card {
		width: 45%;
		margin-left: 0;
	}
}

.lt-timeline-step:hover .lt-step-card {
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}

.lt-step-card p {
	color: rgba(45, 52, 54, 0.7);
	line-height: 1.7;
}

/* Step number watermark */
.lt-step-num {
	position: absolute;
	top: -1.5rem;
	right: 2rem;
	font-family: var(--lt-font-heading);
	font-weight: 700;
	font-size: 3rem;
	color: rgba(26, 122, 109, 0.15);
	user-select: none;
}

@media (min-width: 768px) {
	.lt-step-left {
		text-align: right;
	}
	.lt-step-left .lt-step-num {
		right: auto;
		left: 2rem;
	}
}

/* Timeline node */
.lt-step-node {
	position: absolute;
	left: 2.5rem;
	top: 2rem;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--lt-cream);
	border-width: 4px;
	border-style: solid;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	z-index: 10;
	transform: translateX(-50%);
	transition: all 0.5s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
	.lt-step-node {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		flex-shrink: 0;
		margin: 0 1.5rem;
	}
}

.lt-timeline-step:hover .lt-step-node {
	transform: translateX(-50%) scale(1.25);
}

@media (min-width: 768px) {
	.lt-timeline-step:hover .lt-step-node {
		transform: scale(1.25);
	}
}

.lt-node-gold {
	border-color: var(--lt-gold);
	color: var(--lt-gold);
}
.lt-node-teal {
	border-color: var(--lt-teal);
	color: var(--lt-teal);
}
.lt-node-coral {
	border-color: var(--lt-coral);
	color: var(--lt-coral);
}

.lt-timeline-step:hover .lt-node-gold {
	background: var(--lt-gold);
	color: var(--lt-white);
}
.lt-timeline-step:hover .lt-node-teal {
	background: var(--lt-teal);
	color: var(--lt-white);
}
.lt-timeline-step:hover .lt-node-coral {
	background: var(--lt-coral);
	color: var(--lt-white);
}

/* Step spacer (empty side) */
.lt-step-spacer {
	display: none;
}

@media (min-width: 768px) {
	.lt-step-spacer {
		display: block;
		width: 45%;
	}
}

/* Reversed step (card on right) */
@media (max-width: 767px) {
	.lt-step-reverse {
		flex-direction: row;
	}
}

/* ================================================================
   ECOSYSTEM / DARK SECTION
   ================================================================ */
.lt-ecosystem {
	background-color: var(--lt-dark);
	background-image:
		radial-gradient(circle at top right, rgba(26, 122, 109, 0.2), transparent 50%),
		radial-gradient(circle at bottom left, rgba(232, 114, 90, 0.15), transparent 50%);
	color: var(--lt-white);
	overflow: hidden;
}

.lt-ecosystem .lt-h2 {
	color: var(--lt-white);
}

.lt-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	align-items: stretch;
}

@media (max-width: 991px) {
	.lt-grid-3 {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.lt-eco-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	border-radius: 2rem;
	padding: 2.5rem;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.lt-eco-card:hover {
	transform: translateY(-8px);
}

.lt-eco-featured {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(26, 122, 109, 0.3);
	box-shadow: 0 15px 50px rgba(26, 122, 109, 0.25);
	position: relative;
	z-index: 20;
}

@media (min-width: 992px) {
	.lt-eco-featured {
		transform: translateY(-2rem);
	}
	.lt-eco-featured:hover {
		transform: translateY(-3rem);
	}
}

.lt-eco-badge {
	position: absolute;
	top: -1rem;
	right: 2rem;
	background: var(--lt-teal);
	color: var(--lt-white);
	font-size: 0.625rem;
	font-weight: 700;
	padding: 0.375rem 1rem;
	border-radius: 9999px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	box-shadow: 0 4px 12px rgba(26, 122, 109, 0.3);
}

.lt-eco-icon {
	font-size: 3rem;
	margin-bottom: 2rem;
}

.lt-eco-title {
	font-family: var(--lt-font-heading);
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--lt-white);
	margin-bottom: 1rem;
}

.lt-eco-desc {
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	font-size: 1.125rem;
	flex-grow: 1;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.lt-cta-section {
	overflow: hidden;
}

.lt-cta-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50rem;
	height: 50rem;
	background: rgba(26, 122, 109, 0.1);
	border-radius: 50%;
	filter: blur(120px);
	z-index: -1;
	animation: ltPulse 10s infinite;
}

.lt-cta-inner {
	position: relative;
	z-index: 10;
	max-width: 56rem;
}

.lt-cta-card {
	padding: 3rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	border-radius: 3rem;
}

@media (min-width: 768px) {
	.lt-cta-card {
		padding: 5rem;
	}
}

.lt-cta-card .lt-h1 {
	margin-bottom: 2rem;
}

.lt-cta-shine {
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
}

.lt-cta-desc {
	font-size: 1.25rem;
	color: rgba(45, 52, 54, 0.7);
	margin-bottom: 3rem;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}

.lt-cta-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

@media (min-width: 576px) {
	.lt-cta-buttons {
		flex-direction: row;
		justify-content: center;
		gap: 1.5rem;
	}
}

.lt-cta-buttons .lt-btn {
	width: 100%;
	justify-content: center;
}

@media (min-width: 576px) {
	.lt-cta-buttons .lt-btn {
		width: auto;
	}
}

/* ================================================================
   FOOTER
   ================================================================ */
.lt-footer {
	padding-top: 3rem;
	padding-bottom: 3rem;
	border-top: 1px solid rgba(26, 122, 109, 0.1);
	background: var(--lt-cream);
	position: relative;
	z-index: 10;
}

.lt-footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.lt-footer-inner {
		flex-direction: row;
		justify-content: space-between;
	}
}

.lt-footer .lt-wordmark {
	font-size: 1.25rem;
}

.lt-footer-info {
	color: rgba(45, 52, 54, 0.6);
	font-size: 0.875rem;
	font-weight: 500;
}

.lt-footer-link {
	color: rgba(45, 52, 54, 0.8);
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.3s ease;
}

.lt-footer-link:hover {
	color: var(--lt-teal);
}

.lt-footer-link:hover iconify-icon {
	transform: translate(2px, -2px);
}

.lt-footer-link iconify-icon {
	transition: transform 0.3s ease;
}

/* ================================================================
   GRAVITY FORMS
   ================================================================ */
.gform_wrapper .gfield_label {
	font-weight: 600;
	color: var(--lt-charcoal);
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper textarea,
.gform_wrapper select {
	border-radius: 10px;
	border: 2px solid #e0e0e0;
	padding: 12px 16px;
	transition: border-color 0.2s ease;
}

.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
	border-color: var(--lt-teal);
	outline: none;
	box-shadow: 0 0 0 3px rgba(26, 122, 109, 0.1);
}

.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
	background: var(--lt-coral) !important;
	color: var(--lt-white) !important;
	padding: 0.75rem 2rem !important;
	font-size: 1rem !important;
	border-radius: 9999px !important;
	font-weight: 600 !important;
	letter-spacing: 0.02em;
	border: none !important;
	cursor: pointer;
	transition: all 0.3s ease !important;
	font-family: var(--lt-font-body);
}

.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"]:hover {
	background: rgba(232, 114, 90, 0.9) !important;
	box-shadow: 0 12px 32px rgba(232, 114, 90, 0.3) !important;
	transform: translateY(-2px);
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.lt-page-hero {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

@media (min-width: 992px) {
	.lt-page-hero {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
}

/* ================================================================
   SERVICE DETAIL SECTIONS
   ================================================================ */
.lt-detail-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 992px) {
	.lt-detail-grid {
		grid-template-columns: 3fr 2fr;
		gap: 5rem;
	}
}

.lt-detail-reverse .lt-detail-grid {
	direction: ltr;
}

@media (min-width: 992px) {
	.lt-detail-reverse .lt-detail-grid {
		direction: rtl;
	}
	.lt-detail-reverse .lt-detail-grid > * {
		direction: ltr;
	}
}

.lt-detail-desc {
	font-size: 1.125rem;
	color: rgba(45, 52, 54, 0.7);
	line-height: 1.8;
	margin-bottom: 2rem;
}

.lt-detail-text .lt-icon-box {
	margin-bottom: 1.5rem;
}

.lt-feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.lt-feature-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.0625rem;
	color: var(--lt-charcoal);
	font-weight: 500;
}

.lt-feature-list iconify-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.lt-detail-card {
	padding: 3rem;
	text-align: center;
	max-width: 320px;
	margin: 0 auto;
}

.lt-detail-card-stat {
	font-family: var(--lt-font-heading);
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.lt-detail-card-label {
	font-weight: 700;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(45, 52, 54, 0.5);
	margin-bottom: 1.5rem;
}

.lt-detail-card-desc {
	color: rgba(45, 52, 54, 0.6);
	line-height: 1.6;
	font-size: 0.9375rem;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.lt-about-content {
	max-width: 48rem;
	margin: 0 auto;
}

.lt-about-block {
	margin-bottom: 4rem;
}

.lt-stats-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

@media (max-width: 575px) {
	.lt-stats-row {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.lt-stat-card {
	text-align: center;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 2rem;
	padding: 2rem;
	border: 1px solid rgba(26, 122, 109, 0.1);
}

.lt-stat-number {
	font-family: var(--lt-font-heading);
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.lt-stat-label {
	font-weight: 600;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(45, 52, 54, 0.5);
}

/* ================================================================
   PORTFOLIO
   ================================================================ */
.lt-portfolio-card {
	border-radius: 2rem;
	overflow: hidden;
	background: rgba(250, 247, 242, 0.8);
	border: 1px solid rgba(26, 122, 109, 0.1);
	transition: all 0.3s ease;
}

.lt-portfolio-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.lt-pf-image {
	height: 14rem;
	position: relative;
	overflow: hidden;
}

.lt-pf-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
	background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.lt-pf-tag {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.375rem 1rem;
	border-radius: 9999px;
}

.lt-pf-content {
	padding: 2rem;
}

.lt-pf-content p {
	color: rgba(45, 52, 54, 0.7);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.lt-pf-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.lt-pf-tech {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	background: rgba(26, 122, 109, 0.08);
	color: var(--lt-teal);
}

.lt-pf-status {
	font-size: 0.875rem;
	font-weight: 600;
	color: rgba(45, 52, 54, 0.4);
	font-style: italic;
}

.lt-pf-cta-card {
	background: transparent;
	border: 2px dashed rgba(26, 122, 109, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 20rem;
}

.lt-pf-cta-card:hover {
	border-color: var(--lt-teal);
	background: rgba(26, 122, 109, 0.03);
}

.lt-pf-cta-inner {
	text-align: center;
	padding: 2.5rem;
}

.lt-pf-cta-inner .lt-icon-box {
	margin-left: auto;
	margin-right: auto;
}

.lt-pf-cta-inner p {
	color: rgba(45, 52, 54, 0.6);
	margin-bottom: 2rem;
	max-width: 18rem;
}
