/**
 * SEOptimize Theme - Custom Design Styles
 *
 * @package SEOptimize
 */

:root {
	--brand-green: #00e65b;
	--brand-green-hover: #00c94f;
	--dark-bg: #000000;
	--card-bg: #ffffff;
	--text-gray: #a1a1a1;
	--border-color: #1a1a1a;
	--whatsapp-green: #25d366;
	--whatsapp-green-hover: #20bd5a;
}

/* WhatsApp floating button (bottom-right, all pages) */
.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	background-color: var(--whatsapp-green);
	color: #fff;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
	z-index: 9999;
	transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
	text-decoration: none;
}
.whatsapp-float:hover {
	background-color: var(--whatsapp-green-hover);
	color: #fff;
	transform: scale(1.08);
	box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}
.whatsapp-float i {
	font-size: 1.75rem;
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	background-color: var(--dark-bg);
	color: #ffffff;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

/* --- Scroll Animation Styles --- */
.reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Utilities */
.text-green { color: var(--brand-green) !important; }
.bg-green { background-color: var(--brand-green) !important; }
.fw-800 { font-weight: 800; }
.section-padding { padding: 100px 0; }

/* --- Trusted Logos Carousel --- */
.trusted-logos-section { padding: 60px 0; }
.trusted-logos-heading { font-size: 1.75rem; }
.trusted-logos-carousel-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: 100%;
}
.trusted-logos-arrow {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	transition: background 0.2s, border-color 0.2s;
}
.trusted-logos-arrow:hover:not(:disabled) {
	background: #2a2a2a;
	border-color: var(--brand-green);
	color: var(--brand-green);
}
.trusted-logos-arrow:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
.trusted-logos-track-container {
	flex: 1;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
	container-type: inline-size;
	display: flex;
	flex-wrap: nowrap;
}
.trusted-logos-track-container::-webkit-scrollbar { display: none; }
.trusted-logos-track {
	display: flex;
	gap: 24px;
	align-items: center;
	flex: 0 0 auto;
}
.trusted-logo-item {
	flex: 0 0 160px;
	width: 160px;
	min-width: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.trusted-logo-link,
.trusted-logo-link.trusted-logo-link-no-url {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.7);
	transition: opacity 0.2s;
	width: 100%;
	height: 50px;
}
.trusted-logo-link:hover { opacity: 0.9; color: #fff; }
.trusted-logo-link img,
.trusted-logo-link-no-url img {
	max-height: 50px;
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
	transition: opacity 0.2s;
}
.trusted-logo-link:hover img,
.trusted-logo-link-no-url:hover img { opacity: 0.85; }
.trusted-logo-text { font-size: 0.95rem; font-weight: 600; white-space: nowrap; color: rgba(255, 255, 255, 0.7); }

/* Buttons */
.btn-brand {
	background-color: var(--brand-green) !important;
	color: #000 !important;
	font-weight: 800;
	border-radius: 50px;
	padding: 12px 28px;
	border: none;
	transition: all 0.3s ease;
	text-transform: none;
	font-size: 15px;
}
.btn-brand:hover {
	background-color: #000 !important;
	color: #fff !important;
	transform: translateY(-2px);
}
.btn-outline-white {
	background: #fff;
	color: #000;
	font-weight: 700;
	border-radius: 50px;
	padding: 10px 25px;
	border: none;
}
.btn-outline-light {
	background: transparent;
	color: #fff;
	font-weight: 700;
	border-radius: 50px;
	padding: 10px 25px;
	border: 2px solid #fff;
	transition: all 0.3s ease;
}
.btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: #fff;
}

/* --- Header & Sticky Background --- */
.navbar {
	padding: 20px 0;
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: background-color 0.3s ease;
}
.navbar.navbar-scrolled {
	background-color: #000000 !important;
	padding: 15px 0;
}
.navbar-brand {
	font-weight: 800;
	font-size: 24px;
	color: #fff !important;
}
.navbar-brand .navbar-logo-img {
	max-height: 40px;
	width: auto;
	height: auto;
}
/* Mobile sticky CTA button (between logo and hamburger) */
.navbar-mobile-cta {
	font-size: 0.82rem;
	padding: 8px 16px !important;
	border-radius: 50px !important;
	font-weight: 800;
	margin-left: auto;
	margin-right: 10px;
	white-space: nowrap;
}
.nav-link {
	color: #fff !important;
	font-weight: 600;
	font-size: 15px;
	margin: 0 15px;
}

/* --- Dropdown Hover & Fade Animation --- */
@media (min-width: 992px) {
	.nav-item.dropdown:hover .dropdown-menu {
		display: block;
		margin-top: 0;
		animation: dropdownFade 0.3s ease forwards;
	}
}

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

.dropdown-menu {
	background-color: #111;
	border: 1px solid var(--border-color);
	padding: 10px;
}
.dropdown-item {
	color: #fff;
	font-weight: 500;
	padding: 10px 20px;
}
.dropdown-item:hover {
	background-color: var(--brand-green);
	color: #000;
}

/* --- Hero Section --- */
.hero-section {
	position: relative;
	/* Gradient extends behind navbar for seamless blend; flows into success section */
	background: linear-gradient(to bottom, #1a1a1a 0%, #1e231f 20%, #18251d 45%, #122118 70%, #0d1c14 88%, #0a1f12 100%);
	text-align: center;
	margin-top: -88px;
	padding-top: 208px;
	padding-bottom: 80px;
	overflow: hidden;
}
.hero-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
}
.hero-section h1 {
	font-size: 50px;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 20px;
	animation: heroSlideUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

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

.hero-section h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 25px;
}
.hero-section p {
	color: var(--text-gray);
	max-width: 800px;
	margin: 0 auto 40px;
	font-size: 18px;
}
.hero-section .container { position: relative; z-index: 1; }
.avatar-group img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 2px solid var(--brand-green);
	margin-left: -15px;
}
.avatar-group img:first-child { margin-left: 0; }

/* --- Success Section --- */
.success-section {
	/* Top (#0a1f12) matches hero bottom; bottom (#000) blends into body */
	background: linear-gradient(to bottom, #0a1f12 0%, #0a1f12 5%, #0d2818 25%, #0f2d1a 45%, #0a1f12 65%, #061208 85%, #000000 100%);
	color: #fff;
}
.success-section h2,
.success-section h5 { color: #fff; }
.success-section .text-secondary { color: rgba(255, 255, 255, 0.85) !important; }
.success-img-container {
	background: rgba(0, 0, 0, 0.35);
	padding: 40px;
	border-radius: 20px;
}
.success-list-item {
	margin-bottom: 30px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}
.success-icon {
	width: 40px;
	height: 40px;
	background: var(--brand-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	flex-shrink: 0;
}

/* --- Outdated Marketing --- */
.outdated-section {
	background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1600&q=80');
	background-size: cover;
	background-position: center;
	text-align: center;
	padding: 120px 0;
	color: #fff;
}

/* --- Qualified Leads Cards --- */
.leads-card {
	background: #fff;
	border-radius: 30px;
	padding: 50px 30px;
	text-align: center;
	color: #000;
	height: 100%;
	transition: all 0.3s ease;
	cursor: pointer;
}
.leads-card:hover {
	background-color: var(--brand-green) !important;
	transform: translateY(-10px);
}
.leads-card.js-free-consultation-card { cursor: pointer; }
.leads-card.highlight { background: #dcdcdc; }
.leads-card .icon-box {
	width: 80px;
	height: 80px;
	background: var(--brand-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 32px;
	transition: background-color 0.3s ease;
}
.leads-card:hover .icon-box { background: #000; color: #fff; }

/* --- Partner & Expectations --- */
.partner-card-mockup { background: #000; border: 1px solid #333; border-radius: 20px; padding: 30px; }

/* Partner testimonial carousel (Why Partner section) */
.partner-testimonial-carousel { position: relative; min-height: 280px; }
.partner-testimonial-card {
	display: none;
	background: #fff;
	color: #000;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #ddd;
}
.partner-testimonial-card.active { display: block; }
.partner-testimonial-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 24px 20px;
	background: #000;
	color: #fff;
}
.partner-testimonial-avatar {
	width: 48px;
	height: 48px;
	object-fit: cover;
	flex-shrink: 0;
}
.partner-testimonial-avatar-placeholder { background: #333 !important; }
.partner-testimonial-nav { display: flex; gap: 8px; flex-shrink: 0; }
.partner-carousel-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.5);
	background: transparent;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, border-color 0.2s;
}
.partner-carousel-btn:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.partner-testimonial-body { padding: 24px; }
.partner-testimonial-stars { font-size: 1.1rem; letter-spacing: 1px; }
.partner-testimonial-text { font-size: 0.95rem; line-height: 1.6; color: #1a1a1a; }
.partner-testimonial-read-more { font-size: 0.9rem; text-decoration: underline; }
.partner-testimonial-read-more:hover { text-decoration: underline; }
.partner-testimonial-empty {
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 20px;
	padding: 40px;
}
.expect-section .container { max-width: 920px; }
.expect-card { background: #1C1C1C; border: 1px solid #2a2a2a; border-radius: 25px; padding: 40px; height: 100%; transition: border-color 0.3s ease; display: flex; flex-direction: column; }
.expect-card:hover { border-color: var(--brand-green); }
.expect-card .expect-card-body { flex: 1; }
.expect-card .btn-brand { width: 75%; border-radius: 50px; padding: 14px 24px; font-size: 15px; font-weight: 800; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; align-self: center; }

/* --- Booking & Review --- */
.booking-card { background: #fff; color: #1a1a1a; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.25); max-width: 400px; margin: 0 auto; }
.booking-header { padding: 28px 24px 20px; border-bottom: 1px solid #eee; }
.booking-header .booking-title { font-size: 22px; font-weight: 800; color: #1a1a1a; text-align: center; margin-bottom: 16px; }
.booking-header .booking-meta { color: #666; font-size: 14px; text-align: left; padding-left: 8px; }
.booking-header .booking-meta .meta-line { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.booking-header .booking-meta .meta-line:last-child { margin-bottom: 0; }
.booking-header .booking-meta i { margin-top: 2px; flex-shrink: 0; }
.calendar-body { padding: 24px 24px 20px; }
.calendar-body .select-day { font-size: 16px; font-weight: 800; color: #1a1a1a; text-align: center; margin-bottom: 18px; }
.calendar-month-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 18px; }
.calendar-month-row .month-text { font-weight: 700; color: #1a1a1a; font-size: 15px; min-width: 130px; text-align: center; }
.calendar-arrow { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; border: 2px solid #2563eb; background: #eff6ff; color: #2563eb; }
.calendar-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 12px; text-align: center; font-size: 12px; font-weight: 600; color: #1a1a1a; text-transform: uppercase; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; text-align: center; }
.calendar-day { padding: 10px 0; font-size: 14px; color: #1a1a1a; border-radius: 50%; cursor: pointer; position: relative; min-height: 40px; }
.calendar-day.selected { background: #dbeafe; color: #1d4ed8; font-weight: 700; border: 2px solid #93c5fd; }
.calendar-day .day-dot { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: #374151; }
.booking-timezone { padding: 18px 24px 16px; border-top: 1px solid #eee; }
.booking-timezone label { display: block; font-size: 14px; font-weight: 600; color: #1a1a1a; margin-bottom: 10px; }
.booking-timezone .timezone-select { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid #ddd; border-radius: 8px; background: #fff; color: #1a1a1a; font-size: 14px; cursor: pointer; width: 100%; }
.booking-timezone .timezone-select i.bi-globe { color: #666; }
.booking-timezone .timezone-select .chevron { margin-left: auto; color: #666; font-size: 12px; }
.booking-footer { padding: 14px 24px 20px; text-align: center; }
.booking-footer a { font-size: 13px; color: #2563eb; text-decoration: underline; }
.masonry-wrapper { column-count: 3; column-gap: 25px; }
.review-card { break-inside: avoid; background: #fff; color: #000; border-radius: 20px; padding: 30px; margin-bottom: 25px; border-bottom: 8px solid var(--brand-green); }
.review-card .stars { color: #ffc107; margin-bottom: 15px; }
.review-video { border-radius: 20px; overflow: hidden; position: relative; margin-bottom: 25px; border: 4px solid var(--brand-green); }

/* --- Capacity Banner --- */
.capacity-banner {
	background: radial-gradient(circle at top right, #004d1e, #000 60%);
	border: 1px solid var(--brand-green);
	border-radius: 40px;
	padding: 80px 60px;
	margin-bottom: 100px;
	position: relative;
	color: #fff;
	text-align: left;
}
footer .capacity-banner { margin-bottom: 0; }
.capacity-banner .text-green { color: var(--brand-green) !important; }

/* --- SEO Service Page --- */
.seo-service-hero { background: #000; }
.seo-service-why-text { color: rgba(255, 255, 255, 0.9); line-height: 1.7; }
.why-choose-section .why-choose-inner { max-width: 700px; margin-left: auto; margin-right: auto; }
.why-choose-section .why-choose-text { color: rgba(255, 255, 255, 0.9); line-height: 1.7; }
.seo-feature-card {
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 16px;
	padding: 28px;
	transition: border-color 0.2s;
}
.seo-feature-card:hover { border-color: var(--brand-green); }
.seo-feature-card h4 { color: var(--brand-green) !important; }
.seo-feature-card .text-secondary,
.seo-feature-card .small { color: #fff !important; }
.seo-feature-icon {
	width: 56px;
	height: 56px;
	background: var(--brand-green);
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: #fff;
	font-size: 1.5rem;
}
.seo-process-steps {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 16px;
}
.seo-process-step {
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 16px;
	padding: 28px;
	flex: 1 1 220px;
	max-width: 280px;
}
.seo-process-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--brand-green);
	line-height: 1;
	margin-bottom: 12px;
}
.seo-process-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}
@media (max-width: 991px) {
	.seo-process-arrow { transform: rotate(90deg); width: 100%; }
}
.seo-service-card {
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 16px;
	padding: 28px;
	transition: border-color 0.2s;
}
.seo-service-card:hover { border-color: var(--brand-green); }
.seo-service-card-icon {
	width: 48px;
	height: 48px;
	background: var(--brand-green);
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	color: #000;
	font-size: 1.25rem;
}
.seo-faq-accordion { }
.seo-faq-item {
	border-bottom: 1px solid #333;
}
.seo-faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	text-align: left;
	padding: 20px 0;
	cursor: pointer;
	transition: color 0.2s;
}
.seo-faq-question:hover { color: var(--brand-green); }
.seo-faq-question[aria-expanded="true"] .seo-faq-icon { transform: rotate(45deg); }
.seo-faq-icon {
	flex-shrink: 0;
	margin-left: 16px;
	font-size: 1.25rem;
	color: var(--brand-green);
	transition: transform 0.2s;
}
.seo-faq-answer {
	padding: 0 0 20px 0;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	font-size: 0.95rem;
}

/* --- Service Single (design-aligned) --- */
.service-single-hero {
	background: #000;
	background-image: linear-gradient(135deg, rgba(0, 230, 91, 0.06) 0%, transparent 50%);
	position: relative;
	overflow: hidden;
}
.service-single-headline { font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2; }
.service-single-subtitle { color: rgba(255, 255, 255, 0.85); line-height: 1.7; }
.service-single-subtitle strong { color: #fff; font-weight: 700; }
.service-single-bullet-icon {
	font-size: 1.25rem;
	color: var(--brand-green);
	flex-shrink: 0;
}
.service-single-cta { font-size: 1.15rem; }
.seo-feature-card-hero {
	border: 1px solid var(--brand-green);
}
.seo-feature-card-hero .seo-feature-icon { background: transparent; color: var(--brand-green); border: 1px solid var(--brand-green); }
.seo-service-process-light {
	background: #f5f5f5;
	background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
	background-size: 20px 20px;
}
.seo-service-process-light h2 { color: #000 !important; }
.seo-service-process-light .seo-process-step-dark {
	background: #1a1a1a;
	border: 1px solid #333;
	color: #fff;
}
.text-white-80 { color: rgba(255, 255, 255, 0.9); }
.seo-faq-light {
	background: #f5f5f5;
	background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
	background-size: 20px 20px;
}
.seo-faq-light .seo-faq-item { border-bottom-color: #ddd; }
.seo-faq-question-light { color: #1a1a1a !important; }
.seo-faq-question-light:hover { color: var(--brand-green) !important; }
.seo-faq-answer-light { color: #444; }
.btn-service-outline {
	background: transparent;
	color: #fff;
	font-weight: 700;
	border: 2px solid var(--brand-green);
	border-radius: 50px;
	padding: 12px 28px;
	transition: all 0.3s ease;
}
.btn-service-outline:hover {
	background: rgba(0, 230, 91, 0.15);
	color: var(--brand-green);
	border-color: var(--brand-green);
}
.service-single-dashboard {
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 24px;
	padding: 32px;
	position: relative;
}
.service-dashboard-keywords {
	position: absolute;
	top: 16px;
	right: 16px;
	background: #0d0d0d;
	border: 1px solid var(--brand-green);
	border-radius: 12px;
	padding: 8px 14px;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.9);
	display: inline-flex;
	align-items: center;
}
.service-dashboard-revenue { margin-top: 16px; }
.service-dashboard-revenue-value { font-size: 2.25rem; line-height: 1.2; }
.service-dashboard-bars {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	height: 60px;
}
.service-dashboard-bar {
	flex: 1;
	background: var(--brand-green);
	border-radius: 4px 4px 0 0;
	min-width: 20px;
	transition: height 0.3s ease;
}
.service-dashboard-row {
	display: flex;
	gap: 24px;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid #333;
}
.service-dashboard-metric {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}
.service-dashboard-position {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: #0d0d0d;
	border: 1px solid var(--brand-green);
	border-radius: 12px;
	padding: 8px 14px;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.9);
	display: inline-flex;
	align-items: center;
}
.service-dashboard-position .bi-bullseye { color: #e74c3c; }
.service-single-content { color: rgba(255, 255, 255, 0.9); line-height: 1.8; }
.service-single-content a { color: var(--brand-green); }
@media (max-width: 991px) {
	.service-dashboard-keywords { position: static; margin-bottom: 16px; display: inline-flex; }
	.service-dashboard-position { position: static; margin-top: 24px; display: inline-flex; }
}

/* --- Footer --- */
footer { padding: 80px 0 40px; border-top: 1px solid var(--border-color); background: #000; }
.footer-left-section .footer-logo { font-size: 28px; font-weight: 800; }
.footer-left-section .footer-logo a { color: #fff; text-decoration: none; }
.footer-left-section .footer-logo a:hover { color: #fff; }
.footer-logo .footer-logo-img { max-height: 50px; width: auto; }
.footer-left-section .footer-tagline { color: rgba(255, 255, 255, 0.9); line-height: 1.6; margin-bottom: 0; }
.footer-left-section .footer-email-link { color: rgba(255, 255, 255, 0.9); text-decoration: none; }
.footer-left-section .footer-email-link:hover { color: #fff; }
.footer-heading { color: var(--brand-green); font-weight: 800; margin-bottom: 25px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a.footer-link { color: var(--text-gray); text-decoration: none; transition: color 0.2s; }
.footer-links a.footer-link:hover { color: var(--brand-green); }

/* --- Contact Page --- */
.contact-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 120px 0 80px;
	text-align: center;
}
.contact-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
}
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero-title {
	font-size: 48px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 15px;
}
.contact-breadcrumb { background: transparent; }
.contact-breadcrumb .breadcrumb-item a { color: rgba(255, 255, 255, 0.9); text-decoration: none; }
.contact-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.contact-breadcrumb .breadcrumb-item.active { color: rgba(255, 255, 255, 0.7); }
.contact-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.5); }
.contact-make-google-section .text-secondary { color: rgba(255, 255, 255, 0.85) !important; }
.contact-booking-embed {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.contact-booking-embed iframe { display: block; }
.booking-body-placeholder { border-top: 1px solid #eee; }
.local-seo-banner {
	background: #39FF14;
	background-image:
		linear-gradient(165deg, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
		linear-gradient(180deg, rgba(120, 255, 80, 0.9) 0%, #39FF14 15%, #2ee64d 50%, #39FF14 85%, rgba(120, 255, 80, 0.9) 100%);
	color: #000;
	border-radius: 24px;
	padding: 60px 40px;
}
.local-seo-banner h2 { color: #000; font-size: 28px; font-weight: 800; }
.local-seo-banner .local-seo-desc,
.local-seo-banner .local-seo-instruction { color: #000; font-size: 16px; line-height: 1.6; }
.local-seo-form { max-width: 580px; margin: 0 auto; }
.local-seo-form-inner {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}
.local-seo-form .local-seo-input {
	flex: 1;
	min-width: 200px;
	background: transparent;
	border: none;
	border-bottom: 2px solid #000;
	border-radius: 0;
	padding: 14px 0 12px;
	font-size: 16px;
	color: #000;
}
.local-seo-form .local-seo-input::placeholder { color: #000; opacity: 0.85; }
.local-seo-form .local-seo-input:focus {
	outline: none;
	box-shadow: none;
	border-bottom-color: #000;
}
.local-seo-form .local-seo-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
}
.local-seo-form .local-seo-btn:hover { background: #1a1a1a; color: #fff; }
.local-seo-form .local-seo-btn i { font-size: 18px; }

/* --- About Page --- */
.about-hero {
	position: relative;
	margin-top: -88px;
	padding-top: 208px;
	padding-bottom: 100px;
	overflow: hidden;
}
.about-hero-gradient {
	background: linear-gradient(to bottom, #1a1a1a 0%, #1e231f 20%, #18251d 45%, #122118 70%, #0d1c14 88%, #0a1f12 100%);
}
.about-hero-with-bg {
	background-color: #0a0a0a;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.about-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
}
.about-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, transparent 50%);
	pointer-events: none;
}
.about-hero-with-bg .about-hero-overlay {
	background: rgba(0, 0, 0, 0.5);
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero-badge {
	display: inline-flex;
	align-items: center;
	background: var(--brand-green);
	color: #000;
	font-weight: 700;
	font-size: 14px;
	padding: 8px 18px;
	border-radius: 50px;
	margin-bottom: 24px;
}
.about-hero-title {
	font-size: 48px;
	line-height: 1.2;
	color: #fff;
}
.about-hero-desc {
	max-width: 540px;
	font-size: 17px;
	line-height: 1.7;
}
.about-hero-image-wrap {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.about-hero-image-wrap img { display: block; width: 100%; height: auto; }
.about-founded-section { position: relative; padding-bottom: 40px !important; }
.about-founded-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
	pointer-events: none;
}
.about-founded-inner { position: relative; z-index: 1; max-width: 85%; }
.about-founded-title { color: #fff !important; }
.about-founded-desc { color: #fff !important; line-height: 1.8; }
.about-founded-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
	border: 3px solid var(--brand-green);
}
.about-founded-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-philosophy-section { position: relative; padding-top: 40px !important; }
.about-philosophy-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
	pointer-events: none;
}
.about-philosophy-section .container { position: relative; z-index: 1; }
.about-philosophy-card {
	background: rgba(28, 28, 28, 0.8);
	border: 1px solid var(--brand-green);
	border-radius: 24px;
	padding: 40px 32px;
	height: 100%;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.about-philosophy-card:hover {
	border-color: var(--brand-green);
	box-shadow: 0 0 20px rgba(0, 230, 91, 0.15);
}
.about-philosophy-card h3 { font-size: 1.35rem; }
.about-philosophy-card-title { color: var(--brand-green) !important; }
.about-philosophy-card-desc { color: #fff !important; line-height: 1.7; }

/* --- Resources Page --- */
.resources-hero { padding-top: 60px; padding-bottom: 60px; }
.resources-breadcrumb { background: transparent; }
.resources-breadcrumb .breadcrumb-item a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.resources-breadcrumb .breadcrumb-item a:hover { color: var(--brand-green); }
.resources-breadcrumb .breadcrumb-item.active { color: rgba(255, 255, 255, 0.6); }
.resources-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.4); }
.resource-card {
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.3s ease;
}
.resource-card:hover { border-color: var(--brand-green); }
.resource-card-image-link { display: block; }
.resource-card-image {
	aspect-ratio: 16 / 10;
	background-size: cover;
	background-position: center;
	background-color: #0d0d0d;
}
.resource-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.resource-card-title { font-size: 0.95rem; line-height: 1.4; }
.resource-card-title a:hover { color: var(--brand-green) !important; }
.resource-card-date { margin-bottom: 16px; }
.resource-card-body .btn { align-self: flex-start; margin-top: auto; }
.resource-single-hero { padding-top: 60px; padding-bottom: 40px; }
.resource-single-title { line-height: 1.3; }
.resource-single-body { max-width: 800px; }
.resource-single-text { color: rgba(255, 255, 255, 0.9); line-height: 1.8; }
.resource-single-text p { margin-bottom: 1.25em; }
.resource-single-text h2,
.resource-single-text h3 { color: #fff; margin-top: 1.5em; margin-bottom: 0.5em; }
.resource-single-text a { color: var(--brand-green); }
.resource-single-text a:hover { text-decoration: underline; }
.resources-grid-section .nav-links,
.resources-pagination { margin-top: 40px; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.resources-grid-section .page-numbers,
.resources-pagination a,
.resources-pagination span { color: #fff; margin: 0; padding: 8px 14px; border-radius: 8px; background: #1a1a1a; text-decoration: none; display: inline-block; }
.resources-grid-section .page-numbers:hover,
.resources-grid-section .page-numbers.current,
.resources-pagination a:hover,
.resources-pagination .current { background: var(--brand-green); color: #000; }

/* --- Results Page --- */
.results-hero { padding-top: 40px; padding-bottom: 20px; }
.results-breadcrumb { background: transparent; }
.results-breadcrumb .breadcrumb-item a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.results-breadcrumb .breadcrumb-item a:hover { color: var(--brand-green); }
.results-breadcrumb .breadcrumb-item.active { color: rgba(255, 255, 255, 0.6); }
.results-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.4); }
.results-client-badge {
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	background: rgba(59, 130, 246, 0.2);
	color: #60a5fa;
	font-weight: 700;
	font-size: 0.95rem;
	border-radius: 12px;
}
.results-image-wrap { border-radius: 16px; overflow: hidden; }
.results-image-wrap img { display: block; width: 100%; height: auto; }
.results-results-image { border: 2px solid var(--brand-green); }
.results-seo-heading { font-size: 1.5rem; }
.results-section-title-green { color: var(--brand-green) !important; }
.results-metric-card {
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 16px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.results-metric-label { color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; font-weight: 600; }
.results-metric-value { font-size: 1.35rem; font-weight: 800; }
.results-section-title { font-size: 1.2rem; }
.results-section-text { color: rgba(255, 255, 255, 0.85) !important; line-height: 1.7; }
.results-process-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.results-process-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
}
.results-process-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 10px;
	height: 10px;
	background: transparent;
	border: 2px solid var(--brand-green);
	border-radius: 50%;
}
.results-hero .breadcrumb-item a { color: rgba(255,255,255,0.8); }
.results-hero .breadcrumb-item.active { color: var(--brand-green); }
.results-two-testimonials .review-card { margin-bottom: 0; }
.results-testimonial-wrapper { max-width: 700px; }
.results-testimonial-section .partner-testimonial-card { background: #e8e8e8; border-color: #ccc; }
.results-testimonial-section .partner-testimonial-body { background: #e8e8e8; }
.results-testimonial-section .partner-testimonial-header { background: #1a1a1a; }
.results-process-block { margin-bottom: 0; }

/* Results page: two testimonials at a time scroller (after hero) */
.results-two-testimonials-scroller { position: relative; }
.results-scroller-viewport {
	overflow: hidden;
	width: 100%;
}
.results-scroller-track {
	display: flex;
	flex-wrap: nowrap;
	gap: 24px;
	transition: transform 0.5s ease;
	will-change: transform;
}
.results-scroller-item {
	flex: 0 0 calc(50% - 12px);
	min-width: 0;
}
.results-scroller-item .review-card,
.results-scroller-item .review-video { margin-bottom: 0; }
.results-testimonial-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
}
.results-rotator-prev,
.results-rotator-next {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #1a1a1a;
	border: 1px solid #333;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.results-rotator-prev:hover,
.results-rotator-next:hover {
	background: #2a2a2a;
	border-color: var(--brand-green);
	color: var(--brand-green);
}

.results-sprints-outer {
	background: #39ff14;
	border-radius: 32px;
	padding: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 200px;
}
.results-sprints-inner {
	background: #0f4f2c;
	border-radius: 24px;
	padding: 48px 40px;
	width: 60%;
	max-width: 600px;
	position: relative;
}
.results-sprints-subtext { color: rgba(255, 255, 255, 0.95); font-size: 0.95rem; }
.results-sprints-heading { color: #fff !important; font-size: 1.75rem; line-height: 1.3; }
.btn-results-sprints {
	background: #fff;
	color: #0f4f2c;
	font-weight: 800;
	font-size: 1rem;
	border-radius: 50px;
	padding: 12px 28px;
	border: none;
	text-decoration: underline;
	transition: all 0.3s ease;
}
.btn-results-sprints:hover { background: #f0f0f0; color: #0f4f2c; text-decoration: underline; transform: translateY(-2px); }

/* Shared light sections (white bg, dark text) */
.leadgen-light-section { background: #ffffff; color: #111111; }
.leadgen-dark-title { font-size: 2rem; color: #111111; line-height: 1.2; }
.leadgen-dark-text { color: #333333; font-size: 0.97rem; line-height: 1.75; }
.leadgen-section-img { object-fit: cover; max-height: 440px; }

/* Checkmark list (used in "Win" and "Experts" sections) */
.leadgen-check-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}
.leadgen-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	color: #222222;
	font-size: 0.95rem;
	line-height: 1.6;
}
.leadgen-check-icon {
	color: #5b3df5;
	font-size: 1.1rem;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Bullet list (used in "Fail" section) */
.leadgen-bullet-list {
	list-style: disc;
	padding-left: 20px;
}
.leadgen-bullet-list li {
	color: #222222;
	font-size: 0.95rem;
	margin-bottom: 8px;
	line-height: 1.6;
}

/* Quote card (right side of "Fail" section) */
.leadgen-quote-card {
	background: #f0f0ff;
	border: 1px solid #dde;
	border-radius: 16px;
	padding: 24px 22px;
	color: #111111;
}
.leadgen-quote-text {
	font-size: 0.92rem;
	font-style: italic;
	line-height: 1.65;
	color: #333333;
	margin-bottom: 18px;
}
.leadgen-quote-author-row {
	display: flex;
	align-items: center;
	gap: 12px;
}
.leadgen-quote-avatar {
	width: 52px;
	height: 52px;
	object-fit: cover;
	flex-shrink: 0;
}
.leadgen-quote-role { font-size: 0.85rem; color: #555555; }

/* Text link (CTA) */
.leadgen-text-link {
	color: #111111;
	text-decoration: underline;
	font-size: 0.97rem;
}
.leadgen-text-link:hover { color: var(--brand-green); }

/* ── Full-Funnel Accordion (Section 5) ──────────────────────────── */
.leadgen-funnel-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
/* Each accordion item is its own bordered card */
.leadgen-funnel-item {
	border: 1.5px solid #dde1ea;
	border-radius: 12px;
	background: #f4f6fb;
	overflow: hidden;
	transition: box-shadow 0.2s;
}
.leadgen-funnel-item-open {
	background: #fff;
	border-color: #c8cde0;
	box-shadow: 0 2px 12px rgba(99,102,241,0.07);
}
.leadgen-funnel-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 18px 22px;
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	color: #111;
	text-align: left;
	transition: background 0.2s;
	border-radius: 12px;
}
.leadgen-funnel-toggle:hover { background: #eaecf5; }
.leadgen-funnel-item-open .leadgen-funnel-toggle {
	background: #fff;
	border-radius: 12px 12px 0 0;
}
.leadgen-funnel-icon {
	font-size: 1rem;
	color: #6366f1;
	flex-shrink: 0;
	margin-left: 12px;
	font-weight: 700;
}
.leadgen-funnel-body {
	display: none;
	padding: 4px 22px 22px;
	background: #fff;
}
.leadgen-funnel-body-open { display: block; }
.leadgen-funnel-body-text { color: #444; font-size: 0.97rem; margin: 0; }
.leadgen-funnel-note {
	background: #f0f1ff;
	border-left: 4px solid #6366f1;
	border-radius: 6px;
	padding: 14px 18px;
	font-size: 0.88rem;
	color: #444;
}

/* Full-Funnel CTA button */
.leadgen-funnel-btn {
	background: #6e21ef;
	color: #fff;
	font-weight: 700;
	border-radius: 6px;
	font-size: 1rem;
	transition: background 0.2s, transform 0.15s;
	border: none;
}
.leadgen-funnel-btn:hover { background: #5a17cc; color: #fff; transform: translateY(-2px); }

/* ── Complete Google Ads Optimization Suite (Section 6) ─────────── */
.leadgen-suite-section {
	border-top: 1px solid #e2e5ea;
}
.leadgen-suite-title {
	font-size: 1.6rem;
	color: #111;
}
.leadgen-suite-list {
	list-style: disc;
	padding-left: 20px;
	margin: 0;
}
.leadgen-suite-list li {
	font-size: 0.95rem;
	color: #333;
	margin-bottom: 8px;
	line-height: 1.5;
}

/* ── Comparison Table (Section 7) ───────────────────────────────── */
.leadgen-compare-section {
	background: #fff;
}
.leadgen-compare-heading {
	font-size: 1.9rem;
	color: #111;
	display: inline-block;
	background: #f3eeff;
	border: 1.5px solid #d8caff;
	border-radius: 10px;
	padding: 10px 30px;
	line-height: 1.35;
}
.leadgen-compare-subtitle {
	color: #555;
	font-size: 1rem;
}
.leadgen-compare-table {
	border: 1px solid #e2e5ea;
	border-radius: 12px;
	overflow: hidden;
}
.leadgen-compare-header,
.leadgen-compare-row {
	display: flex;
}
.leadgen-compare-header {
	border-bottom: 2px solid #e2e5ea;
}
.leadgen-compare-col {
	flex: 1;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.leadgen-compare-col-us {
	border-right: 1px solid #e2e5ea;
}
.leadgen-compare-header .leadgen-compare-col {
	padding: 20px 24px;
	font-size: 1.05rem;
	font-weight: 700;
	color: #111;
	background: #fafbff;
}
.leadgen-compare-site-name {
	font-size: 1.15rem;
	font-weight: 800;
	color: #111;
	letter-spacing: -0.01em;
}
.leadgen-compare-them-label {
	font-size: 1rem;
	font-weight: 600;
	color: #555;
}
.leadgen-compare-row {
	border-bottom: 1px solid #f0f2f6;
}
.leadgen-compare-row:last-child { border-bottom: none; }
.leadgen-compare-row:nth-child(odd) .leadgen-compare-col { background: #fff; }
.leadgen-compare-row:nth-child(even) .leadgen-compare-col { background: #fafbff; }
.leadgen-compare-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}
.leadgen-compare-icon-good { color: #22c55e; }
.leadgen-compare-icon-bad  { color: #ef4444; }
.leadgen-compare-text {
	font-size: 0.97rem;
	font-weight: 600;
	color: #111;
	line-height: 1.4;
}
.leadgen-compare-col-them .leadgen-compare-text {
	font-weight: 400;
	color: #333;
}
@media (max-width: 576px) {
	.leadgen-compare-header,
	.leadgen-compare-row { flex-direction: column; }
	.leadgen-compare-col-us { border-right: none; border-bottom: 1px solid #e2e5ea; }
	.leadgen-compare-heading { font-size: 1.35rem; padding: 8px 18px; }
}

/* --- Lead Generation Page --- */

/* Eyebrow kicker above hero headline */
.leadgen-hero-section .leadgen-hero-kicker {
	color: var(--brand-green);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

/* "Google Ads Still Win" section: white background, dark text */
.leadgen-win-section { background: #ffffff; color: #111111; }
.leadgen-win-title { font-size: 2rem; font-weight: 800; color: #111111; line-height: 1.2; }
.leadgen-win-text { color: #333333; font-size: 1rem; line-height: 1.7; }
.leadgen-win-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}
.leadgen-win-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	color: #222222;
	font-size: 0.95rem;
	line-height: 1.6;
}
.leadgen-win-check {
	color: #5b3df5;
	font-size: 1.15rem;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Body sections below win section */
.leadgen-body { background: #000000; }
.leadgen-section {
	padding: 80px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.leadgen-section:nth-of-type(even) { background: rgba(12, 12, 35, 0.85); }
.leadgen-section-title {
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff;
}
.leadgen-section-text {
	color: rgba(255, 255, 255, 0.85);
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}
.leadgen-list {
	list-style: none;
	padding-left: 0;
}
.leadgen-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
}
.leadgen-list li::before {
	content: 'e280a2';
	position: absolute;
	left: 4px;
	top: 0;
	color: var(--brand-green);
}
.leadgen-card,
.leadgen-highlight-card,
.leadgen-funnel-step,
.leadgen-pricing-card {
	background: #111111;
	border-radius: 20px;
	padding: 24px 22px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}
.leadgen-highlight-card { background: #111122; }
.leadgen-card h3,
.leadgen-funnel-step h3,
.leadgen-pricing-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.leadgen-quote {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	color: rgba(255, 255, 255, 0.85);
}
.leadgen-quote-author { font-weight: 700; color: #ffffff; }
.leadgen-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.leadgen-grid-item {
	background: #111122;
	border-radius: 16px;
	padding: 18px 16px;
	border: 1px solid rgba(255, 255, 255, 0.06);
}
.leadgen-grid-item h3 { font-size: 1rem; margin-bottom: 6px; }
.leadgen-grid-item p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 0; }
.leadgen-funnel-step { text-align: left; height: 100%; }
.leadgen-pricing-from { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }
.leadgen-steps li {
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 992px) {
	.leadgen-section { padding: 60px 0; }
	.leadgen-grid { grid-template-columns: 1fr; }
}
/**
 * SEOptimize Theme - Custom Design Styles
 *
 * @package SEOptimize
 */

:root {
	--brand-green: #00e65b;
	--brand-green-hover: #00c94f;
	--dark-bg: #000000;
	--card-bg: #ffffff;
	--text-gray: #a1a1a1;
	--border-color: #1a1a1a;
	--whatsapp-green: #25d366;
	--whatsapp-green-hover: #20bd5a;
}

/* WhatsApp floating button (bottom-right, all pages) */
.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	background-color: var(--whatsapp-green);
	color: #fff;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
	z-index: 9999;
	transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
	text-decoration: none;
}
.whatsapp-float:hover {
	background-color: var(--whatsapp-green-hover);
	color: #fff;
	transform: scale(1.08);
	box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}
.whatsapp-float i {
	font-size: 1.75rem;
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	background-color: var(--dark-bg);
	color: #ffffff;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

/* --- Scroll Animation Styles --- */
.reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Utilities */
.text-green { color: var(--brand-green) !important; }
.bg-green { background-color: var(--brand-green) !important; }
.fw-800 { font-weight: 800; }
.section-padding { padding: 100px 0; }

/* --- Trusted Logos Carousel --- */
.trusted-logos-section { padding: 60px 0; }
.trusted-logos-heading { font-size: 1.75rem; }
.trusted-logos-carousel-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: 100%;
}
.trusted-logos-arrow {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	transition: background 0.2s, border-color 0.2s;
}
.trusted-logos-arrow:hover:not(:disabled) {
	background: #2a2a2a;
	border-color: var(--brand-green);
	color: var(--brand-green);
}
.trusted-logos-arrow:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
.trusted-logos-track-container {
	flex: 1;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
	container-type: inline-size;
	display: flex;
	flex-wrap: nowrap;
}
.trusted-logos-track-container::-webkit-scrollbar { display: none; }
.trusted-logos-track {
	display: flex;
	gap: 24px;
	align-items: center;
	flex: 0 0 auto;
}
.trusted-logo-item {
	flex: 0 0 160px;
	width: 160px;
	min-width: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.trusted-logo-link,
.trusted-logo-link.trusted-logo-link-no-url {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.7);
	transition: opacity 0.2s;
	width: 100%;
	height: 50px;
}
.trusted-logo-link:hover { opacity: 0.9; color: #fff; }
.trusted-logo-link img,
.trusted-logo-link-no-url img {
	max-height: 50px;
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
	transition: opacity 0.2s;
}
.trusted-logo-link:hover img,
.trusted-logo-link-no-url:hover img { opacity: 0.85; }
.trusted-logo-text { font-size: 0.95rem; font-weight: 600; white-space: nowrap; color: rgba(255, 255, 255, 0.7); }

/* Buttons */
.btn-brand {
	background-color: var(--brand-green) !important;
	color: #000 !important;
	font-weight: 800;
	border-radius: 50px;
	padding: 12px 28px;
	border: none;
	transition: all 0.3s ease;
	text-transform: none;
	font-size: 15px;
}
.btn-brand:hover {
	background-color: #000 !important;
	color: #fff !important;
	transform: translateY(-2px);
}
.btn-outline-white {
	background: #fff;
	color: #000;
	font-weight: 700;
	border-radius: 50px;
	padding: 10px 25px;
	border: none;
}
.btn-outline-light {
	background: transparent;
	color: #fff;
	font-weight: 700;
	border-radius: 50px;
	padding: 10px 25px;
	border: 2px solid #fff;
	transition: all 0.3s ease;
}
.btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: #fff;
}

/* --- Header & Sticky Background --- */
.navbar {
	padding: 20px 0;
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: background-color 0.3s ease;
}
.navbar.navbar-scrolled {
	background-color: #000000 !important;
	padding: 15px 0;
}
.navbar-brand {
	font-weight: 800;
	font-size: 24px;
	color: #fff !important;
}
.navbar-brand .navbar-logo-img {
	max-height: 40px;
	width: auto;
	height: auto;
}
/* Mobile sticky CTA button (between logo and hamburger) */
.navbar-mobile-cta {
	font-size: 0.82rem;
	padding: 8px 16px !important;
	border-radius: 50px !important;
	font-weight: 800;
	margin-left: auto;
	margin-right: 10px;
	white-space: nowrap;
}
.nav-link {
	color: #fff !important;
	font-weight: 600;
	font-size: 15px;
	margin: 0 15px;
}

/* --- Dropdown Hover & Fade Animation --- */
@media (min-width: 992px) {
	.nav-item.dropdown:hover .dropdown-menu {
		display: block;
		margin-top: 0;
		animation: dropdownFade 0.3s ease forwards;
	}
}

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

.dropdown-menu {
	background-color: #111;
	border: 1px solid var(--border-color);
	padding: 10px;
}
.dropdown-item {
	color: #fff;
	font-weight: 500;
	padding: 10px 20px;
}
.dropdown-item:hover {
	background-color: var(--brand-green);
	color: #000;
}

/* --- Hero Section --- */
.hero-section {
	position: relative;
	/* Gradient extends behind navbar for seamless blend; flows into success section */
	background: linear-gradient(to bottom, #1a1a1a 0%, #1e231f 20%, #18251d 45%, #122118 70%, #0d1c14 88%, #0a1f12 100%);
	text-align: center;
	margin-top: -88px;
	padding-top: 208px;
	padding-bottom: 80px;
	overflow: hidden;
}
.hero-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
}
.hero-section h1 {
	font-size: 50px;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 20px;
	animation: heroSlideUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

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

.hero-section h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 25px;
}
.hero-section p {
	color: var(--text-gray);
	max-width: 800px;
	margin: 0 auto 40px;
	font-size: 18px;
}
.hero-section .container { position: relative; z-index: 1; }
.avatar-group img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 2px solid var(--brand-green);
	margin-left: -15px;
}
.avatar-group img:first-child { margin-left: 0; }

/* --- Success Section --- */
.success-section {
	/* Top (#0a1f12) matches hero bottom; bottom (#000) blends into body */
	background: linear-gradient(to bottom, #0a1f12 0%, #0a1f12 5%, #0d2818 25%, #0f2d1a 45%, #0a1f12 65%, #061208 85%, #000000 100%);
	color: #fff;
}
.success-section h2,
.success-section h5 { color: #fff; }
.success-section .text-secondary { color: rgba(255, 255, 255, 0.85) !important; }
.success-img-container {
	background: rgba(0, 0, 0, 0.35);
	padding: 40px;
	border-radius: 20px;
}
.success-list-item {
	margin-bottom: 30px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}
.success-icon {
	width: 40px;
	height: 40px;
	background: var(--brand-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	flex-shrink: 0;
}

/* --- Outdated Marketing --- */
.outdated-section {
	background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1600&q=80');
	background-size: cover;
	background-position: center;
	text-align: center;
	padding: 120px 0;
	color: #fff;
}

/* --- Qualified Leads Cards --- */
.leads-card {
	background: #fff;
	border-radius: 30px;
	padding: 50px 30px;
	text-align: center;
	color: #000;
	height: 100%;
	transition: all 0.3s ease;
	cursor: pointer;
}
.leads-card:hover {
	background-color: var(--brand-green) !important;
	transform: translateY(-10px);
}
.leads-card.js-free-consultation-card { cursor: pointer; }
.leads-card.highlight { background: #dcdcdc; }
.leads-card .icon-box {
	width: 80px;
	height: 80px;
	background: var(--brand-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 32px;
	transition: background-color 0.3s ease;
}
.leads-card:hover .icon-box { background: #000; color: #fff; }

/* --- Partner & Expectations --- */
.partner-card-mockup { background: #000; border: 1px solid #333; border-radius: 20px; padding: 30px; }

/* Partner testimonial carousel (Why Partner section) */
.partner-testimonial-carousel { position: relative; min-height: 280px; }
.partner-testimonial-card {
	display: none;
	background: #fff;
	color: #000;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #ddd;
}
.partner-testimonial-card.active { display: block; }
.partner-testimonial-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 24px 20px;
	background: #000;
	color: #fff;
}
.partner-testimonial-avatar {
	width: 48px;
	height: 48px;
	object-fit: cover;
	flex-shrink: 0;
}
.partner-testimonial-avatar-placeholder { background: #333 !important; }
.partner-testimonial-nav { display: flex; gap: 8px; flex-shrink: 0; }
.partner-carousel-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.5);
	background: transparent;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, border-color 0.2s;
}
.partner-carousel-btn:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.partner-testimonial-body { padding: 24px; }
.partner-testimonial-stars { font-size: 1.1rem; letter-spacing: 1px; }
.partner-testimonial-text { font-size: 0.95rem; line-height: 1.6; color: #1a1a1a; }
.partner-testimonial-read-more { font-size: 0.9rem; text-decoration: underline; }
.partner-testimonial-read-more:hover { text-decoration: underline; }
.partner-testimonial-empty {
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 20px;
	padding: 40px;
}
.expect-section .container { max-width: 920px; }
.expect-card { background: #1C1C1C; border: 1px solid #2a2a2a; border-radius: 25px; padding: 40px; height: 100%; transition: border-color 0.3s ease; display: flex; flex-direction: column; }
.expect-card:hover { border-color: var(--brand-green); }
.expect-card .expect-card-body { flex: 1; }
.expect-card .btn-brand { width: 75%; border-radius: 50px; padding: 14px 24px; font-size: 15px; font-weight: 800; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; align-self: center; }

/* --- Booking & Review --- */
.booking-card { background: #fff; color: #1a1a1a; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.25); max-width: 400px; margin: 0 auto; }
.booking-header { padding: 28px 24px 20px; border-bottom: 1px solid #eee; }
.booking-header .booking-title { font-size: 22px; font-weight: 800; color: #1a1a1a; text-align: center; margin-bottom: 16px; }
.booking-header .booking-meta { color: #666; font-size: 14px; text-align: left; padding-left: 8px; }
.booking-header .booking-meta .meta-line { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.booking-header .booking-meta .meta-line:last-child { margin-bottom: 0; }
.booking-header .booking-meta i { margin-top: 2px; flex-shrink: 0; }
.calendar-body { padding: 24px 24px 20px; }
.calendar-body .select-day { font-size: 16px; font-weight: 800; color: #1a1a1a; text-align: center; margin-bottom: 18px; }
.calendar-month-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 18px; }
.calendar-month-row .month-text { font-weight: 700; color: #1a1a1a; font-size: 15px; min-width: 130px; text-align: center; }
.calendar-arrow { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; border: 2px solid #2563eb; background: #eff6ff; color: #2563eb; }
.calendar-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 12px; text-align: center; font-size: 12px; font-weight: 600; color: #1a1a1a; text-transform: uppercase; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; text-align: center; }
.calendar-day { padding: 10px 0; font-size: 14px; color: #1a1a1a; border-radius: 50%; cursor: pointer; position: relative; min-height: 40px; }
.calendar-day.selected { background: #dbeafe; color: #1d4ed8; font-weight: 700; border: 2px solid #93c5fd; }
.calendar-day .day-dot { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: #374151; }
.booking-timezone { padding: 18px 24px 16px; border-top: 1px solid #eee; }
.booking-timezone label { display: block; font-size: 14px; font-weight: 600; color: #1a1a1a; margin-bottom: 10px; }
.booking-timezone .timezone-select { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid #ddd; border-radius: 8px; background: #fff; color: #1a1a1a; font-size: 14px; cursor: pointer; width: 100%; }
.booking-timezone .timezone-select i.bi-globe { color: #666; }
.booking-timezone .timezone-select .chevron { margin-left: auto; color: #666; font-size: 12px; }
.booking-footer { padding: 14px 24px 20px; text-align: center; }
.booking-footer a { font-size: 13px; color: #2563eb; text-decoration: underline; }
.masonry-wrapper { column-count: 3; column-gap: 25px; }
.review-card { break-inside: avoid; background: #fff; color: #000; border-radius: 20px; padding: 30px; margin-bottom: 25px; border-bottom: 8px solid var(--brand-green); }
.review-card .stars { color: #ffc107; margin-bottom: 15px; }
.review-video { border-radius: 20px; overflow: hidden; position: relative; margin-bottom: 25px; border: 4px solid var(--brand-green); }

/* --- Capacity Banner --- */
.capacity-banner {
	background: radial-gradient(circle at top right, #004d1e, #000 60%);
	border: 1px solid var(--brand-green);
	border-radius: 40px;
	padding: 80px 60px;
	margin-bottom: 100px;
	position: relative;
	color: #fff;
	text-align: left;
}
footer .capacity-banner { margin-bottom: 0; }
.capacity-banner .text-green { color: var(--brand-green) !important; }

/* --- SEO Service Page --- */
.seo-service-hero { background: #000; }
.seo-service-why-text { color: rgba(255, 255, 255, 0.9); line-height: 1.7; }
.why-choose-section .why-choose-inner { max-width: 700px; margin-left: auto; margin-right: auto; }
.why-choose-section .why-choose-text { color: rgba(255, 255, 255, 0.9); line-height: 1.7; }
.seo-feature-card {
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 16px;
	padding: 28px;
	transition: border-color 0.2s;
}
.seo-feature-card:hover { border-color: var(--brand-green); }
.seo-feature-card h4 { color: var(--brand-green) !important; }
.seo-feature-card .text-secondary,
.seo-feature-card .small { color: #fff !important; }
.seo-feature-icon {
	width: 56px;
	height: 56px;
	background: var(--brand-green);
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: #fff;
	font-size: 1.5rem;
}
.seo-process-steps {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 16px;
}
.seo-process-step {
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 16px;
	padding: 28px;
	flex: 1 1 220px;
	max-width: 280px;
}
.seo-process-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--brand-green);
	line-height: 1;
	margin-bottom: 12px;
}
.seo-process-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}
@media (max-width: 991px) {
	.seo-process-arrow { transform: rotate(90deg); width: 100%; }
}
.seo-service-card {
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 16px;
	padding: 28px;
	transition: border-color 0.2s;
}
.seo-service-card:hover { border-color: var(--brand-green); }
.seo-service-card-icon {
	width: 48px;
	height: 48px;
	background: var(--brand-green);
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	color: #000;
	font-size: 1.25rem;
}
.seo-faq-accordion { }
.seo-faq-item {
	border-bottom: 1px solid #333;
}
.seo-faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	text-align: left;
	padding: 20px 0;
	cursor: pointer;
	transition: color 0.2s;
}
.seo-faq-question:hover { color: var(--brand-green); }
.seo-faq-question[aria-expanded="true"] .seo-faq-icon { transform: rotate(45deg); }
.seo-faq-icon {
	flex-shrink: 0;
	margin-left: 16px;
	font-size: 1.25rem;
	color: var(--brand-green);
	transition: transform 0.2s;
}
.seo-faq-answer {
	padding: 0 0 20px 0;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	font-size: 0.95rem;
}

/* --- Service Single (design-aligned) --- */
.service-single-hero {
	background: #000;
	background-image: linear-gradient(135deg, rgba(0, 230, 91, 0.06) 0%, transparent 50%);
	position: relative;
	overflow: hidden;
}
.service-single-headline { font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2; }
.service-single-subtitle { color: rgba(255, 255, 255, 0.85); line-height: 1.7; }
.service-single-subtitle strong { color: #fff; font-weight: 700; }
.service-single-bullet-icon {
	font-size: 1.25rem;
	color: var(--brand-green);
	flex-shrink: 0;
}
.service-single-cta { font-size: 1.15rem; }
.seo-feature-card-hero {
	border: 1px solid var(--brand-green);
}
.seo-feature-card-hero .seo-feature-icon { background: transparent; color: var(--brand-green); border: 1px solid var(--brand-green); }
.seo-service-process-light {
	background: #f5f5f5;
	background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
	background-size: 20px 20px;
}
.seo-service-process-light h2 { color: #000 !important; }
.seo-service-process-light .seo-process-step-dark {
	background: #1a1a1a;
	border: 1px solid #333;
	color: #fff;
}
.text-white-80 { color: rgba(255, 255, 255, 0.9); }
.seo-faq-light {
	background: #f5f5f5;
	background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
	background-size: 20px 20px;
}
.seo-faq-light .seo-faq-item { border-bottom-color: #ddd; }
.seo-faq-question-light { color: #1a1a1a !important; }
.seo-faq-question-light:hover { color: var(--brand-green) !important; }
.seo-faq-answer-light { color: #444; }
.btn-service-outline {
	background: transparent;
	color: #fff;
	font-weight: 700;
	border: 2px solid var(--brand-green);
	border-radius: 50px;
	padding: 12px 28px;
	transition: all 0.3s ease;
}
.btn-service-outline:hover {
	background: rgba(0, 230, 91, 0.15);
	color: var(--brand-green);
	border-color: var(--brand-green);
}
.service-single-dashboard {
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 24px;
	padding: 32px;
	position: relative;
}
.service-dashboard-keywords {
	position: absolute;
	top: 16px;
	right: 16px;
	background: #0d0d0d;
	border: 1px solid var(--brand-green);
	border-radius: 12px;
	padding: 8px 14px;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.9);
	display: inline-flex;
	align-items: center;
}
.service-dashboard-revenue { margin-top: 16px; }
.service-dashboard-revenue-value { font-size: 2.25rem; line-height: 1.2; }
.service-dashboard-bars {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	height: 60px;
}
.service-dashboard-bar {
	flex: 1;
	background: var(--brand-green);
	border-radius: 4px 4px 0 0;
	min-width: 20px;
	transition: height 0.3s ease;
}
.service-dashboard-row {
	display: flex;
	gap: 24px;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid #333;
}
.service-dashboard-metric {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}
.service-dashboard-position {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: #0d0d0d;
	border: 1px solid var(--brand-green);
	border-radius: 12px;
	padding: 8px 14px;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.9);
	display: inline-flex;
	align-items: center;
}
.service-dashboard-position .bi-bullseye { color: #e74c3c; }
.service-single-content { color: rgba(255, 255, 255, 0.9); line-height: 1.8; }
.service-single-content a { color: var(--brand-green); }
@media (max-width: 991px) {
	.service-dashboard-keywords { position: static; margin-bottom: 16px; display: inline-flex; }
	.service-dashboard-position { position: static; margin-top: 24px; display: inline-flex; }
}

/* --- Footer --- */
footer { padding: 80px 0 40px; border-top: 1px solid var(--border-color); background: #000; }
.footer-left-section .footer-logo { font-size: 28px; font-weight: 800; }
.footer-left-section .footer-logo a { color: #fff; text-decoration: none; }
.footer-left-section .footer-logo a:hover { color: #fff; }
.footer-logo .footer-logo-img { max-height: 50px; width: auto; }
.footer-left-section .footer-tagline { color: rgba(255, 255, 255, 0.9); line-height: 1.6; margin-bottom: 0; }
.footer-left-section .footer-email-link { color: rgba(255, 255, 255, 0.9); text-decoration: none; }
.footer-left-section .footer-email-link:hover { color: #fff; }
.footer-heading { color: var(--brand-green); font-weight: 800; margin-bottom: 25px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a.footer-link { color: var(--text-gray); text-decoration: none; transition: color 0.2s; }
.footer-links a.footer-link:hover { color: var(--brand-green); }

/* --- Contact Page --- */
.contact-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 120px 0 80px;
	text-align: center;
}
.contact-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
}
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero-title {
	font-size: 48px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 15px;
}
.contact-breadcrumb { background: transparent; }
.contact-breadcrumb .breadcrumb-item a { color: rgba(255, 255, 255, 0.9); text-decoration: none; }
.contact-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.contact-breadcrumb .breadcrumb-item.active { color: rgba(255, 255, 255, 0.7); }
.contact-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.5); }
.contact-make-google-section .text-secondary { color: rgba(255, 255, 255, 0.85) !important; }
.contact-booking-embed {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.contact-booking-embed iframe { display: block; }
.booking-body-placeholder { border-top: 1px solid #eee; }
.local-seo-banner {
	background: #39FF14;
	background-image:
		linear-gradient(165deg, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
		linear-gradient(180deg, rgba(120, 255, 80, 0.9) 0%, #39FF14 15%, #2ee64d 50%, #39FF14 85%, rgba(120, 255, 80, 0.9) 100%);
	color: #000;
	border-radius: 24px;
	padding: 60px 40px;
}
.local-seo-banner h2 { color: #000; font-size: 28px; font-weight: 800; }
.local-seo-banner .local-seo-desc,
.local-seo-banner .local-seo-instruction { color: #000; font-size: 16px; line-height: 1.6; }
.local-seo-form { max-width: 580px; margin: 0 auto; }
.local-seo-form-inner {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}
.local-seo-form .local-seo-input {
	flex: 1;
	min-width: 200px;
	background: transparent;
	border: none;
	border-bottom: 2px solid #000;
	border-radius: 0;
	padding: 14px 0 12px;
	font-size: 16px;
	color: #000;
}
.local-seo-form .local-seo-input::placeholder { color: #000; opacity: 0.85; }
.local-seo-form .local-seo-input:focus {
	outline: none;
	box-shadow: none;
	border-bottom-color: #000;
}
.local-seo-form .local-seo-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
}
.local-seo-form .local-seo-btn:hover { background: #1a1a1a; color: #fff; }
.local-seo-form .local-seo-btn i { font-size: 18px; }

/* --- About Page --- */
.about-hero {
	position: relative;
	margin-top: -88px;
	padding-top: 208px;
	padding-bottom: 100px;
	overflow: hidden;
}
.about-hero-gradient {
	background: linear-gradient(to bottom, #1a1a1a 0%, #1e231f 20%, #18251d 45%, #122118 70%, #0d1c14 88%, #0a1f12 100%);
}
.about-hero-with-bg {
	background-color: #0a0a0a;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.about-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
}
.about-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, transparent 50%);
	pointer-events: none;
}
.about-hero-with-bg .about-hero-overlay {
	background: rgba(0, 0, 0, 0.5);
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero-badge {
	display: inline-flex;
	align-items: center;
	background: var(--brand-green);
	color: #000;
	font-weight: 700;
	font-size: 14px;
	padding: 8px 18px;
	border-radius: 50px;
	margin-bottom: 24px;
}
.about-hero-title {
	font-size: 48px;
	line-height: 1.2;
	color: #fff;
}
.about-hero-desc {
	max-width: 540px;
	font-size: 17px;
	line-height: 1.7;
}
.about-hero-image-wrap {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.about-hero-image-wrap img { display: block; width: 100%; height: auto; }
.about-founded-section { position: relative; padding-bottom: 40px !important; }
.about-founded-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
	pointer-events: none;
}
.about-founded-inner { position: relative; z-index: 1; max-width: 85%; }
.about-founded-title { color: #fff !important; }
.about-founded-desc { color: #fff !important; line-height: 1.8; }
.about-founded-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
	border: 3px solid var(--brand-green);
}
.about-founded-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-philosophy-section { position: relative; padding-top: 40px !important; }
.about-philosophy-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
	pointer-events: none;
}
.about-philosophy-section .container { position: relative; z-index: 1; }
.about-philosophy-card {
	background: rgba(28, 28, 28, 0.8);
	border: 1px solid var(--brand-green);
	border-radius: 24px;
	padding: 40px 32px;
	height: 100%;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.about-philosophy-card:hover {
	border-color: var(--brand-green);
	box-shadow: 0 0 20px rgba(0, 230, 91, 0.15);
}
.about-philosophy-card h3 { font-size: 1.35rem; }
.about-philosophy-card-title { color: var(--brand-green) !important; }
.about-philosophy-card-desc { color: #fff !important; line-height: 1.7; }

/* --- Resources Page --- */
.resources-hero { padding-top: 60px; padding-bottom: 60px; }
.resources-breadcrumb { background: transparent; }
.resources-breadcrumb .breadcrumb-item a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.resources-breadcrumb .breadcrumb-item a:hover { color: var(--brand-green); }
.resources-breadcrumb .breadcrumb-item.active { color: rgba(255, 255, 255, 0.6); }
.resources-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.4); }
.resource-card {
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.3s ease;
}
.resource-card:hover { border-color: var(--brand-green); }
.resource-card-image-link { display: block; }
.resource-card-image {
	aspect-ratio: 16 / 10;
	background-size: cover;
	background-position: center;
	background-color: #0d0d0d;
}
.resource-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.resource-card-title { font-size: 0.95rem; line-height: 1.4; }
.resource-card-title a:hover { color: var(--brand-green) !important; }
.resource-card-date { margin-bottom: 16px; }
.resource-card-body .btn { align-self: flex-start; margin-top: auto; }
.resource-single-hero { padding-top: 60px; padding-bottom: 40px; }
.resource-single-title { line-height: 1.3; }
.resource-single-body { max-width: 800px; }
.resource-single-text { color: rgba(255, 255, 255, 0.9); line-height: 1.8; }
.resource-single-text p { margin-bottom: 1.25em; }
.resource-single-text h2,
.resource-single-text h3 { color: #fff; margin-top: 1.5em; margin-bottom: 0.5em; }
.resource-single-text a { color: var(--brand-green); }
.resource-single-text a:hover { text-decoration: underline; }
.resources-grid-section .nav-links,
.resources-pagination { margin-top: 40px; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.resources-grid-section .page-numbers,
.resources-pagination a,
.resources-pagination span { color: #fff; margin: 0; padding: 8px 14px; border-radius: 8px; background: #1a1a1a; text-decoration: none; display: inline-block; }
.resources-grid-section .page-numbers:hover,
.resources-grid-section .page-numbers.current,
.resources-pagination a:hover,
.resources-pagination .current { background: var(--brand-green); color: #000; }

/* --- Results Page --- */
.results-hero { padding-top: 40px; padding-bottom: 20px; }
.results-breadcrumb { background: transparent; }
.results-breadcrumb .breadcrumb-item a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.results-breadcrumb .breadcrumb-item a:hover { color: var(--brand-green); }
.results-breadcrumb .breadcrumb-item.active { color: rgba(255, 255, 255, 0.6); }
.results-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.4); }
.results-client-badge {
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	background: rgba(59, 130, 246, 0.2);
	color: #60a5fa;
	font-weight: 700;
	font-size: 0.95rem;
	border-radius: 12px;
}
.results-image-wrap { border-radius: 16px; overflow: hidden; }
.results-image-wrap img { display: block; width: 100%; height: auto; }
.results-results-image { border: 2px solid var(--brand-green); }
.results-seo-heading { font-size: 1.5rem; }
.results-section-title-green { color: var(--brand-green) !important; }
.results-metric-card {
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 16px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.results-metric-label { color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; font-weight: 600; }
.results-metric-value { font-size: 1.35rem; font-weight: 800; }
.results-section-title { font-size: 1.2rem; }
.results-section-text { color: rgba(255, 255, 255, 0.85) !important; line-height: 1.7; }
.results-process-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.results-process-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
}
.results-process-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 10px;
	height: 10px;
	background: transparent;
	border: 2px solid var(--brand-green);
	border-radius: 50%;
}
.results-hero .breadcrumb-item a { color: rgba(255,255,255,0.8); }
.results-hero .breadcrumb-item.active { color: var(--brand-green); }
.results-two-testimonials .review-card { margin-bottom: 0; }
.results-testimonial-wrapper { max-width: 700px; }
.results-testimonial-section .partner-testimonial-card { background: #e8e8e8; border-color: #ccc; }
.results-testimonial-section .partner-testimonial-body { background: #e8e8e8; }
.results-testimonial-section .partner-testimonial-header { background: #1a1a1a; }
.results-process-block { margin-bottom: 0; }

/* Results page: two testimonials at a time scroller (after hero) */
.results-two-testimonials-scroller { position: relative; }
.results-scroller-viewport {
	overflow: hidden;
	width: 100%;
}
.results-scroller-track {
	display: flex;
	flex-wrap: nowrap;
	gap: 24px;
	transition: transform 0.5s ease;
	will-change: transform;
}
.results-scroller-item {
	flex: 0 0 calc(50% - 12px);
	min-width: 0;
}
.results-scroller-item .review-card,
.results-scroller-item .review-video { margin-bottom: 0; }
.results-testimonial-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
}
.results-rotator-prev,
.results-rotator-next {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #1a1a1a;
	border: 1px solid #333;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.results-rotator-prev:hover,
.results-rotator-next:hover {
	background: #2a2a2a;
	border-color: var(--brand-green);
	color: var(--brand-green);
}

.results-sprints-outer {
	background: #39ff14;
	border-radius: 32px;
	padding: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 200px;
}
.results-sprints-inner {
	background: #0f4f2c;
	border-radius: 24px;
	padding: 48px 40px;
	width: 60%;
	max-width: 600px;
	position: relative;
}
.results-sprints-subtext { color: rgba(255, 255, 255, 0.95); font-size: 0.95rem; }
.results-sprints-heading { color: #fff !important; font-size: 1.75rem; line-height: 1.3; }
.btn-results-sprints {
	background: #fff;
	color: #0f4f2c;
	font-weight: 800;
	font-size: 1rem;
	border-radius: 50px;
	padding: 12px 28px;
	border: none;
	text-decoration: underline;
	transition: all 0.3s ease;
}
.btn-results-sprints:hover { background: #f0f0f0; color: #0f4f2c; text-decoration: underline; transform: translateY(-2px); }

/* --- Lead Generation Page --- */

/* Eyebrow kicker above hero headline */
.leadgen-hero-section .leadgen-hero-kicker {
	color: var(--brand-green);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

/* "Google Ads Still Win" section: white background, dark text */
.leadgen-win-section { background: #ffffff; color: #111111; }
.leadgen-win-title { font-size: 2rem; font-weight: 800; color: #111111; line-height: 1.2; }
.leadgen-win-text { color: #333333; font-size: 1rem; line-height: 1.7; }
.leadgen-win-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}
.leadgen-win-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	color: #222222;
	font-size: 0.95rem;
	line-height: 1.6;
}
.leadgen-win-check {
	color: #5b3df5;
	font-size: 1.15rem;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Body sections below win section */
.leadgen-body { background: #000000; }
.leadgen-section {
	padding: 80px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.leadgen-section:nth-of-type(even) { background: rgba(12, 12, 35, 0.85); }
.leadgen-section-title {
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff;
}
.leadgen-section-text {
	color: rgba(255, 255, 255, 0.85);
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}
.leadgen-list {
	list-style: none;
	padding-left: 0;
}
.leadgen-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
}
.leadgen-list li::before {
	content: "\2022";
	position: absolute;
	left: 4px;
	top: 0;
	color: var(--brand-green);
}
.leadgen-card,
.leadgen-highlight-card,
.leadgen-funnel-step,
.leadgen-pricing-card {
	background: #111111;
	border-radius: 20px;
	padding: 24px 22px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}
.leadgen-highlight-card { background: #111122; }
.leadgen-card h3,
.leadgen-funnel-step h3,
.leadgen-pricing-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.leadgen-quote {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	color: rgba(255, 255, 255, 0.85);
}
.leadgen-quote-author { font-weight: 700; color: #ffffff; }
.leadgen-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.leadgen-grid-item {
	background: #111122;
	border-radius: 16px;
	padding: 18px 16px;
	border: 1px solid rgba(255, 255, 255, 0.06);
}
.leadgen-grid-item h3 { font-size: 1rem; margin-bottom: 6px; }
.leadgen-grid-item p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 0; }
.leadgen-funnel-step { text-align: left; height: 100%; }
.leadgen-pricing-from { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }
.leadgen-steps li {
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 992px) {
	.leadgen-section { padding: 60px 0; }
	.leadgen-grid { grid-template-columns: 1fr; }
}

\t.leadgen-section { padding: 60px 0; }
\t.leadgen-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
	.hero-section h1 { font-size: 48px; }
	.masonry-wrapper { column-count: 1; }
	.capacity-banner { padding: 40px 20px; }
	.contact-hero-title { font-size: 36px; }
	.local-seo-banner { padding: 40px 20px; }
	.local-seo-form-inner { flex-direction: column; }
	.local-seo-form .local-seo-input { min-width: 100%; }
	.about-hero { padding-top: 160px; padding-bottom: 60px; }
	.about-hero-title { font-size: 36px; }
	.about-founded-desc { font-size: 1rem; }
	.results-sprints-inner { width: 90%; max-width: none; padding: 36px 24px; }
	.results-sprints-heading { font-size: 1.4rem; }
}

/* --- Free Consultation Modal --- */
.consultation-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.consultation-modal.is-open {
	opacity: 1;
	visibility: visible;
}
.consultation-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	cursor: pointer;
}
.consultation-modal-dialog {
	position: relative;
	width: 100%;
	max-width: 630px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.consultation-modal-content {
	padding: 32px;
	color: #1a1a1a;
}
.consultation-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	color: #666;
	font-size: 1.25rem;
	cursor: pointer;
	border-radius: 8px;
	transition: color 0.2s, background 0.2s;
}
.consultation-modal-close:hover {
	color: #1a1a1a;
	background: rgba(0, 0, 0, 0.06);
}
.consultation-modal-title {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 24px;
	color: #1a1a1a;
}
.consultation-step-label {
	font-size: 0.9rem;
	color: var(--brand-green);
	font-weight: 700;
	margin-bottom: 20px;
}
.consultation-row {
	display: flex;
	gap: 16px;
	margin-bottom: 18px;
}
.consultation-row .consultation-field {
	flex: 1;
	min-width: 0;
	margin-bottom: 0;
}
@media (max-width: 576px) {
	.consultation-row { flex-direction: column; gap: 0; margin-bottom: 0; }
	.consultation-row .consultation-field { margin-bottom: 18px; }
}
.consultation-field {
	margin-bottom: 18px;
}
.consultation-field label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 6px;
	color: #1a1a1a;
}
.consultation-field label .required { color: #dc3545; }
.consultation-field input,
.consultation-field select {
	width: 100%;
	padding: 12px 16px;
	font-size: 1rem;
	background: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 10px;
	color: #1a1a1a;
	transition: border-color 0.2s;
}
.consultation-field input::placeholder {
	color: #888;
}
.consultation-field input:focus,
.consultation-field select:focus {
	outline: none;
	border-color: var(--brand-green);
	background: #fff;
}
.consultation-field input.consultation-invalid,
.consultation-field select.consultation-invalid {
	border-color: #dc3545;
}
.consultation-step-actions {
	display: flex;
	gap: 12px;
	margin-top: 28px;
	flex-wrap: wrap;
}
.consultation-step-actions .btn { flex: 1; min-width: 120px; }
.consultation-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.consultation-submit .consultation-submit-text { display: inline; }
.consultation-submit.is-loading .consultation-submit-text { display: none; }
.consultation-submit .consultation-spinner {
	display: none;
	width: 20px;
	height: 20px;
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-top-color: #000;
	border-radius: 50%;
	animation: consultation-spin 0.7s linear infinite;
}
.consultation-submit.is-loading .consultation-spinner { display: inline-block !important; }
@keyframes consultation-spin {
	to { transform: rotate(360deg); }
}
.btn-outline-consultation {
	background: transparent;
	color: #1a1a1a;
	border: 2px solid #ccc;
	font-weight: 700;
	border-radius: 50px;
	padding: 12px 24px;
	transition: all 0.3s ease;
}
.btn-outline-consultation:hover {
	border-color: var(--brand-green);
	color: var(--brand-green);
}
.consultation-success { margin-top: 16px; }
.consultation-success .text-green { color: var(--brand-green) !important; }
.consultation-error { margin-top: 12px; font-size: 0.9rem; }

/* ── Contact Page Inline Two-Step Form ────────────────────────── */
.contact-inline-form-wrap {
	background: #fff;
	border-radius: 16px;
	padding: 36px 32px;
	box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.contact-inline-form .cipf-step-label {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--brand-green);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.contact-inline-form .cipf-row {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}
.contact-inline-form .cipf-field {
	flex: 1;
	min-width: 0;
}
.contact-inline-form .cipf-field label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 6px;
}
.contact-inline-form .cipf-req { color: #e53e3e; }
.contact-inline-form .cipf-field input,
.contact-inline-form .cipf-field select {
	width: 100%;
	border: 1.5px solid #d1d5db;
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 0.92rem;
	color: #111;
	background: #f9fafb;
	transition: border-color 0.2s;
	outline: none;
}
.contact-inline-form .cipf-field input:focus,
.contact-inline-form .cipf-field select:focus {
	border-color: var(--brand-green);
	background: #fff;
}
.contact-inline-form .cipf-invalid {
	border-color: #e53e3e !important;
}
.contact-inline-form .cipf-actions {
	margin-top: 20px;
}
.contact-inline-form .cipf-actions-two {
	display: flex;
	gap: 12px;
}
.contact-inline-form .cipf-prev-btn {
	background: #f3f4f6;
	color: #333;
	font-weight: 700;
	border-radius: 50px;
	border: 1.5px solid #d1d5db;
	padding: 12px 24px;
	flex: 0 0 auto;
}
.contact-inline-form .cipf-prev-btn:hover { background: #e5e7eb; }
.contact-inline-form .cipf-submit { flex: 1; }
.cipf-spinner {
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 3px solid rgba(0,0,0,0.2);
	border-top-color: #000;
	border-radius: 50%;
	animation: cipfSpin 0.7s linear infinite;
}
@keyframes cipfSpin { to { transform: rotate(360deg); } }
.cipf-success {
	background: #f0fdf4;
	border: 1.5px solid #86efac;
	border-radius: 12px;
	padding: 20px 24px;
	color: #15803d;
	font-weight: 700;
	font-size: 1rem;
	text-align: center;
}
.cipf-error {
	background: #fef2f2;
	border: 1.5px solid #fca5a5;
	border-radius: 8px;
	padding: 12px 16px;
	color: #b91c1c;
	font-size: 0.9rem;
	margin-top: 12px;
}
@media (max-width: 576px) {
	.contact-inline-form .cipf-row { flex-direction: column; gap: 0; }
	.contact-inline-form-wrap { padding: 24px 18px; }
}

/* ── Testimonial initials avatar (shown when no photo uploaded) ── */
.testimonial-initials-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #111;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	letter-spacing: 0.03em;
	border: 1.5px solid #333;
}

/* ── Mobile navbar: fixed so overflow-x:hidden on body doesn't break sticky ── */
@media (max-width: 991.98px) {
	#mainNavbar {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		z-index: 1050 !important;
		background-color: #000 !important;
	}
	body {
		padding-top: 68px;
	}
}

/* ── Resources Article Page (replaces old grid template) ──────── */
.resources-article-hero { padding: 60px 0 40px; }
.resources-article-title { font-size: clamp(1.8rem, 4vw, 3rem); color: #fff; line-height: 1.2; margin-bottom: 24px; }
.resources-article-meta { display: flex; align-items: center; gap: 14px; }
.resources-article-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand-green); flex-shrink: 0; }
.resources-article-author { display: block; font-weight: 700; color: #fff; font-size: 0.92rem; }
.resources-article-date { display: block; color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.resources-article-body { max-width: 820px; margin: 0 auto; color: rgba(255,255,255,0.88); font-size: 1.03rem; line-height: 1.85; }
.resources-article-body h1,.resources-article-body h2,.resources-article-body h3,.resources-article-body h4 { color: #fff; font-weight: 800; margin-top: 2em; margin-bottom: 0.6em; line-height: 1.25; }
.resources-article-body h2 { font-size: 1.6rem; }
.resources-article-body h3 { font-size: 1.25rem; }
.resources-article-body p { margin-bottom: 1.3em; }
.resources-article-body img { border-radius: 12px; width: 100%; height: auto; margin: 24px 0; display: block; }
.resources-article-body ul,.resources-article-body ol { padding-left: 1.5em; margin-bottom: 1.3em; }
.resources-article-body li { margin-bottom: 0.5em; }
.resources-article-body a { color: var(--brand-green); }
.resources-article-body a:hover { text-decoration: underline; }
.resources-article-body blockquote { border-left: 4px solid var(--brand-green); padding: 16px 24px; margin: 28px 0; background: rgba(255,255,255,0.04); border-radius: 0 8px 8px 0; font-style: italic; color: rgba(255,255,255,0.75); }
.resources-author-box { display: flex; align-items: flex-start; gap: 20px; max-width: 820px; margin: 48px auto 0; padding: 28px; border-top: 1px solid #2a2a2a; }
.resources-author-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand-green); flex-shrink: 0; }
.resources-author-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.resources-author-name { display: block; color: #fff; font-size: 1rem; text-decoration: none; }
.resources-author-name:hover { color: var(--brand-green); }
.resources-author-bio { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 8px; margin-bottom: 0; }
.resources-more-section { border-top: 1px solid #1a1a1a; }
.resources-more-title { font-size: 1.75rem; }
.resources-more-card { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 16px; overflow: hidden; transition: border-color 0.25s; display: block; }
.resources-more-card:hover { border-color: var(--brand-green); }
.resources-more-img { aspect-ratio: 16/9; background-size: cover; background-position: center; background-color: #0d0d0d; }
.resources-more-body { padding: 20px; }
.resources-more-card-title { font-size: 0.95rem; color: #fff; margin-bottom: 10px; line-height: 1.4; }
.resources-more-read { font-size: 0.85rem; color: var(--brand-green); font-weight: 700; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ECOMMERCE SERVICE PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Hero */
.ecom-hero-section { background: #000; color: #fff; padding: 100px 0 80px; text-align: center; }
.ecom-hero-eyebrow { display: inline-block; background: rgba(0,230,91,0.12); color: var(--brand-green); border: 1px solid rgba(0,230,91,0.3); border-radius: 30px; padding: 6px 20px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 24px; }
.ecom-hero-section h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; max-width: 820px; margin: 0 auto 24px; }
.ecom-hero-subtitle { color: rgba(255,255,255,0.7); max-width: 640px; margin: 0 auto 36px; font-size: 1.05rem; line-height: 1.7; }

/* Stats */
.ecom-stats-section { border-top: 1px solid #1a1a1a; }
.ecom-stat-card { background: #111; border: 1px solid #222; border-radius: 14px; padding: 24px 12px; height: 100%; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: border-color 0.25s; }
.ecom-stat-card:hover { border-color: var(--brand-green); }
.ecom-stat-num { font-size: 2rem; font-weight: 800; color: var(--brand-green); line-height: 1; }
.ecom-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; text-align: center; }

/* Features */
.ecom-features-section { border-top: 1px solid #1a1a1a; }
.ecom-feature-card { background: #111; border: 1px solid #222; border-radius: 16px; padding: 32px 28px; height: 100%; display: flex; flex-direction: column; gap: 12px; transition: border-color 0.25s, transform 0.25s; }
.ecom-feature-card:hover { border-color: var(--brand-green); transform: translateY(-4px); }
.ecom-feature-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(0,230,91,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--brand-green); flex-shrink: 0; }
.ecom-feature-title { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0; }
.ecom-feature-desc { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.65; margin: 0; }
.ecom-feature-cta-card { background: linear-gradient(135deg, #0d1f14, #0a1a11); border-color: rgba(0,230,91,0.25); }

/* Case Studies */
.ecom-cases-section { border-top: 1px solid #1a1a1a; }
.ecom-case-row { padding-bottom: 48px; border-bottom: 1px solid #1a1a1a; }
.ecom-case-row:last-child { border-bottom: none; padding-bottom: 0; }
.ecom-case-title { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
.ecom-case-img-wrap img { border: 1px solid #222; }
.ecom-case-stat { background: #111; border: 1px solid #222; border-radius: 12px; padding: 16px 24px; display: flex; flex-direction: column; gap: 4px; min-width: 130px; }
.ecom-case-stat-num { font-size: 1.7rem; font-weight: 800; color: var(--brand-green); line-height: 1; }
.ecom-case-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; }

/* Process */
.ecom-process-section { background: #0a0a0a; color: #fff; }
.ecom-process-steps { display: flex; flex-direction: column; gap: 0; }
.ecom-process-step { display: flex; align-items: flex-start; gap: 20px; padding: 24px 0; border-bottom: 1px solid #1f1f1f; }
.ecom-process-step:last-child { border-bottom: none; }
.ecom-process-step-num { font-size: 1.5rem; font-weight: 800; color: var(--brand-green); width: 48px; flex-shrink: 0; }

/* Comparison */
.ecom-compare-section { border-top: 1px solid #1a1a1a; }
.ecom-compare-table { border-radius: 16px; overflow: hidden; border: 1px solid #222; }
.ecom-compare-header, .ecom-compare-row, .ecom-compare-footer { display: grid; grid-template-columns: 180px 1fr 1fr; }
.ecom-compare-header { background: #111; padding: 20px 24px; border-bottom: 1px solid #222; }
.ecom-compare-us-col, .ecom-compare-them-col, .ecom-compare-label-col { padding: 8px 16px; display: flex; align-items: flex-start; gap: 10px; }
.ecom-compare-us-name { font-size: 1.1rem; font-weight: 800; color: var(--brand-green); }
.ecom-compare-them-col > span:first-child { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.4); }
.ecom-compare-row { background: #0d0d0d; border-bottom: 1px solid #1a1a1a; padding: 20px 8px; }
.ecom-compare-row:hover { background: #131313; }
.ecom-compare-label-col { align-items: center; padding: 8px 24px; }
.ecom-compare-row-label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.ecom-compare-check { color: var(--brand-green); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.ecom-compare-x { color: #e74c3c; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.ecom-compare-us-col span, .ecom-compare-them-col span { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.5; }
.ecom-compare-footer { background: #111; padding: 20px 8px; }
.ecom-compare-verdict-us { color: var(--brand-green); font-weight: 800; font-size: 0.95rem; }
.ecom-compare-verdict-them { color: rgba(255,255,255,0.35); font-size: 0.88rem; font-style: italic; }
@media (max-width: 767px) {
	.ecom-compare-header, .ecom-compare-row, .ecom-compare-footer { grid-template-columns: 1fr; }
	.ecom-compare-label-col { padding: 12px 16px 4px; }
	.ecom-compare-header .ecom-compare-label-col { display: none; }
	.ecom-compare-us-col, .ecom-compare-them-col { padding: 8px 16px; }
	.ecom-compare-them-col { border-top: 1px solid #1e1e1e; }
}

/* Mid CTA */
.ecom-mid-cta-section { background: linear-gradient(135deg, #0d1f14, #000); color: #fff; }
.ecom-mid-cta-section h2 { max-width: 720px; margin: 0 auto 16px; }

/* Guarantee */
.ecom-guarantee-section { border-top: 1px solid #1a1a1a; }
.ecom-guarantee-quote-card { background: #111; border: 1px solid #222; border-radius: 20px; padding: 40px; position: relative; }
.ecom-guarantee-quote-card::before { content: '\201C'; font-size: 6rem; color: var(--brand-green); position: absolute; top: -20px; left: 30px; line-height: 1; font-family: Georgia, serif; opacity: 0.4; }
.ecom-guarantee-quote-text { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.85); font-style: italic; margin-bottom: 28px; }
.ecom-guarantee-author { display: flex; align-items: center; gap: 14px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOW IT WORKS â€“ WHY WORK WITH US  (template-how-it-works-new)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Hero */
.hiw-hero-section { background: #000; padding: 60px 0 40px; border-bottom: 1px solid #1a1a1a; }
.hiw-breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.hiw-breadcrumb a { color: var(--brand-green); text-decoration: none; }
.hiw-breadcrumb a:hover { text-decoration: underline; }
.hiw-page-title { font-size: clamp(1.9rem, 4vw, 3rem); color: #fff; margin-bottom: 24px; line-height: 1.2; }
.hiw-meta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hiw-meta-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand-green); flex-shrink: 0; }
.hiw-meta-avatar-initials { background: #111; color: var(--brand-green); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; }
.hiw-meta-info { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 0; }
.hiw-meta-author { color: #fff; font-weight: 700; font-size: 0.88rem; }
.hiw-meta-divider { color: rgba(255,255,255,0.3); margin: 0 6px; }
.hiw-meta-date, .hiw-meta-read { color: rgba(255,255,255,0.45); font-size: 0.83rem; }

/* Body */
.hiw-body-section { background: #fff; padding: 60px 0 80px; }
.hiw-intro-text { font-size: 1.1rem; line-height: 1.8; color: #222; margin-bottom: 40px; border-left: 4px solid var(--brand-green); padding-left: 20px; font-style: italic; }

/* Each article section */
.hiw-section { margin-bottom: 48px; }
.hiw-section-eyebrow { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-green); margin-bottom: 10px; }
.hiw-section-heading { font-size: clamp(1.3rem, 2.5vw, 1.75rem); color: #111; margin-bottom: 24px; }
.hiw-section-img-wrap { margin-bottom: 28px; border-radius: 12px; overflow: hidden; }
.hiw-section-img { width: 100%; max-height: 360px; object-fit: cover; display: block; border-radius: 12px; }
.hiw-section-body { color: #333; font-size: 0.97rem; line-height: 1.85; }
.hiw-section-body p { margin-bottom: 1.2em; }
.hiw-section-body ul { padding-left: 1.5em; margin-bottom: 1.2em; }
.hiw-section-body li { margin-bottom: 0.5em; }
.hiw-section-body strong { color: #111; }
.hiw-section-body em { font-style: italic; }
.hiw-divider { border-color: #eee; margin: 8px 0 40px; }

/* Author box */
.hiw-author-box { display: flex; align-items: flex-start; gap: 20px; background: #f8f8f8; border: 1px solid #e8e8e8; border-radius: 16px; padding: 28px; margin-top: 48px; }
.hiw-author-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--brand-green); flex-shrink: 0; }
.hiw-author-avatar-initials { background: #111; color: var(--brand-green); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; }
.hiw-author-info { display: flex; flex-direction: column; gap: 4px; }
.hiw-author-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: #999; }
.hiw-author-name { font-size: 1.05rem; font-weight: 800; color: #111; }
.hiw-author-role { font-size: 0.85rem; color: var(--brand-green); font-weight: 600; }
.hiw-author-bio { font-size: 0.88rem; color: #555; line-height: 1.65; margin-top: 8px; margin-bottom: 0; }

/* Sidebar */
.hiw-sidebar-sticky { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.hiw-sidebar-cta-card { background: #111; border-radius: 20px; padding: 32px 28px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.hiw-sidebar-cta-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(0,230,91,0.12); border: 1.5px solid rgba(0,230,91,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--brand-green); }
.hiw-sidebar-cta-heading { font-size: 1.15rem; color: #fff; margin: 0; }
.hiw-sidebar-cta-text { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }
.hiw-sidebar-toc { background: #f4f6f8; border: 1px solid #e8e8e8; border-radius: 16px; padding: 24px; }
.hiw-sidebar-toc-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #777; margin-bottom: 16px; }
.hiw-sidebar-toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.hiw-sidebar-toc-list li { font-size: 0.85rem; color: #333; display: flex; align-items: flex-start; gap: 4px; line-height: 1.4; }
.hiw-sidebar-toc-list li i { color: var(--brand-green); flex-shrink: 0; margin-top: 2px; font-size: 1rem; }

/* More section */
.hiw-more-section { background: #000; border-top: 1px solid #1a1a1a; }
.hiw-more-title { color: #fff; }
.hiw-more-card { background: #111; border: 1px solid #222; border-radius: 16px; overflow: hidden; display: block; text-decoration: none; transition: border-color 0.25s, transform 0.25s; }
.hiw-more-card:hover { border-color: var(--brand-green); transform: translateY(-4px); text-decoration: none; }
.hiw-more-img { aspect-ratio: 16/9; background-size: cover; background-position: center; background-color: #0d0d0d; }
.hiw-more-body { padding: 20px; }
.hiw-more-card-title { font-size: 0.95rem; color: #fff; margin-bottom: 10px; line-height: 1.45; font-weight: 600; }
.hiw-more-read { font-size: 0.83rem; color: var(--brand-green); font-weight: 700; }

/* Bottom CTA banner */
.hiw-cta-banner { background: linear-gradient(135deg, #0d1f14, #000); color: #fff; }
.hiw-cta-banner-label { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-green); margin-bottom: 12px; }
.hiw-cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

/* Mobile */
@media (max-width: 767px) {
	.hiw-meta-info { flex-direction: column; align-items: flex-start; gap: 2px; }
	.hiw-meta-divider { display: none; }
	.hiw-author-box { flex-direction: column; }
	.hiw-sidebar-sticky { position: static; }
}

/* Testimonial sections: one block per row on mobile (home, contact, results) */
@media (max-width: 991.98px) {
	.masonry-wrapper { column-count: 1 !important; column-gap: 0; }
	.masonry-wrapper .review-card,
	.masonry-wrapper .review-video { max-width: 100%; width: 100%; }
	.results-scroller-item { flex: 0 0 100% !important; min-width: 100%; }
	.results-two-testimonials-scroller .results-scroller-viewport { overflow-x: hidden; }
}

/* Mobile: prevent trusted logos / "BRANDS" section overlapping hero (on-page-seo, ecommerce, etc.) */
@media (max-width: 991.98px) {
	.seo-service-hero,
	.leadgen-hero-section {
		padding-top: 32px;
		padding-bottom: 48px;
		min-height: 200px;
		display: block;
	}
	/* Space outside the eyebrow: section padding pushes the whole element down below sticky menu */
	.ecom-hero-section {
		padding-top: 170px !important;
		padding-bottom: 48px;
		min-height: 200px;
		display: block;
		box-sizing: border-box;
	}
	.ecom-hero-eyebrow {
		margin-top: 0 !important;
		padding-top: 0 !important;
		box-sizing: border-box;
	}
	.trusted-logos-section {
		margin-top: 0;
		padding-top: 32px;
		padding-bottom: 48px;
		clear: both;
	}
}

/* Results page scroller spacing tweak */
.results-two-testimonials-scroller { padding-bottom: 40px; }

