*, ::before, ::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
}

/* Hide default WordPress theme header/footer on Two Echo page */
.page-id-178 .site-header,
.page-id-178 .site-footer,
.page-id-178 .entry-header,
.page-id-178 .entry-title,
.page-id-178 header.site-header,
.page-id-178 footer.site-footer {
	display: none !important;
}

.page-id-178 .site-main,
.page-id-178 .entry-content,
.page-id-178 .wp-block-post-content {
	padding: 0 !important;
	margin: 0 !important;
	max-width: 100% !important;
}

.page-id-178 body,
.page-id-178 .site {
	background: #0D0D0D !important;
}

.page-id-178 body::before {
	content: '';
	position: fixed;
	background-image: ;
	pointer-events: none;
	z-index: 0;
	opacity: .4;
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 48px;
	border-bottom: 1px solid var(--border);
	background: rgba(13,13,13,0.85);
}

.nav-logo {
	font-family: 'Barlow', sans-serif;
	font-size: 20px;
	letter-spacing: 1px;
}

.nav-logo span.thin {
	font-weight: 100;
	color: #fff;
}

.nav-logo span.bold {
	font-weight: 900;
	color: var(--blue);
}

nav a.cta-nav {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0.2);
	padding: 10px 24px;
	transition: all .3s ease;
}

nav a.cta-nav:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 140px 48px 80px;
	overflow: hidden;
	background: #0D0D0D;
	color: #fff;
}

.hero-watermark {
	position: absolute;
	right: -40px;
	top: 50%;
	transform: translateY(-50%);
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(180px, 22vw, 320px);
	color: rgba(43,127,255,0.04);
	letter-spacing: -4px;
	pointer-events: none;
	white-space: nowrap;
}

.hero-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	right: 10%;
	top: 50%;
	transform: translateY(-50%);
	background: radial-gradient(circle, rgba(43,127,255,0.12) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: .6;
		transform: translateY(-50%) scale(1);
	}
	
	50% {
		opacity: 1;
		transform: translateY(-50%) scale(1.1);
	}
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
}

.hero-eyebrow {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 28px;
	opacity: 0;
	animation: fadeUp .8s ease .2s forwards;
}

.hero-headline {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(52px, 7vw, 96px);
	line-height: .95;
	letter-spacing: -1px;
	text-transform: uppercase;
	margin-bottom: 32px;
	color: #fff;
	opacity: 0;
	animation: fadeUp .8s ease .4s forwards;
}

.hero-headline .accent {
	color: var(--blue);
}

.hero-sub {
	font-size: clamp(16px, 1.8vw, 20px);
	font-weight: 300;
	line-height: 1.6;
	color: rgba(255,255,255,0.65);
	max-width: 580px;
	margin-bottom: 48px;
	opacity: 0;
	animation: fadeUp .8s ease .6s forwards;
}

.hero-cta {
	display: inline-block;
	background: var(--blue);
	color: #fff !important;
	text-decoration: none !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 18px 48px;
	transition: all .3s ease;
	opacity: 0;
	animation: fadeUp .8s ease .8s forwards;
}

.hero-cta:hover {
	background: #1a6fe0;
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(43,127,255,0.3);
}

.hero-stats {
	display: flex;
	gap: 48px;
	margin-top: 72px;
	padding-top: 48px;
	border-top: 1px solid var(--border);
	opacity: 0;
	animation: fadeUp .8s ease 1s forwards;
}

.stat-num {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 42px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
}

.stat-num span {
	color: var(--blue);
}

.stat-label {
	font-size: 11px;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--grey);
	margin-top: 6px;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.marquee-strip {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	overflow: hidden;
	padding: 16px 0;
	background: var(--light-grey);
}

.marquee-track {
	display: flex;
	animation: marquee 20s linear infinite;
	white-space: nowrap;
}

.marquee-item {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--grey);
	padding: 0 40px;
}

.marquee-item span {
	color: var(--blue);
	margin-right: 40px;
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}
	
	to {
		transform: translateX(-50%);
	}
}

section {
	position: relative;
	z-index: 1;
	padding: 100px 48px;
	background: #0D0D0D;
	color: #fff;
}

.section-label {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 20px;
}

.section-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(36px, 5vw, 64px);
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 16px;
	color: #fff;
}

.about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	border-top: 1px solid var(--border);
}

.about-text p {
	font-size: 17px;
	line-height: 1.8;
	color: rgba(255,255,255,0.65);
	margin-bottom: 20px;
	font-family: 'Barlow', sans-serif;
	font-weight: 300;
}

.about-text p strong {
	color: #fff;
	font-weight: 700;
}

.about-right {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about-pill {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 24px;
	border: 1px solid var(--border);
	background: var(--light-grey);
	transition: border-color .3s;
}

.about-pill:hover {
	border-color: var(--blue);
}

.about-pill-icon {
	width: 36px;
	height: 36px;
	background: rgba(43,127,255,0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.about-pill-icon svg {
	width: 18px;
	height: 18px;
	stroke: var(--blue);
	fill: none;
}

.about-pill-text {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255,255,255,0.8);
}

.services {
	border-top: 1px solid var(--border);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--border);
	margin-top: 56px;
	border: 1px solid var(--border);
}

.service-card {
	background: #0D0D0D;
	padding: 40px 32px;
	transition: background .3s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--blue);
	transform: scaleX(0);
	transition: transform .3s ease;
}

.service-card:hover {
	background: var(--light-grey);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-num {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 48px;
	font-weight: 900;
	color: rgba(43,127,255,0.15);
	line-height: 1;
	margin-bottom: 20px;
}

.service-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
	color: #fff;
}

.service-desc {
	font-size: 13px;
	line-height: 1.7;
	color: rgba(255,255,255,0.5);
}

.how {
	border-top: 1px solid var(--border);
	background: var(--light-grey) !important;
}

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	margin-top: 56px;
}

.step {
	position: relative;
}

.step-num {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 80px;
	font-weight: 900;
	color: rgba(43,127,255,0.1);
	line-height: 1;
}

.step-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 12px;
	margin-top: -16px;
	color: #fff;
}

.step-desc {
	font-size: 14px;
	line-height: 1.8;
	color: rgba(255,255,255,0.55);
}

.contact {
	border-top: 1px solid var(--border);
}

.contact-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.contact-left p {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255,255,255,0.55);
	margin-top: 20px;
	margin-bottom: 40px;
	font-family: 'Barlow', sans-serif;
}

.contact-detail {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	font-family: 'Barlow', sans-serif;
}

.contact-detail svg {
	width: 16px;
	height: 16px;
	stroke: var(--blue);
	fill: none;
	flex-shrink: 0;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--grey);
	font-family: 'Barlow', sans-serif;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
	background: var(--light-grey) !important;
	border: 1px solid var(--border) !important;
	color: #fff !important;
	font-family: 'Barlow', sans-serif;
	font-size: 15px;
	font-weight: 300;
	padding: 14px 18px;
	outline: none;
	transition: border-color .3s;
	width: 100%;
	-webkit-appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	border-color: var(--blue) !important;
}

.contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-form select option {
	background: #1a1a1a;
}

.form-submit {
	background: var(--blue) !important;
	color: #fff !important;
	border: none !important;
	font-family: 'Barlow', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 18px 40px;
	cursor: pointer;
	transition: all .3s ease;
	margin-top: 8px;
	align-self: flex-start;
}

.form-submit:hover {
	background: #1a6fe0 !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(43,127,255,0.3);
}

footer.two-echo-footer {
	border-top: 1px solid var(--border);
	padding: 32px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #0D0D0D;
	color: #fff;
}

.footer-logo {
	font-family: 'Barlow', sans-serif;
	font-size: 16px;
}

.footer-logo span.thin {
	font-weight: 100;
	color: #fff;
}

.footer-logo span.bold {
	font-weight: 900;
	color: var(--blue);
}

footer.two-echo-footer p {
	font-size: 12px;
	color: var(--grey);
	letter-spacing: 1px;
}

@media (max-width: 900px) {
	nav {
		padding: 20px 24px;
	}
	
	.hero {
		padding: 120px 24px 60px;
	}
	
	section {
		padding: 72px 24px;
	}
	
	.about {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.services-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.steps {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.contact-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.hero-stats {
		gap: 32px;
		flex-wrap: wrap;
	}
	
	footer.two-echo-footer {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}
}

@media (max-width: 600px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
	
	.hero-headline {
		font-size: 48px;
	}
}

/* ===== FULL WIDTH & THEME OVERRIDE ===== */
/* Hide WP theme header on Two Echo page */
.page-id-178 header.site-header,
.page-id-178 .site-header,
.page-id-178 .wp-block-template-part[data-slug="header"],
.page-id-178 #masthead { display: none !important; }

/* Hide theme footer on Two Echo page */
.page-id-178 footer.site-footer,
.page-id-178 .site-footer,
.page-id-178 .wp-block-template-part[data-slug="footer"],
.page-id-178 #colophon { display: none !important; }

/* Make content full width */
.page-id-178 .site-content,
.page-id-178 #content,
.page-id-178 main#main,
.page-id-178 .wp-block-post-content,
.page-id-178 .entry-content { 
  max-width: 100% !important; 
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.page-id-178 #page,
.page-id-178 .site { max-width: 100% !important; width: 100% !important; }

/* Remove article container constraints */
.page-id-178 article.page,
.page-id-178 .hentry { 
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Make body black */
body.page-id-178 { background: #0D0D0D !important; }