/*
Theme Name: SWYCH MEDIA Theme (Neutral Old-School)
Theme URI: https://github.com/google-deepmind/antigravity
Author: Antigravity
Author URI: https://github.com/google-deepmind/antigravity
Description: A minimalist, neutral, old-school corporate WordPress theme for SWYCH MEDIA. Features perfectly square edges (0px border-radius), light heading font-weights (700 and 600 max), thin solid borders, high-focus content layout, and extremely sparse orange accents.
Version: 5.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: swychmedia
*/

/* ----------------------------------------------------
   1. DESIGN SYSTEM & VARIABLES (Neutral Old-School)
---------------------------------------------------- */
:root {
	--primary: #1d212c;          /* Neutral dark slate for buttons and hovers */
	--primary-dark: #111111;     /* Black for active elements */
	--secondary: #808285;        /* Neutral gray for text and borders */
	--border-color: #d1d5db;     /* Crisp thin border line */
	--dark: #1d212c;
	--dark-bg: #151821;
	--light: #ffffff;
	--bg-light: #f9fafb;
	
	--brand-orange: #F25C22;     /* Brand orange reserved ONLY for tiny highlight markers */
	
	--text-dark: #111111;
	--text-body: #4b5563;
	--text-light: #888888;
	--text-white: #ffffff;
	
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ----------------------------------------------------
   2. RESET & BASE STYLES
---------------------------------------------------- */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border-radius: 0px !important; /* Enforce strict square corners */
}

body {
	font-family: var(--font-sans);
	color: var(--text-body);
	background-color: var(--light);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.15s ease-in-out;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Less thicker header font weights (700 and 600) */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-sans);
	color: var(--text-dark);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.5px;
}

h1 { font-size: 32px; }
h2 { font-size: 24px; font-weight: 700; }
h3 { font-size: 18px; font-weight: 700; }
h4 { font-size: 15px; font-weight: 600; }

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* ----------------------------------------------------
   3. BUTTONS (Zero Radius, Strict Dark/Outline)
---------------------------------------------------- */
.btn-factory {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.15s ease-in-out;
}

.btn-factory-orange {
	background-color: var(--primary); 
	color: var(--text-white);
}

.btn-factory-orange:hover {
	background-color: var(--brand-orange); /* Subtle orange hover accent */
}

.btn-factory-dark {
	background-color: var(--primary);
	color: var(--text-white);
	border: 1px solid var(--primary);
}

.btn-factory-dark:hover {
	background-color: var(--brand-orange); /* Subtle orange hover accent */
	border-color: var(--brand-orange);
}

.btn-factory-outline {
	background-color: transparent;
	border: 1px solid var(--border-color);
	color: var(--text-dark);
}

.btn-factory-outline:hover {
	border-color: var(--brand-orange);
	color: var(--brand-orange);
}

.btn-factory-outline-white {
	background-color: transparent;
	border: 1px solid var(--text-white);
	color: var(--text-white);
}

.btn-factory-outline-white:hover {
	background-color: var(--brand-orange); /* Subtle orange hover accent */
	border-color: var(--brand-orange);
}

/* ----------------------------------------------------
   4. HEADER (Factory Layout Structure - Less Thick Logo)
---------------------------------------------------- */
.site-header-factory {
	background-color: var(--light);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 99999;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 4.1 TOP BAR */
.header-top-bar {
	background-color: var(--dark);
	color: rgba(255, 255, 255, 0.7);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.5px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-top-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 8px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-top-left span.sep {
	margin: 0 10px;
	color: rgba(255, 255, 255, 0.15);
}

.header-search-form {
	display: flex;
	align-items: center;
}

.search-field-factory {
	background-color: rgba(255, 255, 255, 0.08);
	border: none;
	padding: 6px 12px;
	color: var(--text-white);
	font-size: 11px;
	width: 150px;
	outline: none;
}

.search-submit-factory {
	background-color: var(--primary);
	border: none;
	color: var(--text-white);
	padding: 6px 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-submit-factory:hover {
	background-color: var(--brand-orange); /* Orange hover accent */
}

/* 4.2 BRANDING BAR (Less Thick Branding Fonts) */
.header-branding-bar {
	border-bottom: 1px solid var(--border-color);
}

.header-branding-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 24px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.custom-logo-link text {
	font-weight: 800; 
}

.header-info-widgets {
	display: flex;
	gap: 40px;
}

.info-widget {
	display: flex;
	align-items: center;
	gap: 12px;
}

.info-widget .widget-num {
	font-size: 24px;
	font-weight: 700;
	color: var(--brand-orange); /* Re-introduced orange for numbers, very clean! */
	line-height: 1;
}

.info-widget .widget-text {
	display: flex;
	flex-direction: column;
}

.info-widget .widget-text strong {
	font-size: 11px;
	font-weight: 700;
	color: var(--text-dark);
	text-transform: uppercase;
}

.info-widget .widget-text span {
	font-size: 11px;
	color: var(--text-light);
}

/* 4.3 NAVIGATION MENU BAR (Standard Grey Block Hover) */
.header-navigation-bar {
	background-color: var(--light);
}

.header-navigation-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-menu-factory {
	display: flex;
	list-style: none;
}

.nav-menu-factory li a {
	display: block;
	padding: 20px 24px;
	font-size: 12px;
	font-weight: 700;
	color: var(--text-dark);
	letter-spacing: 0.5px;
	border-right: 1px solid var(--border-color);
	border-top: 3px solid transparent; /* Prepare top border hover */
}

.nav-menu-factory li:first-child a {
	border-left: 1px solid var(--border-color);
}

.nav-menu-factory li a:hover,
.nav-menu-factory li.active a {
	border-top-color: var(--brand-orange); /* Elegant top border highlight instead of background block */
	color: var(--brand-orange);
	background-color: transparent;
}

/* Solutions Hover Dropdown Styles */
.nav-menu-factory li {
	position: relative;
}

.nav-menu-factory li .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--text-white);
	border: 1px solid var(--border-color);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	padding: 10px 0;
	min-width: 250px;
	z-index: 9999;
	list-style: none;
	margin: 0;
}

.nav-menu-factory li:hover > .sub-menu {
	display: block;
}

.nav-menu-factory li .sub-menu li {
	width: 100%;
}

.nav-menu-factory li .sub-menu li a {
	padding: 12px 20px;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--text-dark);
	border-right: none;
	border-left: none;
	border-top: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.03);
	text-align: left;
	letter-spacing: 0px;
	text-transform: none;
	transition: background-color 0.2s, color 0.2s;
	display: block;
}

.nav-menu-factory li .sub-menu li:last-child a {
	border-bottom: none;
}

.nav-menu-factory li .sub-menu li a:hover {
	background-color: #f9fafb;
	color: var(--brand-orange);
	border-top-color: transparent;
}


.mobile-only-cta {
	display: none;
}

.header-action-buttons {
	display: flex;
	gap: 12px;
}

.menu-toggle-factory {
	display: none;
	background: var(--dark);
	border: none;
	color: var(--text-white);
	padding: 12px 20px;
	font-weight: 700;
	cursor: pointer;
	text-transform: uppercase;
}

/* ----------------------------------------------------
   5. HERO SECTION (Factory Overlay Box - Thin Border)
---------------------------------------------------- */
.hero-section-factory {
	position: relative;
	height: 440px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}

.hero-overlay-factory {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.15);
}

.hero-container-factory {
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.hero-card-factory {
	background-color: rgba(29, 33, 44, 0.95);
	border: 2px solid var(--border-color); 
	padding: 40px;
	max-width: 540px;
	color: var(--text-white);
}

.hero-card-factory h1 {
	font-size: 28px;
	font-weight: 700; 
	color: var(--text-white); 
	margin-bottom: 16px;
	line-height: 1.25;
}

.hero-card-factory p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 24px;
	line-height: 1.6;
}

/* ----------------------------------------------------
   6. FULL-WIDTH TEXT INTRO
---------------------------------------------------- */
.intro-text-section {
	padding: 50px 20px;
	background-color: var(--light);
	border-bottom: 1px solid var(--border-color);
}

.intro-text-container {
	max-width: 1240px;
	margin: 0 auto;
}

.intro-text-container p {
	font-size: 16px;
	color: var(--text-body);
	line-height: 1.7;
	max-width: 1000px;
}

.intro-text-container a {
	color: var(--brand-orange); /* Orange inline links */
	font-weight: 700;
	border-bottom: 1px solid var(--brand-orange);
}

.intro-text-container a:hover {
	color: var(--primary-dark);
	border-color: var(--primary-dark);
}

/* ----------------------------------------------------
   7. SERVICES GRID (Neutral Text Titles)
---------------------------------------------------- */
.client-logos-section {
	padding: 40px 20px;
	background-color: var(--light);
	border-bottom: 1px solid var(--border-color);
}

.client-logos-container {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.client-logo-item-color {
	flex-grow: 1;
	flex-basis: 12%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	transition: all 0.2s ease;
}

.client-logo-item-color:hover {
	transform: scale(1.08);
}

.client-logo-item-color svg {
	max-height: 35px;
	max-width: 120px;
	width: auto;
	height: auto;
}

.services-section-factory {
	padding: 70px 20px;
	background-color: var(--bg-light);
	border-bottom: 1px solid var(--border-color);
}

.services-container-factory {
	max-width: 1240px;
	margin: 0 auto;
}

.services-grid-factory {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.service-card-factory {
	background-color: var(--light);
	border: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.service-card-img {
	height: 280px;
	overflow: hidden;
}

.service-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card-content {
	padding: 24px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.service-card-content h3 {
	font-size: 15px;
	font-weight: 700; 
	margin-bottom: 12px;
}

.service-card-content h3 a {
	color: var(--text-dark); 
}

.service-card-content h3 a:hover {
	color: var(--brand-orange); /* Subtle orange title hover */
}

.service-card-content p {
	font-size: 13px;
	color: var(--text-body);
	line-height: 1.6;
}

/* ----------------------------------------------------
   8. SPOTLIGHT CASE STUDY (New Section)
---------------------------------------------------- */
.spotlight-section {
	padding: 80px 20px;
	background-color: var(--light);
	border-bottom: 1px solid var(--border-color);
}

.spotlight-container {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 60px;
}

.spotlight-content h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.spotlight-content p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-body);
	margin-bottom: 30px;
}

.spotlight-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid var(--border-color);
	background-color: var(--bg-light);
}

.spotlight-stat-item {
	padding: 24px;
	border-right: 1px solid var(--border-color);
	text-align: center;
}

.spotlight-stat-item:last-child {
	border-right: none;
}

.spotlight-stat-val {
	font-size: 24px;
	font-weight: 700;
	color: var(--brand-orange); /* Orange metrics values */
	display: block;
	margin-bottom: 4px;
}

.spotlight-stat-lbl {
	font-size: 11px;
	text-transform: uppercase;
	color: var(--text-light);
	font-weight: 700;
	letter-spacing: 0.5px;
}

/* ----------------------------------------------------
   9. ABOUT SECTION & PARTNERS
---------------------------------------------------- */
.about-section-factory {
	padding: 80px 20px;
	background-color: var(--light);
	border-bottom: 1px solid var(--border-color);
}

.about-container-factory {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 60px;
}

.section-sidebar-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
	letter-spacing: -0.5px;
	position: relative;
	text-transform: uppercase;
}

/* Minimalist orange heading accent line */
.section-sidebar-title h2::after {
	content: '';
	display: block;
	width: 25px;
	height: 2px;
	background-color: var(--brand-orange);
	margin-top: 10px;
}

.about-content-factory p {
	font-size: 14px;
	color: var(--text-body);
	line-height: 1.7;
	margin-bottom: 24px;
}

.about-partners-grid {
	margin-top: 40px;
	border-top: 1px solid var(--border-color);
	border-left: 1px solid var(--border-color);
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

.partner-logo-item {
	padding: 20px;
	border-right: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
}

.partner-logo-item span {
	font-size: 12px;
	font-weight: 700;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ----------------------------------------------------
   10. TIMELINE / MILESTONES (New Section)
---------------------------------------------------- */
.timeline-section {
	padding: 80px 20px;
	background-color: var(--bg-light);
	border-bottom: 1px solid var(--border-color);
}

.timeline-container {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 60px;
}

.timeline-flow {
	display: flex;
	flex-direction: column;
	border-left: 1px solid var(--border-color);
	padding-left: 30px;
	gap: 30px;
}

.timeline-item {
	position: relative;
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: -35px;
	top: 6px;
	width: 9px;
	height: 9px;
	background-color: var(--brand-orange); /* Orange bullets */
	border: 1px solid var(--brand-orange);
}

.timeline-year {
	font-size: 15px;
	font-weight: 700;
	color: var(--brand-orange); /* Orange timeline years */
	display: block;
	margin-bottom: 6px;
}

.timeline-text h4 {
	font-size: 14px;
	margin-bottom: 4px;
}

.timeline-text p {
	font-size: 13px;
	color: var(--text-body);
}

/* ----------------------------------------------------
   11. FAQ GRID SECTION (New Section)
---------------------------------------------------- */
.faq-section {
	padding: 80px 20px;
	background-color: var(--light);
	border-bottom: 1px solid var(--border-color);
}

.faq-container {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 60px;
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.faq-item h4 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--text-dark);
}

.faq-item p {
	font-size: 13px;
	line-height: 1.6;
	color: var(--text-body);
}

/* ----------------------------------------------------
   12. TESTIMONIALS ("What has been said")
---------------------------------------------------- */
.testimonials-section-factory {
	padding: 80px 20px;
	background-color: var(--bg-light);
	border-bottom: 1px solid var(--border-color);
}

.testimonials-container-factory {
	max-width: 1240px;
	margin: 0 auto;
}

.testimonials-section-factory h2.title {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
	text-transform: uppercase;
}

.testimonials-grid-factory {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.testimonial-card-factory {
	background-color: var(--light);
	border: 1px solid var(--border-color);
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-card-factory p {
	font-size: 13px;
	color: var(--text-body);
	line-height: 1.6;
	font-style: italic;
	margin-bottom: 20px;
}

.testimonial-card-factory .reviewer-info {
	display: flex;
	align-items: center;
	gap: 12px;
	border-top: 1px dashed var(--border-color);
	padding-top: 15px;
}

.testimonial-card-factory .reviewer-img {
	width: 40px;
	height: 40px;
	overflow: hidden;
}

.testimonial-card-factory .reviewer-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-card-factory .reviewer-details {
	display: flex;
	flex-direction: column;
}

.testimonial-card-factory .reviewer-name {
	font-size: 12px;
	font-weight: 700;
	color: var(--text-dark);
}

.testimonial-card-factory .reviewer-role {
	font-size: 11px;
	color: var(--text-light);
}

/* ----------------------------------------------------
   13. ACCENT QUOTE BANNER (Neutral Slate Background)
---------------------------------------------------- */
.quote-banner-factory {
	background-color: var(--primary); 
	color: var(--text-white);
	padding: 50px 20px;
}

.quote-banner-container-factory {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.quote-banner-factory blockquote {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.55;
	font-style: italic;
}

/* ----------------------------------------------------
   14. OUR TEAM SECTION
---------------------------------------------------- */
.team-section-factory {
	padding: 80px 20px;
	background-color: var(--light);
	border-bottom: 1px solid var(--border-color);
}

.team-container-factory {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 60px;
}

.team-grid-factory {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.team-card-factory {
	border: 1px solid var(--border-color);
	background-color: var(--light);
}

.team-card-img {
	height: 200px;
	overflow: hidden;
}

.team-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-card-content {
	padding: 16px;
	text-align: center;
}

.team-card-content h4 {
	font-size: 13px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 4px;
}

.team-card-content span {
	font-size: 11px;
	color: var(--text-light);
}

/* ----------------------------------------------------
   15. TEXT-ONLY RESOURCES & NEWS (New Section)
---------------------------------------------------- */
.resources-section {
	padding: 80px 20px;
	background-color: var(--bg-light);
	border-bottom: 1px solid var(--border-color);
}

.resources-container {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 60px;
}

.resources-list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--border-color);
}

.resource-post-row {
	display: grid;
	grid-template-columns: 120px 150px 1fr;
	padding: 20px 0;
	border-bottom: 1px solid var(--border-color);
	font-size: 13px;
	align-items: center;
}

.resource-post-row .post-date {
	color: var(--text-light);
	font-weight: 500;
}

.resource-post-row .post-cat {
	color: var(--brand-orange); /* Sparse brand orange tag highlight */
	font-weight: 700;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.5px;
}

.resource-post-row .post-title-link {
	font-weight: 700;
	color: var(--text-dark);
}

.resource-post-row .post-title-link:hover {
	color: var(--brand-orange);
	text-decoration: underline;
}

/* ----------------------------------------------------
   16. CONTACT & NEWSLETTER
---------------------------------------------------- */
.contact-section-factory {
	padding: 80px 20px;
	background-color: var(--dark-bg);
}

.contact-container-factory {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 60px;
}

.contact-content-factory {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.contact-info-block p {
	font-size: 14px;
	color: var(--text-body);
	line-height: 1.7;
	margin-bottom: 24px;
}

.contact-info-block a {
	color: var(--brand-orange);
	font-weight: 700;
	border-bottom: 1px solid var(--brand-orange);
}

.contact-info-block a:hover {
	color: var(--primary-dark);
	border-color: var(--primary-dark);
}

.contact-form-block-factory {
	border-left: 1px solid var(--border-color);
	padding-left: 40px;
}

.contact-form-block-factory h4 {
	font-size: 13px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 20px;
	text-transform: uppercase;
}

.newsletter-input-group-factory {
	display: flex;
	margin-bottom: 25px;
}

.newsletter-input-group-factory input {
	flex-grow: 1;
	border: 1px solid var(--border-color);
	border-right: none;
	padding: 12px 16px;
	outline: none;
	font-family: var(--font-sans);
	font-size: 13px;
}

.newsletter-input-group-factory button {
	background-color: var(--primary); 
	border: none;
	color: var(--text-white);
	padding: 0 24px;
	font-weight: 700;
	font-size: 12px;
	cursor: pointer;
	text-transform: uppercase;
}

.newsletter-input-group-factory button:hover {
	background-color: var(--brand-orange); /* Orange hover accent */
}

.contact-social-links-factory {
	display: flex;
	gap: 20px;
	align-items: center;
}

.contact-social-links-factory a {
	font-size: 11px;
	font-weight: 700;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-social-links-factory a:hover {
	color: var(--brand-orange);
}

/* ----------------------------------------------------
   17. FOOTER (Factory Dark Style)
---------------------------------------------------- */
.site-footer-factory {
	background-color: var(--dark-bg);
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	line-height: 1.6;
}

.footer-container-factory {
	max-width: 1240px;
	margin: 0 auto;
	padding: 70px 20px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.footer-col-factory h3 {
	color: var(--text-white);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 25px;
	padding-bottom: 12px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.05);
	position: relative;
	text-transform: uppercase;
}

.footer-col-factory h3::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--brand-orange); /* Re-introduced orange accent underlines */
}

.footer-about-widget {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-about-img {
	height: 90px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer-links-list-factory {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links-list-factory li a {
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.6);
}

.footer-links-list-factory li a span.arrow {
	margin-right: 8px;
	color: var(--brand-orange); /* Orange arrows instead of dark slate */
	font-size: 10px;
	transition: all 0.2s ease;
}

.footer-links-list-factory li a:hover {
	color: var(--text-white);
}

.footer-links-list-factory li a:hover span.arrow {
	transform: translateX(3px);
}

.footer-contact-list-factory {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-contact-list-factory li strong {
	color: var(--text-white);
}

/* SUBFOOTER */
.subfooter-factory {
	background-color: rgba(0, 0, 0, 0.25);
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	padding: 20px 20px;
}

.subfooter-container-factory {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 11px;
}

.subfooter-right a {
	color: rgba(255, 255, 255, 0.4);
}

.subfooter-right a:hover {
	color: var(--text-white);
}

.subfooter-right span.sep {
	margin: 0 10px;
	color: rgba(255, 255, 255, 0.1);
}

/* ----------------------------------------------------
   18. RESPONSIVE MEDIA QUERIES (Factory Layout)
---------------------------------------------------- */
@media (max-width: 1024px) {
	.header-info-widgets {
		display: none;
	}
	
	.hero-section-factory {
		height: auto;
		padding: 60px 0;
	}
	
	.hero-container-factory {
		display: flex;
		justify-content: center;
	}
	
	.hero-card-factory {
		max-width: 100%;
	}
	
	.services-grid-factory {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.about-container-factory,
	.spotlight-container,
	.timeline-container,
	.faq-container,
	.resources-container,
	.team-container-factory,
	.contact-container-factory {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.testimonials-grid-factory {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.team-grid-factory {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-container-factory {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 991px) {
	.header-top-bar {
		display: none !important;
	}

	.site-header-factory {
		position: relative;
	}

	.menu-toggle-factory {
		display: block;
		position: absolute;
		top: 25px;
		right: 20px;
		background: none;
		border: none;
		color: var(--text-dark);
		padding: 8px;
		cursor: pointer;
		outline: none;
		z-index: 10000;
	}
	
	.main-navigation-factory {
		width: 100%;
		display: block !important;
	}
	
	.nav-menu-factory {
		display: none;
		flex-direction: column;
		width: 100%;
		background-color: var(--text-white);
		border-top: 1px solid var(--border-color);
	}
	
	.main-navigation-factory.toggled .nav-menu-factory {
		display: flex;
	}
	
	.nav-menu-factory li a {
		border-right: none;
		border-bottom: 1px solid var(--border-color);
		padding: 15px;
	}
	
	.nav-menu-factory li:first-child a {
		border-left: none;
		border-top: none;
	}

	.mobile-only-cta {
		display: block;
	}

	.nav-menu-factory li .sub-menu {
		position: relative;
		top: 0;
		box-shadow: none;
		border: none;
		width: 100%;
		background-color: #fcfcfc;
		padding: 0;
		display: block;
		min-width: unset;
	}

	.nav-menu-factory li .sub-menu li a {
		padding: 12px 15px 12px 35px;
		border-bottom: 1px solid var(--border-color);
	}
	
	.header-navigation-container {
		flex-direction: column;
		align-items: flex-start;
		padding: 10px 20px;
	}
	
	.header-action-buttons {
		display: none !important;
	}
	
	.services-grid-factory {
		grid-template-columns: 1fr;
	}
	
	.about-partners-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.faq-grid {
		grid-template-columns: 1fr;
	}
	
	.resources-list {
		font-size: 12px;
	}
	
	.resource-post-row {
		grid-template-columns: 100px 110px 1fr;
	}
	
	.testimonials-grid-factory {
		grid-template-columns: 1fr;
	}
	
	.team-grid-factory {
		grid-template-columns: 1fr;
	}
	
	.contact-content-factory {
		grid-template-columns: 1fr;
	}
	
	.contact-form-block-factory {
		border-left: none;
		padding-left: 0;
		border-top: 1px solid var(--border-color);
		padding-top: 30px;
	}
	
	.footer-col-factory h3::after {
		background-color: var(--brand-orange);
	}

	.footer-container-factory {
		grid-template-columns: 1fr;
	}
	
	.subfooter-container-factory {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
}

/* ----------------------------------------------------
   14. SEO SERVICE SINGLE PAGE (Navigator & Split Layout)
---------------------------------------------------- */
.seo-split-hero {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	min-height: 520px;
	border-bottom: 1px solid var(--border-color);
	background-color: #111111;
}

.seo-hero-info {
	padding: 80px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: var(--light);
}

.seo-hero-info h1 {
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.25;
	color: var(--light);
}

.seo-hero-info p {
	font-size: 16px;
	line-height: 1.65;
	color: var(--text-light);
	margin-bottom: 30px;
}

.seo-hero-image-side {
	background-size: cover;
	background-position: center;
	min-height: 100%;
}

.seo-layout-wrapper {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 60px;
	padding: 80px 20px;
}

.seo-sidebar {
	position: sticky;
	top: 120px;
	height: fit-content;
}

.seo-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	border-left: 1px solid var(--border-color);
}

.seo-nav-list li {
	margin-bottom: 22px;
}

.seo-nav-list a {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	color: var(--text-body);
	text-decoration: none;
	padding-left: 20px;
	position: relative;
	transition: all 0.2s ease;
}

.seo-nav-list a span {
	font-size: 13px;
	color: var(--text-light);
	margin-right: 16px;
	font-weight: 400;
}

.seo-nav-list a:hover,
.seo-nav-list a.active {
	color: var(--brand-orange);
}

.seo-nav-list a::before {
	content: '';
	position: absolute;
	left: -1px;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: transparent;
	transition: background-color 0.2s ease;
}

.seo-nav-list a.active::before {
	background-color: var(--brand-orange);
}

.seo-content-area {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.seo-section-topic {
	scroll-margin-top: 140px;
}

.seo-section-topic h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-dark);
}

.seo-section-topic p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-body);
	margin-bottom: 24px;
}

.seo-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.seo-grid-3-card {
	padding: 24px;
	border: 1px solid var(--border-color);
	background-color: var(--bg-light);
}

.seo-grid-3-card h4 {
	font-size: 15px;
	margin-bottom: 12px;
	font-weight: 700;
}

.seo-grid-3-card p {
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}

.seo-pill-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: var(--brand-orange);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

.seo-metaphor-box {
	background-color: var(--bg-light);
	border: 1px solid var(--border-color);
	padding: 24px;
	margin: 20px 0;
}

.seo-metaphor-box h4 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
}

@media (max-width: 991px) {
	.seo-split-hero {
		grid-template-columns: 1fr;
	}
	
	.seo-hero-info {
		padding: 50px 30px;
	}
	
	.seo-hero-image-side {
		height: 300px;
	}
	
	.seo-layout-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 50px 20px;
	}
	
	.seo-sidebar {
		position: relative;
		top: 0;
	}
	
	.seo-nav-list {
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		border-left: none;
		border-bottom: 1px solid var(--border-color);
		padding-bottom: 20px;
	}
	
	.seo-nav-list li {
		margin-bottom: 0;
	}
	
	.seo-nav-list a {
		padding-left: 0;
	}
	
	.seo-nav-list a::before {
		display: none;
	}
	
	.seo-grid-3 {
		grid-template-columns: 1fr;
	}
}

/* Solutions Card Number Badge */
.service-card-factory {
	position: relative;
}
.service-number-circle {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 28px;
	height: 28px;
	background-color: var(--primary);
	color: var(--text-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	z-index: 2;
	border: 2px solid var(--text-white);
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Tailored Combos Section Styles */
.combos-section-factory {
	padding: 80px 0;
	border-top: 1px solid var(--border-color);
	background-color: var(--light);
}
.combos-container-factory {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 40px;
}
.combos-content-factory h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
}
.scenarios-grid-factory {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.scenario-card-factory {
	background-color: var(--text-white);
	border: 1px solid var(--border-color);
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.scenario-card-factory h4 {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 12px;
	color: var(--text-dark);
}
.scenario-card-factory p {
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--text-muted);
	margin-bottom: 20px;
	flex-grow: 1;
}
.combo-badges {
	display: flex;
	align-items: center;
	gap: 8px;
}
.combo-plus {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-muted);
}
.combo-number {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background-color: var(--primary);
	color: var(--text-white);
	border-radius: 50%;
	font-size: 13.5px;
	font-weight: 700;
	cursor: pointer;
	border: 1px solid transparent;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}
.combo-number:hover {
	background-color: var(--brand-orange);
}
.combo-number::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 135%;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(29, 33, 44, 0.98);
	color: #fff;
	padding: 6px 12px;
	border-radius: 2px;
	font-size: 11px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 10;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.combo-number::before {
	content: '';
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX(-50%);
	border-width: 6px 6px 0;
	border-style: solid;
	border-color: rgba(29, 33, 44, 0.98) transparent transparent;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 10;
}
.combo-number:hover::after,
.combo-number:hover::before {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 768px) {
	.combos-container-factory {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.scenarios-grid-factory {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 991px) {
	.contact-container-factory {
		grid-template-columns: 1fr !important;
		gap: 40px !important;
	}
}

/* Terminology Quick Explainer Tooltips */
.term-tooltip {
	position: relative;
	cursor: help;
	border-bottom: 1px dotted var(--text-muted);
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.term-tooltip .info-icon {
	font-size: 11px;
	color: var(--brand-orange);
}
.term-tooltip::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 135%;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(29, 33, 44, 0.98);
	color: #fff;
	padding: 8px 12px;
	border-radius: 2px;
	font-size: 11.5px;
	line-height: 1.4;
	white-space: normal;
	width: 220px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 10;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
	font-weight: 500;
	text-transform: none;
	letter-spacing: normal;
	text-align: center;
}
.term-tooltip::before {
	content: '';
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX(-50%);
	border-width: 6px 6px 0;
	border-style: solid;
	border-color: rgba(29, 33, 44, 0.98) transparent transparent;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 10;
}
.term-tooltip:hover::after,
.term-tooltip:hover::before {
	opacity: 1;
	visibility: visible;
}@media (max-width: 768px) {
	.steps-flow-factory > div {
		grid-template-columns: 1fr !important;
		gap: 15px !important;
	}
	.contact-content-factory {
		grid-template-columns: 1fr !important;
		gap: 30px !important;
	}
}

@media (max-width: 991px) {
	.latest-posts-grid-factory {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 20px !important;
	}
}

@media (max-width: 575px) {
	.latest-posts-grid-factory {
		grid-template-columns: 1fr !important;
}

.tech-tooltip-term {
	position: relative;
	border-bottom: 1px dotted var(--brand-orange);
	cursor: help;
	color: inherit;
	font-weight: inherit;
	display: inline-block;
}

.tech-tooltip-term .info-icon {
	font-size: 11px;
	color: var(--brand-orange);
	margin-left: 2px;
	vertical-align: middle;
	display: inline-block;
}

.tech-tooltip-term::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 125%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #1d212c;
	color: #ffffff;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 12px;
	line-height: 1.4;
	white-space: normal;
	width: 250px;
	display: none;
	z-index: 100000;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-weight: normal;
	text-transform: none;
}

.tech-tooltip-term:hover::after {
	display: block;
}
