/* ============================================================
   BRAND SAUCE — Master Stylesheet
   Consolidated: base, nav, hero, footer, testimonials,
   home sections, platform, pricing, case-studies, about
   ============================================================ */

/* ============ Font Face ============ */
@font-face {
	font-family: "Vesterbro";
	src: url(/bsauce/fonts/VesterboPoster.woff2) format("woff2"),
		 url(/bsauce/fonts/VesterboPoster.woff) format("woff");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/* ============ Base Reset & Global ============ */
*, *:after, *:before { box-sizing: border-box; }
html, body, div, span, p, a, del, em, img, ol, ul, li, fieldset, form, label {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-family: "Archivo", sans-serif;
}
body, html {
	background-color: #f9f7f4;
	width: 100%;
	min-height: 100%;
}
body {
	padding-top: 90px;
}
html {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	overflow-x: hidden;
	font-family: 'Archivo', sans-serif;
	font-weight: 400;
	line-height: 1.65;
	color: #000;
}
h1, h2, h3, h4, h5, h6, p { margin: 0; }
img { max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

.desktop { display: block; }
.mobile { display: none; }
.cleaner {
	clear: both;
	height: 0px;
	font-size: 1px;
	border: none;
	margin: 0;
	padding: 0;
	background: transparent;
	line-height: 1px;
}
a, a:active, a:hover {
	text-decoration: none;
	color: #202020;
}


/* ============================================================
   TOP NAV
   ============================================================ */

.nav-bar {
	position: fixed;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 48px);
	padding: 15px 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.65);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nav {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
}

.logo {
	width: 200px;
	position: static;
}
.logo a { display: flex; }
.logo img { width: 100%; height: auto; }

.top-menu {
	display: flex;
	align-items: center;
	position: static;
	margin-left: auto;
	right: auto;
}

.top-menu-items {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.top-menu-item {
	color: #000;
	text-decoration: none;
	font-size: 14px;
	line-height: 14px;
	font-weight: 500;
	padding: 7px 15px;
	border-radius: 9999px;
	background-color: rgba(255,255,255,0);
	transition: background-color 0.2s;
	margin: 0 5px;
}
.top-menu-item a {
	color: #000;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.2s;
}

.top-menu-item:hover {
	color: #3C6797;
	background-color: #fff;
}
.top-menu-item a:hover { color: #38002A; }

.solutions-nav {
	margin-left: 30px;
}

.solutions-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.solutions-dropdown {
	position: relative;
}

.dropdown-trigger {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 50px;
	background-color: rgba(255,255,255,1);
	transition: all 0.3s ease;
	text-decoration: none;
	color: #000;
	font-size: 14px;
	font-weight: 500;
	z-index: 101;
}

.dropdown-trigger:hover {
	color: #3C6797;
	background-color: #fff;
}

.dropdown-trigger i {
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.dropdown-content {
	position: absolute;
	top: 0;
	left: 0;
	border: 2px solid #fff;
	border-radius: 20px;
	overflow: visible;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.95);
	transform-origin: top left;
	transition: all 0.3s ease;
	z-index: 100;
	min-width: 220px;
	padding: 40px 0 10px 0;
	display: block;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.dropdown-content a {
	color: #333;
	padding: 8px 18px;
	display: block;
	font-size: 14px;
	text-decoration: none;
	transition: background-color 0.2s;
}

.solutions-dropdown:hover .dropdown-trigger {
	background-color: #fff;
	color: #3C6797;
}

.solutions-dropdown:hover .dropdown-trigger i {
	transform: rotate(180deg);
}

.solutions-dropdown:hover .dropdown-content {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.dropdown-content a:hover {
	background-color: #f5f5f5;
	color: #3C6797;
}

/* CTA Button — used as <li class="cta-button"><a>…</a></li> in nav,
   and as <a class="cta-button …">…</a> on content pages */
.cta-button,
a.cta-button {
	background-color: #2a001f;
	color: white;
	padding: 12px 32px;
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	font-family: 'Archivo', sans-serif;
	border-radius: 16px;
	transition: background-color .5s;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	cursor: pointer;
	border: none;
}
li.cta-button {
	list-style: none;
	margin-left: 15px;
	padding: 0;
}
.cta-button:hover,
a.cta-button:hover {
	background-color: #3C6797;
	color: #fff;
}
.cta-button a {
	color: white;
	padding: 12px 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	border-radius: 16px;
	text-decoration: none;
	transition: background-color .5s;
}
.cta-button a:hover {
	background: #3C6797;
	color: #fff;
}
a.cta-button.large {
	font-size: 18px;
	padding: 16px 40px;
}
a.cta-button.primary {
	background-color: #2a001f;
}
a.cta-button.primary:hover {
	background-color: #3C6797;
}
a.cta-button.secondary {
	background-color: transparent;
	color: #2a001f;
	border: 2px solid #2a001f;
}
a.cta-button.secondary:hover {
	background-color: #2a001f;
	color: #fff;
}


/* ---- Mobile hamburger button (hidden on desktop) ---- */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}

.hamburger-bar {
	display: block;
	width: 26px;
	height: 2.5px;
	background-color: #111;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---- Full-screen mobile menu overlay ---- */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: #38002A !important;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	display: flex;
	flex-direction: column;
	padding-top: env(safe-area-inset-top, 0px);
	padding-bottom: env(safe-area-inset-bottom, 0px);
	min-height: 100vh;
	min-height: -webkit-fill-available;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu-overlay,
.mobile-menu-overlay * {
	background-color: transparent;
}

.mobile-menu-overlay {
	background-color: #38002A !important;
}

.mobile-menu-overlay .mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 20px 24px;
	flex-shrink: 0;
}

.mobile-menu-overlay .mobile-menu-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: #fff;
	transition: opacity 0.2s;
}

.mobile-menu-overlay .mobile-menu-close:hover {
	opacity: 0.6;
}

.mobile-menu-overlay .mobile-menu-nav {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 30px;
}

.mobile-menu-overlay .mobile-menu-nav ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.mobile-menu-overlay .mobile-menu-nav li {
	list-style: none;
	float: none;
	display: block;
	width: 100%;
	border: none;
}

.mobile-menu-overlay .mobile-menu-nav li a {
	display: block;
	padding: 14px 0;
	font-family: 'Archivo', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #fff !important;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: opacity 0.2s;
	line-height: 1.3;
}

.mobile-menu-overlay .mobile-menu-nav li a:hover {
	opacity: 0.7;
}

.mobile-menu-overlay .mobile-menu-cta {
	padding: 20px 30px 50px;
	text-align: center;
	flex-shrink: 0;
}

.mobile-menu-overlay .mobile-demo-btn {
	display: inline-block;
	background-color: #fff !important;
	color: #38002A !important;
	font-family: 'Archivo', sans-serif;
	font-size: 18px;
	font-weight: 600;
	padding: 14px 40px;
	border-radius: 50px;
	text-decoration: none;
	transition: opacity 0.2s;
}

.mobile-menu-overlay .mobile-demo-btn:hover {
	opacity: 0.9;
}

@media (max-width: 768px) {
	.nav-bar {
		top: 10px;
		width: calc(100% - 24px);
		padding: 10px 0;
		border-radius: 12px;
	}
	body { padding-top: 76px; }
	.nav {
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
		padding: 0 16px;
	}
	.logo { width: 150px; }
	.mobile-menu-toggle { display: flex; }
	.top-menu { display: none; }
}

@media (min-width: 769px) {
	.mobile-menu-overlay {
		display: none !important;
	}
}


/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.hero {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: stretch;
	position: relative;
	max-height: 700px;
}

.hero-text {
	width: 50%;
	text-align: left;
	padding-right: 30px;
	margin: 5% 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero h3 {
	font: 16px 'Archivo', sans-serif;
	line-height: 16px;
	font-weight: 500;
	text-transform: uppercase;
	color: #333;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.hero h1 {
	font-family: 'Archivo', sans-serif;
	font-size: 4.5rem;
	line-height: 1;
	color: #000;
	font-weight: 500;
	letter-spacing: -1px;
	margin: 0 0 25px;
}

.hero h2 {
	font: 24px 'Archivo', sans-serif;
	line-height: 1.4;
	font-weight: 400;
	color: #333;
	margin-bottom: 10px;
}

.hero h2:last-of-type {
	margin-bottom: 30px;
}

.hero h2 strong {
	font-weight: 600;
	color: #000;
}

.trustpilot-badge {
	display: flex;
	align-items: center;
	gap: 10px;
}
.trustpilot-badge span {
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
}

.hero-cta {
	margin-top: 30px;
}

.button-demo {
	display: inline-block;
	background-color: #fff;
	color: #38002A;
	font: 24px 'Archivo', sans-serif;
	font-weight: 700;
	padding: 12px 50px;
	border: 4px solid #38002A;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.button-demo:hover {
	background-color: #38002A;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(56, 0, 42, 0.2);
}

.demo-note {
	font-size: 14px;
	color: #666;
	margin-top: 10px;
	letter-spacing: -0.5px;
	font-weight: 600;
}

.hero-programs {
	width: 50%;
}

@media (max-width: 1024px) {
	.hero h1 { font-size: 4.4rem; }
	.hero h2 { font-size: 20px; }
}

@media (max-width: 768px) {
	.hero {
		flex-direction: column;
		margin: 30px auto 50px;
		padding: 0 20px;
	}
	.hero-text, .hero-programs { width: 100%; }
	.hero-text {
		margin-bottom: 30px;
		padding-right: 0;
	}
	.hero h1 { font-size: 3rem; }

	/* Product carousel → single horizontal row on mobile */
	.hero-carousel {
		max-height: none !important;
		overflow: hidden !important;
		width: 100vw !important;
		margin-left: calc(-50vw + 50%) !important;
	}
	.carousel-container {
		flex-direction: column !important;
		gap: 0 !important;
		height: auto !important;
	}
	.carousel-column:nth-child(2) {
		display: none !important;
	}
	.carousel-column {
		overflow: hidden !important;
	}
	.carousel-track {
		flex-direction: row !important;
		gap: 16px !important;
		animation: scrollLeftProducts 8s linear infinite !important;
		align-items: center !important;
	}
	.carousel-track.up {
		animation-name: scrollLeftProducts !important;
	}
	.carousel-item {
		width: auto !important;
		height: 160px !important;
		flex-shrink: 0 !important;
		background-color: transparent !important;
		border-radius: 0 !important;
	}
	.carousel-item .product-image {
		height: 100% !important;
	}
	.carousel-item img {
		width: auto !important;
		height: 100% !important;
		object-fit: contain !important;
		display: block !important;
	}
}

@keyframes scrollLeftProducts {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@keyframes scrollRightProducts {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}


/* ============================================================
   HERO CAROUSEL (Homepage)
   ============================================================ */
.hero-carousel {
	flex: 1;
	position: relative;
	overflow: hidden;
	height: 100%;
	max-height: 700px;
}

.carousel-container {
	display: flex;
	gap: 20px;
	height: 100%;
	position: relative;
}

.carousel-column {
	flex: 1;
	position: relative;
	overflow: hidden;
}

.carousel-track {
	display: flex;
	flex-direction: column;
	gap: 20px;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.carousel-track.up { animation-name: scrollUp; animation-duration: 40s; }
.carousel-track.down { animation-name: scrollDown; animation-duration: 45s; }

.carousel-item {
	background-color: #e0e0e0;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
	height: auto;
}

.carousel-item img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.placeholder-image {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #c0c0c0, #e0e0e0);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #888;
	font-size: 14px;
	border-radius: 5px;
}

@keyframes scrollUp {
	0% { transform: translateY(0); }
	100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
	0% { transform: translateY(-50%); }
	100% { transform: translateY(0); }
}

/* .carousel-column:hover .carousel-track {
	animation-play-state: paused;
} */


/* ============================================================
   TRUSTED BY Section (Homepage)
   ============================================================ */
.trusted-by {
	padding: 80px 0 60px;
	background-color: #f9f7f4;
}

.trusted-by-content {
	margin: 0 auto;
	text-align: center;
}

.trusted-by-title {
	font: 28px 'Archivo', sans-serif;
	line-height: 1.3;
	font-weight: 400;
	color: #000;
	margin-bottom: 50px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.logo-carousel {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.trusted-by .logo-carousel { margin-bottom: 20px; }
.trusted-by .logo-carousel:last-child { margin-bottom: 0; }

.trusted-by .logo-track {
	display: flex;
	gap: 60px;
	align-items: center;
	animation: scrollLeftLogos 90s linear infinite;
	width: max-content;
}

.trusted-by .logo-track.row-2 {
	animation: scrollRightLogos 90s linear infinite;
}

@keyframes scrollRightLogos {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}

.trusted-by .logo-item {
	flex-shrink: 0;
	opacity: 0.7;
	transition: opacity 0.3s ease;
	height: 100px;
	display: flex;
	align-items: center;
}

.logo-item:hover { opacity: 1; }

.logo-item img {
	height: 100%;
	width: auto;
	object-fit: contain;
	
	transition: filter 0.3s ease;
}

.logo-item:hover img {  }

/* .logo-carousel:hover .logo-track { animation-play-state: paused; } */

@media (max-width: 768px) {
	.trusted-by { padding: 60px 0 40px; }
	.trusted-by-title {
		font-size: 22px;
		margin-bottom: 40px;
		padding: 0 5%;
	}
	.logo-track { gap: 40px; }
	.logo-item { height: 32px; }
}


/* ============================================================
   BRANDS Section (Homepage)
   ============================================================ */
.brands {
	padding: 80px 0 60px;
	background-color: #f9f7f4;
}

.brands-content {
	margin: 0 auto;
	text-align: center;
}

.brands-title {
	font: 28px 'Archivo', sans-serif;
	line-height: 1.3;
	font-weight: 400;
	color: #333;
	margin-bottom: 50px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.brands .logo-carousel {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.brands .logo-track {
	display: flex;
	gap: 60px;
	align-items: center;
	animation: scrollRight 40s linear infinite;
	width: max-content;
}

.brands .logo-item {
	flex-shrink: 0;
	opacity: 0.7;
	transition: opacity 0.3s ease;
	height: 40px;
	display: flex;
	align-items: center;
}

.brands .logo-item:hover { opacity: 1; }

.brands .logo-item img {
	height: 100%;
	width: auto;
	object-fit: contain;
	
	transition: filter 0.3s ease;
}

.brands .logo-item:hover img {  }

@keyframes scrollLeftLogos {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
	.brands { padding: 60px 0 40px; }
	.brands-title {
		font-size: 22px;
		margin-bottom: 40px;
		padding: 0 5%;
	}
	.brands .logo-track { gap: 40px; }
	.brands .logo-item { height: 32px; }
}


/* ============================================================
   SWAG DONE SMARTER Section (Homepage)
   ============================================================ */
.swag-done-smarter {
	background-color: #F4EFEA;
	padding: 100px 10% 80px;
	text-align: center;
}

.swag-content {
	max-width: 1600px;
	margin: 0 auto;
}

.swag-header { margin-bottom: 80px; }

.swag-eyebrow {
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	color: #000;
	letter-spacing: 1px;
	margin-bottom: 15px;
	opacity: 0.8;
}

.swag-title {
	font: 48px 'Archivo', sans-serif;
	font-weight: 500;
	color: #000;
	line-height: 1.1;
	margin-bottom: 25px;
	letter-spacing: -1px;
}

.swag-subtitle {
	font: 20px 'Archivo', sans-serif;
	font-weight: 400;
	color: #000;
	line-height: 1.4;
	max-width: 700px;
	margin: 0 auto;
	opacity: 0.9;
}

.swag-features {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.smarter-card {
	text-align: center;
	transition: transform 0.3s ease;
}
.smarter-card:hover {
	transform: translateY(-5px) scale(1.10);
	border-color: rgba(0, 0, 0, 0.4);
}

.smarter-icon {
	width: 80px;
	height: 80px;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	transition: all 0.3s ease;
	border: 2px solid rgba(0, 0, 0, 0.2);
}

.smarter-title {
	font: 24px 'Archivo', sans-serif;
	font-weight: 600;
	color: #000;
	margin-bottom: 15px;
}

.smarter-description {
	font: 16px 'Archivo', sans-serif;
	font-weight: 400;
	color: #000;
	line-height: 1.5;
	opacity: 0.9;
}

.feature-card { text-align: center; }
.feature-card.center { transform: translateY(-30px); }

.feature-icon {
	width: 80px;
	height: 80px;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	transition: all 0.3s ease;
	border: 2px solid rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-icon {
	background-color: rgba(0, 0, 0, 0.2);
	transform: translateY(-5px);
	border-color: rgba(0, 0, 0, 0.4);
}

.feature-title {
	font: 24px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	margin-bottom: 15px;
	line-height: 1.3;
}

.feature-description {
	font: 16px 'Archivo', sans-serif;
	font-weight: 400;
	color: #000;
	line-height: 1.5;
	opacity: 0.9;
}

.swag-cta { margin-top: 40px; }

.demo-link {
	font: 18px 'Archivo', sans-serif;
	font-weight: 500;
	color: #000;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 0;
	border-bottom: 2px solid rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.demo-link:hover {
	border-bottom-color: #000;
	transform: translateY(-2px);
}

.arrow { transition: transform 0.3s ease; }
.demo-link:hover .arrow { transform: translateX(5px); }

@media (max-width: 1024px) {
	.swag-title { font-size: 40px; }
	.swag-features { gap: 40px; }
}

@media (max-width: 768px) {
	.swag-done-smarter { padding: 80px 5% 60px; }
	.swag-title { font-size: 32px; }
	.swag-subtitle { font-size: 18px; }
	.swag-features {
		grid-template-columns: 1fr;
		gap: 50px;
		margin-bottom: 50px;
	}
	.feature-card.center { transform: none; }
	.feature-icon { width: 70px; height: 70px; }
	.feature-title { font-size: 20px; }
}


/* ============================================================
   EFFORTLESS / HOW WE MAKE SWAG Section (Homepage)
   ============================================================ */
.how-we-make-swag {
	background-color: #DCD9D5;
	padding: 100px 10% 80px;
}

.swag-process-content {
	max-width: 1600px;
	margin: 0 auto;
}

.process-header {
	text-align: center;
	margin-bottom: 80px;
}

.process-eyebrow {
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	color: #766E64;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.process-title {
	font: 48px 'Archivo', sans-serif;
	font-weight: 600;
	color: #333;
	line-height: 1.2;
	margin-bottom: 25px;
	letter-spacing: -1px;
}

.process-subtitle {
	font: 20px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
	line-height: 1.4;
	max-width: 700px;
	margin: 0 auto 40px;
}

.process-cta-buttons {
	display: flex;
	gap: 30px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.btn-link {
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	color: #38002A;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.btn-link:hover { color: #5c1a42; }
.btn-link:hover .arrow { transform: translateX(5px); }

.process-timeline {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}

.process-timeline::before {
	content: '';
	position: absolute;
	top: 85px;
	left: 10%;
	right: 10%;
	height: 3px;
	background-color: #ddd;
	z-index: 1;
	border-radius: 2px;
}

.process-timeline::after {
	content: '';
	position: absolute;
	top: 85px;
	left: 10%;
	right: 90%;
	height: 3px;
	background: linear-gradient(90deg, #C773AE 0%, #B2208D 50%, #38002A 100%);
	border-radius: 2px;
	z-index: 2;
	animation: progressFlow 8s ease-in-out infinite;
	background-size: 200% 100%;
}

@keyframes progressFlow {
	0% { right: 90%; background-position: 0% 50%; }
	50% { right: 10%; background-position: 100% 50%; }
	100% { right: 10%; background-position: 0% 50%; }
}

.timeline-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
	position: relative;
	max-width: 200px;
}

.timeline-step::before {
	content: '';
	position: absolute;
	top: 75px;
	left: 50%;
	transform: translateX(-50%);
	width: 18px;
	height: 18px;
	background-color: #38002A;
	border: 4px solid #fff;
	border-radius: 50%;
	z-index: 3;
	box-shadow: 0 0 0 2px #38002A;
	transition: all 0.3s ease;
}

.timeline-step:hover::before {
	background-color: #B2208D;
	box-shadow: 0 0 0 2px #B2208D, 0 0 15px rgba(0, 110, 183, 0.4);
	transform: translateX(-50%) scale(1.2);
}

.step-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
	background-color: #f8f8f8;
	border-radius: 50%;
	padding: 8px;
}

.step-icon:hover {
	transform: scale(1.1);
	background-color: rgba(0, 110, 183, 0.1);
}

.step-icon svg { transition: all 0.3s ease; }
.step-icon:hover svg { transform: scale(1.05); }

.step-content { padding: 0 10px; }

.step-title {
	font: 18px 'Archivo', sans-serif;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
	line-height: 21px;
}

.step-description {
	font: 14px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
	line-height: 17px;
}

@media (max-width: 1024px) {
	.process-title { font-size: 40px; }
	.process-timeline { flex-wrap: wrap; justify-content: center; }
	.timeline-step { width: calc(33.33% - 20px); margin-bottom: 40px; }
	.timeline-step:nth-child(4),
	.timeline-step:nth-child(5) { width: calc(50% - 20px); margin-top: 20px; }
	.process-timeline::before,
	.process-timeline::after { display: none; }
	.timeline-step::before { display: none; }
}

@media (max-width: 768px) {
	.how-we-make-swag { padding: 60px 16px 60px; }
	.process-title { font-size: 32px; }
	.process-subtitle { font-size: 18px; }
	.process-cta-buttons { flex-direction: column; gap: 20px; }
	.process-timeline { flex-direction: column; gap: 0; }
	.timeline-step {
		width: 100%;
		max-width: none;
		margin-bottom: 24px;
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		gap: 20px;
		text-align: left;
	}
	.timeline-step:nth-child(4),
	.timeline-step:nth-child(5) { width: 100%; margin-top: 0; }
	.step-icon { flex-shrink: 0; width: 48px; }
	.step-content { padding: 0; flex: 1; min-width: 0; }
}


/* ============================================================
   PLATFORM CTA Section (Homepage)
   ============================================================ */
.platform-cta {
	background-color: #38002A;
	padding: 100px 10% 80px;
	text-align: center;
}

.platform-content {
	max-width: 800px;
	margin: 0 auto;
}

.platform-title {
	font: 56px 'Archivo', sans-serif;
	font-weight: 500;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 25px;
	letter-spacing: -1px;
}

.platform-subtitle {
	font: 22px 'Archivo', sans-serif;
	font-weight: 400;
	color: #fff;
	line-height: 1.4;
	margin-bottom: 40px;
	opacity: 0.9;
}

.platform-button { margin-top: 30px; }

.btn-demo {
	font: 20px 'Archivo', sans-serif;
	font-weight: 600;
	color: #38002A;
	background-color: #fff;
	text-decoration: none;
	padding: 16px 40px;
	border-radius: 50px;
	border: none;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-demo:hover {
	background-color: #f0f0f0;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline {
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	text-decoration: none;
	padding: 12px 28px;
	border: 2px solid #333;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.btn-outline:hover {
	background-color: #fff;
	color: #222;
	transform: translateY(-2px);
}

@media (max-width: 1024px) {
	.platform-title { font-size: 48px; }
	.platform-subtitle { font-size: 20px; }
}

@media (max-width: 768px) {
	.platform-cta { padding: 80px 5% 60px; }
	.platform-title { font-size: 36px; }
	.platform-subtitle { font-size: 18px; }
	.btn-demo { font-size: 18px; padding: 14px 35px; }
}


/* ============================================================
   WHAT MAKES US DIFFERENT Section (Homepage)
   ============================================================ */
.what-makes-different {
	background-color: #f9f7f4;
	padding: 100px 10% 80px;
}

.different-content {
	max-width: 1200px;
	margin: 0 auto;
}

.different-header {
	text-align: center;
	margin-bottom: 60px;
}

.different-title {
	font: 48px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	line-height: 1.2;
	margin-bottom: 20px;
}

.different-intro {
	font: 20px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
	line-height: 1.4;
	max-width: 600px;
	margin: 0 auto;
}

.highlight {
	color: #38002A;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: #006EB7;
	text-decoration-thickness: 2px;
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 30px;
	grid-template-areas:
		"large1 medium1 large2"
		"wide wide medium2";
}

.feature-card {
	background-color: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	padding: 40px 30px;
	transition: all 0.3s ease;
}

.feature-card:hover {
	border-color: #38002A;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(56, 0, 42, 0.1);
}

.feature-large {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.feature-large:first-child { grid-area: large1; }
.feature-large:last-of-type { grid-area: large2; }
.feature-medium:first-of-type { grid-area: medium1; }
.feature-medium:last-of-type { grid-area: medium2; }
.feature-wide { grid-area: wide; text-align: center; }

.feature-number {
	font: 42px 'Archivo', sans-serif;
	font-weight: 700;
	color: #38002A;
	margin-bottom: 15px;
	line-height: 1;
}

.feature-subtitle {
	font: 16px 'Archivo', sans-serif;
	font-weight: 600;
	color: #006EB7;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.feature-description {
	font: 16px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
	line-height: 1.5;
}

.feature-visual {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1024px) {
	.features-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"large1 large2"
			"medium1 medium2"
			"wide wide";
	}
}

@media (max-width: 768px) {
	.what-makes-different { padding: 80px 5% 60px; }
	.different-title { font-size: 36px; }
	.different-intro { font-size: 18px; }
	.features-grid {
		grid-template-columns: 1fr;
		grid-template-areas:
			"large1"
			"medium1"
			"large2"
			"wide"
			"medium2";
	}
	.feature-card { padding: 30px 25px; }
}


/* ============================================================
   PRODUCTS Section (Homepage)
   ============================================================ */
.products-section {
	background-color: #003E6E;
	padding: 100px 10% 80px;
}
.products-section .btn-outline {
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	padding: 12px 28px;
	border: 2px solid #fff;
	border-radius: 50px;
	transition: all 0.3s ease;
}
.products-section .btn-outline:hover {
	background-color: #fff;
	color: #003E6E;
	transform: translateY(-2px);
}

.products-content {
	display: flex;
	align-items: center;
	gap: 60px;
	max-width: 1600px;
	margin: 0 auto;
}

.products-left {
	flex: 1;
	max-width: 500px;
}

.products-eyebrow {
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	color: #DBE0ED;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.products-title {
	font: 48px 'Archivo', sans-serif;
	font-weight: 500;
	color: #DBE0ED;
	line-height: 1.2;
	margin-bottom: 25px;
	letter-spacing: -1px;
}

.products-description {
	font: 18px 'Archivo', sans-serif;
	font-weight: 400;
	color: #EFF2F9;
	line-height: 1.5;
	margin-bottom: 35px;
}

.products-carousel {
	flex: 1;
	overflow: hidden;
	height: 280px;
}

.product-track {
	display: flex;
	gap: 20px;
	height: 100%;
	animation: scrollLeft 70s linear infinite;
}

.product-item {
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	flex-shrink: 0;
	transition: transform 0.3s ease;
	height: 280px;
	width: 210px;
}

.product-item:hover { transform: scale(97%); }
.product-item.wide { width: 250px; }
.product-item.narrow { width: 190px; }

.product-image img { width: 100%; height: auto; }

@keyframes scrollLeft {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0%); }
}

/* .products-carousel:hover .product-track { animation-play-state: paused; } */

@media (max-width: 768px) {
	.products-section { padding: 80px 0 60px; }
	.products-content { flex-direction: column; gap: 40px; }
	.products-left { max-width: 100%; text-align: center; padding: 0 5%; }
	.products-title { font-size: 32px; }
	.products-carousel { height: 220px; }
	.product-item { height: 220px; width: 130px; }
	.product-item.wide { width: 160px; }
	.product-item.narrow { width: 100px; }
}


/* ============================================================
   STORES Section (Homepage)
   ============================================================ */
.stores-section {
	background-color: #FFFAF5;
	padding: 100px 10% 80px;
}

.stores-content {
	max-width: 1200px;
	margin: 0 auto;
}

.stores-header {
	text-align: center;
	margin-bottom: 60px;
}

.stores-title {
	font: 48px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	line-height: 1.2;
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.stores-description {
	font: 20px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
	line-height: 1.4;
	max-width: 700px;
	margin: 0 auto;
}

.stores-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 20px;
	grid-template-areas:
		"large1 medium1 large2"
		"large3 medium2 tall";
}

.store-item {
	background-color: #e0e0e0;
	border-radius: 5px;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.store-item:hover { transform: translateY(-5px); }
.store-item.large { aspect-ratio: 4/3; }
.store-item.medium { aspect-ratio: 1/1; }
.store-item.tall { aspect-ratio: 4/5; grid-area: tall; }

.store-item:nth-child(1) { grid-area: large1; }
.store-item:nth-child(2) { grid-area: medium1; }
.store-item:nth-child(3) { grid-area: large2; }
.store-item:nth-child(4) { grid-area: large3; }
.store-item:nth-child(5) { grid-area: medium2; }

.store-thumb {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	border: 1px solid #ddd;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	transition: background-position 3s ease-in-out;
	cursor: pointer;
}

.store-item:hover .store-thumb { background-position: bottom center; }

.store-achieve { background-image: url('/assets/images/clients/store_achieve.jpg'); background-size: 100% 174%; }
.store-bge { background-image: url('/assets/images/clients/store_bge.jpg'); background-size: 100% 226%; }
.store-oktorocket { background-image: url('/bsauce/assets/images/clients/store_oktorocket.jpg'); background-size: 100% auto; }
.store-pioneer { background-image: url('/bsauce/assets/images/clients/store_pioneer-healthcare.jpg'); background-size: 100% auto; }
.store-patchmypc { background-image: url('/bsauce/assets/images/clients/store_patch-my-pc.jpg'); background-size: 100% auto; }
.store-jensen { background-image: url('/assets/images/clients/store_jensen.jpg'); background-size: 100% 134%; }
.store-bodybyheart { background-image: url('/bsauce/assets/images/clients/store_body-by-heart.jpg'); background-size: 100% 160%; }
.store-popupcafe { background-image: url('/assets/images/clients/store_popupcafe.jpg'); background-size: 100% 110%; }
.store-oldwisconsin { background-image: url('/bsauce/assets/images/clients/store_old-wisconsin.jpg'); background-size: 100% 160%; }
.store-teledyne { background-image: url('/bsauce/assets/images/clients/store_teledyne.jpg'); background-size: 100% 160%; }

@media (max-width: 1024px) {
	.stores-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"large1 large2"
			"medium1 medium2"
			"large3 tall";
	}
}

@media (max-width: 768px) {
	.stores-section { padding: 80px 5% 60px; }
	.stores-title { font-size: 32px; }
	.stores-description { font-size: 18px; }
	.stores-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"large1 medium1"
			"large2 large3"
			"medium2 tall";
	}
	.store-item.medium,
	.store-item.large { aspect-ratio: 4/3; }
}


/* ============================================================
   PROGRAMS Section (Homepage)
   ============================================================ */
.programs-section {
	background-color: #F4EFEA;
	padding: 100px 10% 80px;
}

.programs-content {
	max-width: 1600px;
	margin: 0 auto;
}

.programs-header { margin-bottom: 50px; }

.programs-eyebrow {
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	color: #666;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.programs-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.programs-title {
	font: 48px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	line-height: 1.2;
	letter-spacing: -1px;
}

.programs-carousel-container {
	position: relative;
	overflow: hidden;
}

.programs-carousel {
	display: flex;
	width: 300%;
	transition: transform 0.5s ease;
}

.carousel-group {
	width: 33.333%;
	flex-shrink: 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
	opacity: 1;
	position: relative;
}

.program-card {
	background-color: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 5px;
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.program-card:hover { border-color: #F99D1C; }
.program-link:hover { color: #F99D1C; }

.program-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.program-meta {
	padding: 20px 20px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
	font-size: 14px;
	color: #666;
}

.program-date,
.program-location {
	display: flex;
	align-items: center;
	gap: 6px;
}

.program-tag {
	background-color: #f5f5f5;
	color: #333;
	padding: 4px 10px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 500;
	margin-left: auto;
}

.program-title {
	font: 20px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	margin: 15px 20px 10px;
	line-height: 1.3;
}

.program-description {
	font: 14px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
	line-height: 1.4;
	margin: 0 20px auto;
	flex-grow: 1;
}

.program-link {
	font: 14px 'Archivo', sans-serif;
	font-weight: 500;
	color: #38002A;
	text-decoration: none;
	margin: 15px 20px 20px;
	display: inline-block;
	transition: color 0.3s ease;
}

.program-link:hover { color: #5c1a42; }

.carousel-navigation {
	display: flex;
	justify-content: flex-end;
	margin-top: 40px;
}

.carousel-arrows {
	display: flex;
	gap: 10px;
}

.arrow-btn {
	width: 40px;
	height: 40px;
	border: 2px solid #e0e0e0;
	background-color: #fff;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.arrow-btn:hover {
	border-color: #EA7266;
	background-color: #EA7266;
}

.arrow-btn:hover svg path { stroke: #fff; }

@media (max-width: 768px) {
	.programs-section { padding: 80px 5% 60px; }
	.programs-title { font-size: 32px; }
	.programs-top { flex-direction: column; align-items: flex-start; }
	.carousel-group { grid-template-columns: 1fr; gap: 20px; }
}


/* ============================================================
   PLAYBOOK SIGNUP Section (Homepage)
   ============================================================ */
.playbook-signup {
	background-color: #4F2800;
	padding: 100px 10% 80px;
	text-align: center;
}

.signup-content {
	max-width: 800px;
	margin: 0 auto;
}

.signup-title {
	font: 48px 'Archivo', sans-serif;
	font-weight: 500;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.signup-subtitle {
	font: 20px 'Archivo', sans-serif;
	font-weight: 400;
	color: #fff;
	line-height: 1.4;
	margin-bottom: 40px;
	opacity: 0.9;
}

.signup-form { margin-bottom: 20px; }

.email-group {
	display: flex;
	gap: 0;
	max-width: 500px;
	margin: 0 auto;
	border-radius: 50px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.email-input {
	flex: 1;
	padding: 16px 24px !important;
	border: none !important;
	font: 16px 'Archivo', sans-serif;
	font-weight: 400;
	background-color: #fff !important;
	color: #333;
	outline: none !important;
	margin: 0 !important;
	height: auto !important;
}

.email-input::placeholder { color: #999; }

.signup-btn {
	padding: 16px 32px;
	border: none;
	background-color: #F99D1C;
	color: #fff;
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.signup-btn:hover { background-color: #e88a00; }

.signup-disclaimer {
	font: 14px 'Archivo', sans-serif;
	font-weight: 400;
	color: #fff;
	line-height: 1.4;
	opacity: 0.8;
	max-width: 600px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.playbook-signup { padding: 80px 5% 60px; }
	.signup-title { font-size: 32px; }
	.signup-subtitle { font-size: 18px; }
	.email-group { flex-direction: column; border-radius: 5px; }
	.email-input { border-radius: 5px 5px 0 0; }
	.signup-btn { border-radius: 0 0 5px 5px; }
}


/* ============================================================
   MATCH Section (Homepage)
   ============================================================ */
.match-section {
	background-color: #F4EFEA;
	padding: 100px 10% 80px;
	text-align: center;
}

.match-content {
	max-width: 800px;
	margin: 0 auto;
}

.match-title {
	font: 56px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	line-height: 1.1;
	margin-bottom: 25px;
	letter-spacing: -1px;
}

.match-description {
	font: 22px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
	line-height: 1.4;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.match-cta { margin-top: 30px; }

.btn-chat {
	font: 20px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	background-color: #fff;
	text-decoration: none;
	padding: 16px 40px;
	border: 2px solid #333;
	border-radius: 50px;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-chat:hover {
	background-color: #333;
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
	.match-section { padding: 80px 5% 60px; }
	.match-title { font-size: 40px; }
	.match-description { font-size: 18px; }
	.btn-chat { font-size: 18px; padding: 14px 35px; }
}


/* ============================================================
   TESTIMONIALS Section
   ============================================================ */
.testimonials-section {
	background: linear-gradient(135deg, #F4EFEA 0%, #DCD9D5 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.testimonials-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAwIDAgTDIwMCAxMDAgTDEwMCAyMDAgTDAgMTAwIFoiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLW9wYWNpdHk9IjAuMDUiIHN0cm9rZS13aWR0aD0iMiIvPjwvc3ZnPg==');
	opacity: 0.5;
	z-index: 0;
}

.testimonials-container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 1;
}

.testimonials-heading {
	color: #181616;
	text-align: center;
	font-family: 'Archivo', sans-serif;
	font-size: 3.5vw;
	line-height: 1;
	font-weight: 500;
	margin-bottom: 60px;
	position: relative;
	padding-bottom: 20px;
	line-height: 1.25;
	max-width: 80%;
	margin: 0 auto 60px;
}

.testimonials-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 2px;
}

.slider-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}

.prev-btn, .next-btn {
	background: rgba(0, 0, 0, 0.2);
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #181616;
	transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
	background: rgba(0, 0, 0, 0.4);
	transform: translateY(-2px);
}

.prev-btn:active, .next-btn:active { transform: translateY(0); }

.slider-dots {
	display: flex;
	gap: 8px;
	margin: 0 20px;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background-color: #181616;
	transform: scale(1.2);
}

.testimonials-slider {
	overflow: hidden;
	max-width: 800px;
	margin: 0 auto;
}

.testimonials-track {
	display: flex;
	transition: transform 0.5s ease;
	gap: 0;
}

.testimonial-card {
	flex: 0 0 100%;
	background-color: white;
	border-radius: 16px;
	box-shadow: none;
	padding: 30px;
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.testimonial-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.testimonial-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid #38002A;
	flex-shrink: 0;
}

.testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-meta { margin-left: 20px; }

.testimonial-name {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin-bottom: 5px;
}

.testimonial-title {
	font-size: 16px;
	line-height: 16px;
	color: #777;
	font-style: italic;
	margin-bottom: 8px;
}

.testimonial-rating {
	color: #ffc107;
	font-size: 16px;
}

.testimonial-content {
	position: relative;
	padding: 20px 0;
	flex-grow: 1;
}

.quote-mark {
	font-size: 60px;
	line-height: 0.5;
	position: absolute;
	color: rgba(252, 105, 97, 0.1);
	font-family: Georgia, serif;
}

.quote-open { top: 10px; left: -10px; }
.quote-close { bottom: 0; right: -10px; }

.testimonial-content p {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
	margin: 0;
}

.testimonial-footer {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.client-logo {
	max-height: 50px;
	display: flex;
	align-items: center;
}

.client-logo img {
	max-height: 100%;
	max-width: 150px;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.client-logo img:hover { opacity: 1; }

.testimonials-brands {
	margin-top: 80px;
	text-align: center;
}

.brands-heading {
	color: white;
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.8;
}

.brands-logo-strip {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
}

.brand-logo {
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 10px 20px;
	transition: all 0.3s ease;
}

.brand-logo:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.brand-logo img {
	height: 100%;
	filter: brightness(0) invert(1);
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.brand-logo:hover img { opacity: 1; }

@media (max-width: 991px) {
	.testimonials-heading { font-size: 36px; }
	.testimonial-card { padding: 25px; }
}

@media (max-width: 767px) {
	.testimonials-section { padding: 60px 0; }
	.testimonials-container { padding: 0 15px; overflow: hidden; }
	.testimonials-heading {
		font-size: 28px;
		line-height: 1.3;
		margin-bottom: 40px;
		max-width: 90%;
	}
	.testimonial-card { padding: 20px; max-width: 100%; box-sizing: border-box; margin: 0; }
	.testimonial-header { flex-direction: column; text-align: center; }
	.testimonial-meta { margin-left: 0; margin-top: 15px; }
	.testimonial-name { font-size: 20px; }
	.testimonial-content p { font-size: 14px; line-height: 1.5; }
	.brand-logo { height: 30px; padding: 8px 15px; }
}


/* ============================================================
   GLOBAL FOOTER
   ============================================================ */
.global-footer {
	background-color: #fff;
	padding: 80px 10% 40px;
	border-top: 1px solid #FFFAF5;
}

.footer-content {
	max-width: 1600px;
	margin: 0 auto;
}

.footer-newsletter {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 60px;
	margin-bottom: 60px;
}

.newsletter-title {
	font: 24px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	margin-bottom: 10px;
}

.newsletter-description {
	font: 16px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
	line-height: 1.5;
	max-width: 400px;
}

.newsletter-form { flex-shrink: 0; }

.newsletter-group {
	display: flex;
	gap: 0;
	margin-bottom: 10px;
}

.newsletter-input {
	padding: 12px 20px !important;
	border: 2px solid #e0e0e0 !important;
	border-radius: 5px 0 0 5px !important;
	font: 14px 'Archivo', sans-serif;
	outline: none;
	width: 280px;
	margin: 0 !important;
}

.newsletter-btn {
	padding: 12px 24px;
	border: 2px solid #333;
	border-left: none;
	background-color: #333;
	color: #fff;
	font: 14px 'Archivo', sans-serif;
	font-weight: 500;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.newsletter-btn:hover { background-color: #555; }

.newsletter-privacy {
	font: 12px 'Archivo', sans-serif;
	color: #999;
}

.newsletter-privacy a {
	color: #38002A;
	text-decoration: underline;
}

.footer-divider {
	border: none;
	border-top: 1px solid #e0e0e0;
	margin: 60px 0;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 40px;
	margin-bottom: 60px;
}

.footer-heading {
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	margin-bottom: 20px;
}

.footer-heading a { color: #000; }
.footer-heading a:hover { color: #38002A; }

.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-list li { margin-bottom: 12px; }

.footer-list a {
	font: 14px 'Archivo', sans-serif;
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-list a:hover { color: #38002A; }

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
}

.footer-logo img { height: 28px; width: auto; }

.footer-copyright {
	font: 14px 'Archivo', sans-serif;
	color: #999;
}

@media (max-width: 1024px) {
	.footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
	.global-footer { padding: 60px 5% 30px; }
	.footer-newsletter { flex-direction: column; gap: 30px; }
	.newsletter-group { flex-direction: column; }
	.newsletter-input {
		width: 100%;
		border-radius: 5px !important;
		border: 2px solid #e0e0e0 !important;
	}
	.newsletter-btn {
		border: 2px solid #333;
		border-radius: 5px;
		margin-top: 10px;
	}
	.footer-links { grid-template-columns: repeat(2, 1fr); gap: 30px; }
	.footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}


/* ============================================================
   SWAG WITH PURPOSE / ABOUT Section (Homepage)
   ============================================================ */
.swag-purpose {
	background-color: #fff;
	padding: 100px 10% 80px;
}

.purpose-content {
	display: flex;
	align-items: center;
	gap: 80px;
	max-width: 1600px;
	margin: 0 auto;
}

.purpose-left {
	flex: 1;
	max-width: 500px;
}

.purpose-eyebrow {
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	color: #666;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.purpose-title {
	font: 48px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	line-height: 1.2;
	margin-bottom: 25px;
	letter-spacing: -1px;
}

.purpose-description {
	font: 18px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
	line-height: 1.6;
	margin-bottom: 35px;
}

.btn-chat-outline {
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	background-color: transparent;
	text-decoration: none;
	padding: 12px 28px;
	border: 2px solid #333;
	border-radius: 50px;
	display: inline-block;
	transition: all 0.3s ease;
}

.btn-chat-outline:hover {
	background-color: #333;
	color: #fff;
	transform: translateY(-2px);
}

.purpose-right { flex: 1; }

.video-container {
	width: 100%;
	height: 400px;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}

.video-placeholder {
	width: 100%;
	height: 20vw;
	background-color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.video-placeholder:hover { background-color: #555; }

.play-button {
	width: 80px;
	height: 80px;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.play-button:hover {
	background-color: rgba(0, 0, 0, 0.8);
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.swag-purpose { padding: 80px 5% 60px; }
	.purpose-content { flex-direction: column; gap: 50px; }
	.purpose-left { max-width: 100%; text-align: center; }
	.purpose-title { font-size: 32px; }
	.video-container { height: 300px; }
}


/* ============================================================
   MISSION Section (Homepage)
   ============================================================ */
.mission-section {
	background-color: #666;
	background-image: url('/assets/images/brand-sauce-team.jpg');
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	padding: 100px 10% 80px;
	position: relative;
}

.mission-section::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(90deg, rgba(0, 62, 110, 0.95) 0%, rgba(0, 62, 110, 0.8) 30%, rgba(0, 62, 110, 0.5) 100%);
	z-index: 1;
}

.mission-content {
	display: flex;
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.mission-left {
	width: 50%;
	padding-right: 40px;
}

.mission-right { width: 50%; }

.mission-title {
	font: 48px 'Archivo', sans-serif;
	font-weight: 500;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 25px;
	letter-spacing: -1px;
}

.mission-intro {
	font: 20px 'Archivo', sans-serif;
	font-weight: 400;
	color: #fff;
	line-height: 1.5;
	margin-bottom: 20px;
}

.mission-description {
	font: 18px 'Archivo', sans-serif;
	font-weight: 400;
	color: #fff;
	line-height: 1.6;
	opacity: 0.95;
}

@media (max-width: 768px) {
	.mission-section { padding: 80px 5% 60px; }
	.mission-content { flex-direction: column; }
	.mission-left { width: 100%; padding-right: 0; text-align: center; }
	.mission-right { display: none; }
	.mission-title { font-size: 32px; }
}


/* ============================================================
   TECHNOLOGY Section (Homepage)
   ============================================================ */
.technology-section {
	background-color: #FFFAF5;
	padding: 100px 0;
	overflow: hidden;
}

.technology-container {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	gap: 80px;
}

.technology-left { flex: 0 0 45%; position: relative; }
.technology-sticky { position: sticky; top: 100px; }

.technology-label {
	font: 14px 'Archivo', sans-serif;
	font-weight: 500;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
	display: block;
}

.technology-title {
	font: 48px 'Archivo', sans-serif;
	font-weight: 500;
	color: #000;
	line-height: 1.1;
	margin-bottom: 40px;
	letter-spacing: -1px;
}

.technology-cta {
	display: flex;
	gap: 20px;
	align-items: center;
}

.explore-tech-btn {
	background-color: #000;
	color: #fff;
	border: none;
	padding: 15px 30px;
	border-radius: 50px;
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.explore-tech-btn:hover { background-color: #333; }

.secondary-btn {
	background: none;
	border: 1px solid #ccc;
	padding: 15px 25px;
	border-radius: 50px;
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.secondary-btn:hover { border-color: #333; color: #000; }

.technology-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 60px;
	padding: 20px 0;
}

.tech-item {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.tech-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background-color: #DCD9D5;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	padding: 5px;
}

.tech-content h3 {
	font: 24px 'Archivo', sans-serif;
	font-weight: 600;
	color: #000;
	margin-bottom: 12px;
	line-height: 1.3;
}

.tech-content p {
	font: 18px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 1024px) {
	.technology-container { flex-direction: column; gap: 60px; padding: 0 20px; }
	.technology-left { flex: none; }
	.technology-sticky { position: static; }
	.technology-title { font-size: 36px; }
}

@media (max-width: 768px) {
	.technology-section { padding: 80px 0; }
	.technology-title { font-size: 28px; }
	.tech-item { gap: 20px; }
	.tech-icon { width: 56px; height: 56px; }
	.tech-content h3 { font-size: 20px; }
	.tech-content p { font-size: 16px; }
	.technology-cta { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   PLATFORM PAGE — Hero & Sections
   ============================================================ */
.hero-platform {
	max-width: 1600px;
	margin: 0 auto;
	padding: 80px 5% 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-platform .hero-text h1 {
	font-family: 'Archivo', sans-serif;
	font-size: 5.6rem;
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: -1.5px;
	color: #000;
	margin-bottom: 24px;
}

.hero-platform .hero-text p {
	font-size: 1.9rem;
	line-height: 1.65;
	color: #333;
	margin-bottom: 36px;
	max-width: 520px;
}

.hero-ctas {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	background: #fff;
	color: #38002A;
	border: 3px solid #38002A;
	border-radius: 50px;
	padding: 14px 32px;
	font-family: 'Archivo', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.25s;
	text-decoration: none;
}

.btn-primary:hover {
	background: #38002A;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(56,0,42,0.2);
}

.hero-image {
	background: linear-gradient(135deg, #dbeffb 0%, #fce4ec 100%);
	border-radius: 16px;
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 1px solid #ccc;
}

.hero-image .placeholder-icon { font-size: 6rem; opacity: 0.3; }

/* Platform sections common */
.section {
	max-width: 1600px;
	margin: 0 auto;
	padding: 80px 5%;
}

.section-label {
	font-size: 1.4rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #38002A;
	margin-bottom: 12px;
}

.section-title {
	font-family: 'Archivo', sans-serif;
	font-size: 4.2rem;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.5px;
	color: #000;
	margin-bottom: 16px;
}

.section-subtitle {
	font-size: 1.8rem;
	color: #555;
	line-height: 1.65;
	max-width: 600px;
}

/* Tech features (Platform page) */
.tech-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.tech-left { position: sticky; top: 120px; }
.tech-left .section-title { margin-bottom: 20px; }
.tech-left .section-subtitle { margin-bottom: 32px; }

.tech-features {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.tech-feature {
	display: flex;
	gap: 20px;
	padding: 28px;
	background: #fff;
	border-radius: 16px;
	border: 1px solid #e8e4e0;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	opacity: 0;
	transform: translateY(24px);
}

.tech-feature.visible { opacity: 1; transform: translateY(0); }

.tech-feature:hover {
	border-color: #38002A;
	box-shadow: 0 8px 32px rgba(56,0,42,0.08);
	transform: translateY(-2px);
}

.tech-feature-icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	background: #38002A;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tech-feature-icon svg { width: 26px; height: 26px; color: #fff; }

.tech-feature h3 {
	font-family: 'Archivo', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 6px;
}

.tech-feature p { font-size: 1.6rem; color: #555; line-height: 1.55; }

/* Branded Storefront (Platform page) */
.storefront-section {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: center;
}

.storefront-images {
	display: grid;
	grid-template-rows: auto auto;
	gap: 16px;
}

.storefront-img-main {
	background: linear-gradient(135deg, #dbeffb 0%, #e8e4f0 100%);
	border-radius: 16px;
	aspect-ratio: 16/10;
	border: 1px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
}

.storefront-img-secondary {
	background: linear-gradient(135deg, #fce4ec 0%, #f1c6c6 100%);
	border-radius: 16px;
	aspect-ratio: 16/7;
	border: 1px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
}

.storefront-img-main .placeholder-icon,
.storefront-img-secondary .placeholder-icon { font-size: 4rem; opacity: 0.25; }

.storefront-checks {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 28px;
}

.storefront-check {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.check-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	background: #38002A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.check-icon svg { width: 14px; height: 14px; color: #fff; }

.storefront-check p { font-size: 1.7rem; color: #333; line-height: 1.5; }
.storefront-check strong { color: #000; }

/* Integrations (Platform page) */
.integrations-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 48px;
}

.integration-card {
	background: #fff;
	border: 1px solid #e8e4e0;
	border-radius: 16px;
	padding: 32px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	opacity: 0;
	transform: translateY(24px);
}

.integration-card.visible { opacity: 1; transform: translateY(0); }

.integration-card:hover {
	border-color: #38002A;
	box-shadow: 0 8px 32px rgba(56,0,42,0.08);
	transform: translateY(-3px);
}

.integration-icon {
	width: 48px;
	height: 48px;
	background: #38002A;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.integration-icon svg { width: 24px; height: 24px; color: #fff; }

.integration-card h3 {
	font-family: 'Archivo', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 8px;
}

.integration-card p { font-size: 1.6rem; color: #555; line-height: 1.55; }

/* Analytics (Platform page) */
.analytics-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.analytics-image {
	background: linear-gradient(135deg, #dbeffb 0%, #e0f0e8 100%);
	border-radius: 16px;
	aspect-ratio: 4/3;
	border: 1px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
}

.analytics-image .placeholder-icon { font-size: 5rem; opacity: 0.25; }

.analytics-checks {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 28px;
}

.analytics-check {
	display: flex;
	align-items: center;
	gap: 14px;
}

.analytics-check .check-dot {
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	background: #38002A;
	border-radius: 50%;
}

.analytics-check p { font-size: 1.7rem; color: #333; }

/* Enterprise Grade (Platform page) */
.enterprise-section { text-align: center; }
.enterprise-section .section-title { margin-left: auto; margin-right: auto; }
.enterprise-section .section-subtitle { margin-left: auto; margin-right: auto; margin-bottom: 48px; }

.enterprise-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

.enterprise-card {
	background: #fff;
	border: 1px solid #e8e4e0;
	border-radius: 16px;
	padding: 36px 28px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	opacity: 0;
	transform: translateY(24px);
}

.enterprise-card.visible { opacity: 1; transform: translateY(0); }

.enterprise-card:hover {
	border-color: #38002A;
	box-shadow: 0 8px 32px rgba(56,0,42,0.08);
	transform: translateY(-3px);
}

.enterprise-card-icon {
	width: 56px;
	height: 56px;
	background: #38002A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
}

.enterprise-card-icon svg { width: 26px; height: 26px; color: #fff; }

.enterprise-card h3 {
	font-family: 'Archivo', sans-serif;
	font-size: 1.9rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 8px;
}

.enterprise-card p { font-size: 1.5rem; color: #555; line-height: 1.55; }

/* Comparison Table (Platform page) */
.comparison-section { text-align: center; }
.comparison-section .section-title { margin-left: auto; margin-right: auto; }
.comparison-section .section-subtitle { margin-left: auto; margin-right: auto; margin-bottom: 48px; }

.comparison-wrapper {
	max-width: 960px;
	margin: 0 auto;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #e8e4e0;
	background: #fff;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}

.comparison-table thead { position: sticky; top: 72px; z-index: 10; }

.comparison-table th {
	background: #111;
	color: #fff;
	font-family: 'Archivo', sans-serif;
	font-weight: 600;
	font-size: 1.6rem;
	padding: 20px 24px;
	text-align: center;
	border-bottom: 2px solid #000;
}

.comparison-table th:first-child { text-align: left; color: #aaa; font-weight: 500; }
.comparison-table th.brand-sauce-col { background: #38002A; color: #fff; position: relative; }

.comparison-table td {
	padding: 18px 24px;
	font-size: 1.6rem;
	border-bottom: 1px solid #eee;
	text-align: center;
	color: #333;
}

.comparison-table td:first-child { text-align: left; font-weight: 500; color: #000; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: #faf8f6; }

.table-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: #e8f5e9;
	border-radius: 50%;
	color: #2e7d32;
}

.table-x {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: #fce4ec;
	border-radius: 50%;
	color: #c62828;
}

.table-check svg, .table-x svg { width: 16px; height: 16px; }
.brand-sauce-td { background: rgba(56,0,42,0.03); }

/* CTA Banner (shared by platform/pricing) */
.cta-banner {
	background: #111;
	border-radius: 20px;
	max-width: 1600px;
	margin: 0 auto;
	padding: 80px 5%;
	text-align: center;
}

.cta-banner h2 {
	font-family: 'Archivo', sans-serif;
	font-size: 4.2rem;
	font-weight: 500;
	color: #fff;
	line-height: 1.1;
	letter-spacing: -0.5px;
	margin-bottom: 16px;
}

.cta-banner p { font-size: 1.8rem; color: #aaa; margin-bottom: 36px; }

.btn-cta-light {
	display: inline-flex;
	align-items: center;
	background: #fff;
	color: #111;
	border: none;
	border-radius: 50px;
	padding: 16px 36px;
	font-family: 'Archivo', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.25s;
	text-decoration: none;
}

.btn-cta-light:hover {
	background: #f9f7f4;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* Scroll animations */
.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Platform page responsive */
@media (max-width: 1024px) {
	.hero-platform { grid-template-columns: 1fr; padding-top: 40px; }
	.hero-platform .hero-text h1 { font-size: 4.4rem; }
	.hero-image { max-height: 360px; }
	.tech-section { grid-template-columns: 1fr; }
	.tech-left { position: static; }
	.storefront-section { grid-template-columns: 1fr; }
	.analytics-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.hero-platform .hero-text h1 { font-size: 3.6rem; }
	.hero-platform .hero-text p { font-size: 1.7rem; }
	.hero-ctas { flex-direction: column; align-items: flex-start; }
	.section-title { font-size: 3.2rem; }
	.integrations-grid { grid-template-columns: 1fr; }
	.enterprise-grid { grid-template-columns: 1fr; }
	.comparison-wrapper { overflow-x: auto; }
	.comparison-table { min-width: 640px; }
	.cta-banner { border-radius: 0; }
	.cta-banner h2 { font-size: 3.2rem; }
}

@media (max-width: 480px) {
	.hero-platform .hero-text h1 { font-size: 3rem; }
	.section-title { font-size: 2.8rem; }
	.section { padding: 60px 5%; }
	.btn-primary, .btn-outline { font-size: 1.6rem; padding: 12px 24px; }
}

/* Pricing Testimonial */
.testimonial-section {
	max-width: 900px;
	margin: 100px auto 0;
	padding: 0 5%;
	text-align: center;
}

.testimonial-logo {
	margin: 0 auto 32px;
	height: 36px;
	opacity: 0.6;
}

.testimonial-quote {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
	font-style: italic;
	position: relative;
	padding: 0 20px;
}

.testimonial-quote .quote-mark {
	font-size: 60px;
	font-weight: 700;
	color: #38002A;
	line-height: 0;
	position: relative;
}

.testimonial-attribution {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.testimonial-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial-stars {
	color: #f5a623;
	font-size: 16px;
	letter-spacing: 2px;
}

/* FAQ Section */
.faq-section {
	max-width: 1200px;
	margin: 100px auto 0;
	padding: 0 5%;
}

.faq-left h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -1px;
	margin-bottom: 16px;
}

.faq-left p { font-size: 16px; color: #666; line-height: 1.7; margin-bottom: 28px; }

.faq-contact-btn {
	display: inline-block;
	padding: 12px 32px;
	border: 1.5px solid #111;
	border-radius: 9999px;
	font-size: 15px;
	font-weight: 600;
	color: #111;
	transition: all 0.25s;
}

.faq-contact-btn:hover {
	background: #111;
	color: #fff;
	transform: translateY(-2px);
}

.faq-list {
	display: flex;
	flex-direction: column;
}

.faq-item { border-bottom: 1px solid #ddd; }

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 0;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.4;
	text-align: left;
	color: #000;
	gap: 16px;
}

.faq-question:hover { color: #38002A; }

.faq-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1.5px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.35s, border-color 0.35s;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
	border-color: #38002A;
}

.faq-icon svg { width: 14px; height: 14px; color: #666; }
.faq-item.active .faq-icon svg { color: #38002A; }

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}

.faq-answer-inner {
	padding: 0 0 24px;
	font-size: 16px;
	line-height: 1.7;
	color: #555;
}

.faq-item.active .faq-answer { max-height: 200px; }

/* Pricing CTA banner override */
.cta-banner .btn-demo {
	display: inline-block;
	padding: 16px 40px;
	border: 2px solid rgba(255,255,255,0.4);
	border-radius: 9999px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.25s;
}

.cta-banner .btn-demo:hover {
	background: #fff;
	color: #111;
	border-color: #fff;
	transform: translateY(-2px);
}

/* Pricing responsive */
@media (max-width: 1024px) {
	.faq-section { grid-template-columns: 1fr; gap: 40px; }
	.faq-left { text-align: center; }
}

@media (max-width: 768px) {
	.card-price { font-size: 40px; }
	.testimonial-section { margin-top: 72px; }
	.testimonial-quote { font-size: 18px; padding: 0; }
	.faq-section { margin-top: 72px; }
	.faq-left h2 { font-size: 36px; }
	.cta-banner { margin: 72px 4% 0; padding: 56px 24px; border-radius: 16px; }
}

@media (max-width: 480px) {
	.card-price { font-size: 36px; }
	.faq-left h2 { font-size: 30px; }
}


/* ============================================================
   CASE STUDIES PAGE
   ============================================================ */

.cs-container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 10%;
}

@media (max-width: 768px) {
	.cs-container { padding: 0 6%; }
}

/* CS Hero */
.cs-hero { padding: 120px 0 80px; }

.cs-hero .cs-container {
	display: flex;
	align-items: center;
	gap: 60px;
}

.cs-hero-text { flex: 1; min-width: 0; }

.cs-hero-text h1 {
	font-family: 'Archivo', sans-serif;
	font-size: 60px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -1px;
	color: #000;
	margin-bottom: 20px;
}

.cs-hero-text p {
	font-size: 18px;
	line-height: 1.65;
	color: #444;
	margin-bottom: 32px;
	max-width: 520px;
}

.cs-hero-cta {
	display: inline-block;
	background: #111;
	color: #fff;
	font-family: 'Archivo', sans-serif;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 36px;
	border-radius: 50px;
	border: none;
	text-decoration: none;
	transition: background 0.3s, transform 0.2s;
}

.cs-hero-cta:hover {
	background: #38002A;
	color: #fff;
	transform: translateY(-2px);
}

.cs-hero-image { flex: 1; min-width: 0; }

.cs-hero-image .hero-img-placeholder {
	width: 100%;
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, #e8d5e0, #d4c5cb);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.cs-hero-image .hero-img-placeholder svg { width: 80px; height: 80px; opacity: 0.3; }

@media (max-width: 900px) {
	.cs-hero { padding: 80px 0 50px; }
	.cs-hero .cs-container { flex-direction: column; gap: 40px; }
	.cs-hero-text h1 { font-size: 4rem; }
	.cs-hero-text p { font-size: 16px; }
}

/* CS Logo Marquee */
.cs-logo-marquee { padding: 40px 0 60px; overflow: hidden; }

.cs-logo-marquee .marquee-label {
	text-align: center;
	font-size: 15px;
	color: #666;
	margin-bottom: 28px;
	font-weight: 400;
}

.marquee-track-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
	display: flex;
	align-items: center;
	gap: 56px;
	width: max-content;
	animation: marqueeScroll 35s linear infinite;
}

.marquee-track img {
	height: 36px;
	width: auto;
	opacity: 0.55;
	
	transition: opacity 0.3s, filter 0.3s;
}

.marquee-track img:hover { opacity: 1;  }

@keyframes marqueeScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
	.marquee-track img { height: 28px; }
	.marquee-track { gap: 40px; }
}

/* CS Success Stories */
.cs-stories { padding: 80px 0 100px; }

.cs-stories-header { text-align: center; margin-bottom: 60px; }

.cs-stories-header .eyebrow {
	font-size: 14px;
	font-weight: 500;
	color: #38002A;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.cs-stories-header h2 {
	font-family: 'Archivo', sans-serif;
	font-size: 42px;
	font-weight: 600;
	color: #000;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

.cs-stories-header p {
	font-size: 17px;
	color: #555;
	line-height: 1.65;
	max-width: 640px;
	margin: 0 auto;
}

.cs-stories-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.cs-story-card {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
	cursor: pointer;
}

.cs-story-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.cs-story-card-img {
	width: 100%;
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, #e8e0e5, #d8d0d5);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cs-story-card-img svg { width: 48px; height: 48px; opacity: 0.25; }

.cs-story-card-body { padding: 24px; }

.cs-story-tags { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }

.cs-story-tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	color: #38002A;
	background: rgba(56, 0, 42, 0.08);
	padding: 4px 12px;
	border-radius: 50px;
	letter-spacing: 0.3px;
}

.cs-story-card-body h3 {
	font-family: 'Archivo', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #000;
	margin-bottom: 10px;
	line-height: 1.3;
}

.cs-story-card-body p {
	font-size: 15px;
	color: #555;
	line-height: 1.6;
	margin-bottom: 18px;
}

.cs-story-link {
	font-size: 14px;
	font-weight: 600;
	color: #38002A;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.2s, gap 0.2s;
}

.cs-story-link:hover { color: #3C6797; gap: 10px; }

.cs-stories-cta { text-align: center; margin-top: 48px; }

.cs-stories-cta a {
	display: inline-block;
	font-family: 'Archivo', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #000;
	background: transparent;
	border: 2px solid #000;
	padding: 12px 32px;
	border-radius: 50px;
	text-decoration: none;
	transition: background 0.3s, color 0.3s, transform 0.2s;
}

.cs-stories-cta a:hover {
	background: #000;
	color: #fff;
	transform: translateY(-2px);
}

@media (max-width: 900px) {
	.cs-stories-grid { grid-template-columns: 1fr; gap: 24px; }
	.cs-stories-header h2 { font-size: 30px; }
}

/* CS Testimonials */
.cs-testimonials { padding: 80px 0 100px; }
.cs-testimonials-header { margin-bottom: 48px; }

.cs-testimonials-header h2 {
	font-family: 'Archivo', sans-serif;
	font-size: 40px;
	font-weight: 600;
	color: #000;
	letter-spacing: -0.5px;
}

.cs-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.cs-testimonial-card {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 16px;
	padding: 36px;
	display: flex;
	flex-direction: column;
}

.cs-testimonial-stars {
	color: #38002A;
	font-size: 20px;
	letter-spacing: 2px;
	margin-bottom: 16px;
}

.cs-testimonial-quote {
	font-size: 16px;
	line-height: 1.7;
	color: #333;
	flex: 1;
	margin-bottom: 24px;
}

.cs-testimonial-divider { height: 1px; background: #eee; margin-bottom: 20px; }

.cs-testimonial-attribution {
	display: flex;
	align-items: center;
	gap: 16px;
}

.cs-testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.cs-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.cs-testimonial-info { flex: 1; min-width: 0; }
.cs-testimonial-name { font-size: 15px; font-weight: 600; color: #000; }
.cs-testimonial-title { font-size: 13px; color: #666; line-height: 1.4; }

.cs-testimonial-logo { flex-shrink: 0; height: 28px; width: auto; opacity: 0.7; }

.cs-testimonials-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
}

.cs-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: background 0.3s;
}

.cs-dot.active { background: #38002A; }

@media (max-width: 900px) {
	.cs-testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
	.cs-testimonials-header h2 { font-size: 28px; }
	.cs-testimonial-card { padding: 28px; }
}

/* CS Browse Stores */
.cs-stores { padding: 80px 0 100px; }
.cs-stores-header { text-align: center; margin-bottom: 48px; }

.cs-stores-header h2 {
	font-family: 'Archivo', sans-serif;
	font-size: 42px;
	font-weight: 600;
	color: #000;
	margin-bottom: 14px;
	letter-spacing: -0.5px;
}

.cs-stores-header p {
	font-size: 17px;
	color: #555;
	line-height: 1.65;
	max-width: 600px;
	margin: 0 auto;
}

.cs-stores-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.cs-store-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, #e2dade, #d5cfd2);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s, box-shadow 0.3s;
	cursor: pointer;
	text-decoration: none;
}

.cs-store-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.cs-store-card-overlay {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 20px 24px;
	background: linear-gradient(transparent, rgba(0,0,0,0.7));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cs-store-card-name { font-size: 15px; font-weight: 600; }

.cs-store-card-arrow { font-size: 18px; transition: transform 0.2s; }
.cs-store-card:hover .cs-store-card-arrow { transform: translateX(4px); }

.cs-store-card svg { width: 48px; height: 48px; opacity: 0.2; }

@media (max-width: 900px) {
	.cs-stores-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
	.cs-stores-header h2 { font-size: 30px; }
}

@media (max-width: 520px) {
	.cs-stores-grid { grid-template-columns: 1fr; }
}

/* CS CTA Banner */
.cs-cta-banner { background: #111; padding: 100px 0; }

.cs-cta-banner .cs-container { text-align: center; }

.cs-cta-banner h2 {
	font-family: 'Archivo', sans-serif;
	font-size: 42px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

.cs-cta-banner p {
	font-size: 17px;
	color: rgba(255,255,255,0.7);
	line-height: 1.65;
	margin-bottom: 36px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

.cs-cta-banner-btn {
	display: inline-block;
	font-family: 'Archivo', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: transparent;
	border: 2px solid #fff;
	padding: 14px 36px;
	border-radius: 50px;
	text-decoration: none;
	transition: background 0.3s, color 0.3s, transform 0.2s;
}

.cs-cta-banner-btn:hover {
	background: #fff;
	color: #111;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.cs-cta-banner { padding: 60px 0; }
	.cs-cta-banner h2 { font-size: 28px; }
}

/* CS Newsletter */
.cs-newsletter { padding: 60px 0; border-bottom: 1px solid #ddd; }

.cs-newsletter .cs-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.cs-newsletter-text h3 {
	font-family: 'Archivo', sans-serif;
	font-size: 22px;
	font-weight: 600;
	color: #000;
	margin-bottom: 6px;
}

.cs-newsletter-text p { font-size: 14px; color: #666; }

.cs-newsletter-form { display: flex; gap: 10px; flex-shrink: 0; }

.cs-newsletter-form input {
	font-family: 'Archivo', sans-serif;
	font-size: 15px;
	padding: 12px 20px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background: #fff;
	width: 280px;
	outline: none;
	transition: border-color 0.2s;
}

.cs-newsletter-form input:focus { border-color: #38002A; }

.cs-newsletter-form button {
	font-family: 'Archivo', sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 28px;
	background: #111;
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s;
}

.cs-newsletter-form button:hover { background: #38002A; }

.cs-newsletter-privacy { font-size: 12px; color: #999; margin-top: 8px; }
.cs-newsletter-privacy a { color: #666; text-decoration: underline; }

@media (max-width: 768px) {
	.cs-newsletter .cs-container {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.cs-newsletter-form { flex-direction: column; width: 100%; }
	.cs-newsletter-form input { width: 100%; }
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 10%;
}

@media (max-width: 768px) {
	.about-container { padding: 0 6%; }
}

/* About Hero */
.about-hero { padding: 120px 0 80px; }

.about-hero .about-container {
	display: flex;
	align-items: center;
	gap: 60px;
}

.about-hero-text { flex: 1; min-width: 0; }

.about-hero-eyebrow {
	font-size: 1.4rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #38002A;
	margin-bottom: 16px;
}

.about-hero-title {
	font-family: 'Archivo', sans-serif;
	font-size: 5.6rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -1px;
	color: #000;
	margin-bottom: 24px;
}

.about-hero-subtitle {
	font-size: 1.8rem;
	line-height: 1.65;
	color: #333;
	margin-bottom: 32px;
	max-width: 520px;
}

.about-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1.8rem;
	font-weight: 600;
	color: #38002A;
	border-bottom: 2px solid #38002A;
	padding-bottom: 4px;
	transition: color 0.3s, border-color 0.3s;
}

.about-hero-cta:hover { color: #3C6797; border-color: #3C6797; }

.about-hero-image {
	flex: 1;
	min-width: 0;
	border-radius: 16px;
	overflow: hidden;
	background: #e8e4df;
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-image .placeholder-icon { font-size: 6rem; color: #bbb; }

@media (max-width: 900px) {
	.about-hero .about-container { flex-direction: column; gap: 40px; }
	.about-hero-title { font-size: 4rem; }
	.about-hero-image { width: 100%; }
}

/* About Mission */
.about-mission { background: #111; padding: 80px 0; }
.about-mission .about-container { text-align: center; }

.about-mission-eyebrow {
	font-size: 1.3rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: rgba(255,255,255,0.5);
	margin-bottom: 16px;
}

.about-mission-title {
	font-family: 'Archivo', sans-serif;
	font-size: 4rem;
	font-weight: 600;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 24px;
}

.about-mission-text {
	font-size: 1.8rem;
	line-height: 1.75;
	color: rgba(255,255,255,0.75);
	max-width: 700px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.about-mission-title { font-size: 2.8rem; }
}

/* About Vision */
.about-vision { padding: 80px 0; background: #f9f7f4; }

.about-vision .about-container {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.about-vision-left { flex: 0 0 40%; }

.about-vision-eyebrow {
	font-size: 1.3rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #38002A;
	margin-bottom: 12px;
}

.about-vision-title {
	font-family: 'Archivo', sans-serif;
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1.15;
	color: #000;
}

.about-vision-right { flex: 1; }

.about-vision-text {
	font-size: 1.8rem;
	line-height: 1.75;
	color: #333;
}

@media (max-width: 768px) {
	.about-vision .about-container { flex-direction: column; gap: 24px; }
	.about-vision-title { font-size: 2.8rem; }
}

/* About Values */
.about-values { padding: 80px 0; }

.about-values-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 48px;
	flex-wrap: wrap;
	gap: 16px;
}

.about-values-title {
	font-family: 'Archivo', sans-serif;
	font-size: 3.6rem;
	font-weight: 600;
	color: #000;
	line-height: 1.15;
}

.about-values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.value-card {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 16px;
	padding: 36px 28px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.value-card-icon {
	width: 56px;
	height: 56px;
	background: #38002A;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 2.4rem;
	color: #fff;
}

.value-card-title {
	font-family: 'Archivo', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 12px;
}

.value-card-text { font-size: 1.5rem; line-height: 1.65; color: #666; }

@media (max-width: 900px) {
	.about-values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.about-values-grid { grid-template-columns: 1fr; }
	.about-values-title { font-size: 2.8rem; }
}

/* About Timeline */
.about-timeline { padding: 80px 0 100px; }
.about-timeline-header { margin-bottom: 60px; }

.about-timeline-eyebrow {
	font-size: 1.3rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #38002A;
	margin-bottom: 12px;
}

.about-timeline-title {
	font-family: 'Archivo', sans-serif;
	font-size: 3.6rem;
	font-weight: 600;
	color: #000;
	line-height: 1.15;
}

.timeline { position: relative; padding: 20px 0; }

.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0; bottom: 0;
	width: 2px;
	background: #ccc;
	transform: translateX(-50%);
}

.timeline-item {
	position: relative;
	width: 50%;
	padding: 0 40px 60px;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible { opacity: 1; transform: translateY(0); }
.timeline-item:nth-child(odd) { left: 0; text-align: right; padding-right: 60px; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; padding-left: 60px; }

.timeline-item::after {
	content: '';
	position: absolute;
	top: 8px;
	width: 16px;
	height: 16px;
	background: #38002A;
	border: 3px solid #f9f7f4;
	border-radius: 50%;
	z-index: 1;
}

.timeline-item:nth-child(odd)::after { right: -8px; }
.timeline-item:nth-child(even)::after { left: -8px; }

.timeline-year {
	font-family: 'Archivo', sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #38002A;
	margin-bottom: 8px;
}

.timeline-milestone {
	font-family: 'Archivo', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 8px;
}

.timeline-desc { font-size: 1.5rem; line-height: 1.65; color: #666; }

@media (max-width: 768px) {
	.timeline::before { left: 20px; }
	.timeline-item {
		width: 100%;
		padding: 0 0 40px 52px;
		text-align: left !important;
	}
	.timeline-item:nth-child(odd) { padding-right: 0; padding-left: 52px; }
	.timeline-item:nth-child(even) { left: 0; padding-left: 52px; }
	.timeline-item::after { left: 12px !important; right: auto !important; }
	.about-timeline-title { font-size: 2.8rem; }
}

/* About Stats */
.about-stats { padding: 80px 0; background: #fff; }

.about-stats .about-container {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.about-stats-left { flex: 0 0 35%; }

.about-stats-eyebrow {
	font-size: 1.3rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #38002A;
	margin-bottom: 12px;
}

.about-stats-title {
	font-family: 'Archivo', sans-serif;
	font-size: 3.6rem;
	font-weight: 600;
	color: #000;
	line-height: 1.15;
}

.about-stats-right { flex: 1; }

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.stat-card {
	background: #f9f7f4;
	border: 1px solid #e8e4df;
	border-radius: 16px;
	padding: 32px 28px;
	text-align: center;
}

.stat-number {
	font-family: 'Archivo', sans-serif;
	font-size: 4.8rem;
	font-weight: 700;
	color: #38002A;
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label { font-size: 1.4rem; color: #666; line-height: 1.4; }
.stat-card-full { grid-column: 1 / -1; }

@media (max-width: 768px) {
	.about-stats .about-container { flex-direction: column; gap: 32px; }
	.stats-grid { grid-template-columns: 1fr; }
	.about-stats-title { font-size: 2.8rem; }
}

/* About Team */
.about-team { padding: 80px 0; background: #f3f0ec; }
.about-team-header { text-align: center; margin-bottom: 48px; }

.about-team-title {
	font-family: 'Archivo', sans-serif;
	font-size: 3.6rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 12px;
}

.about-team-subtitle { font-size: 1.8rem; color: #666; }

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

.team-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.team-avatar {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: #e8e4df;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.team-avatar i { font-size: 3.6rem; color: #bbb; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-name {
	font-family: 'Archivo', sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 4px;
}

.team-role {
	font-size: 1.4rem;
	color: #38002A;
	font-weight: 500;
	margin-bottom: 12px;
}

.team-bio {
	font-size: 1.4rem;
	color: #666;
	line-height: 1.55;
	margin-bottom: 16px;
}

.team-social {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.team-social a {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f3f0ec;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 1.4rem;
	transition: background 0.3s, color 0.3s;
}

.team-social a:hover { background: #38002A; color: #fff; }

@media (max-width: 1100px) {
	.team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
	.team-grid { grid-template-columns: repeat(2, 1fr); }
	.about-team-title { font-size: 2.8rem; }
}

@media (max-width: 500px) {
	.team-grid { grid-template-columns: 1fr; }
}

/* About Hiring */
.about-hiring { padding: 60px 0; background: #f3f0ec; }

.hiring-card {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 16px;
	padding: 60px 40px;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.hiring-icon { font-size: 4rem; margin-bottom: 16px; }

.hiring-title {
	font-family: 'Archivo', sans-serif;
	font-size: 3.2rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 16px;
}

.hiring-text {
	font-size: 1.6rem;
	color: #666;
	margin-bottom: 28px;
	line-height: 1.65;
}

.hiring-btn {
	display: inline-block;
	background: #111;
	color: #fff;
	font-family: 'Archivo', sans-serif;
	font-size: 1.6rem;
	font-weight: 600;
	padding: 14px 36px;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
	text-decoration: none;
}

.hiring-btn:hover {
	background: #38002A;
	transform: translateY(-2px);
	color: #fff;
}

/* About Bottom CTA */
.about-cta { background: #38002A; padding: 80px 0; }
.about-cta .about-container { text-align: center; }

.about-cta-title {
	font-family: 'Archivo', sans-serif;
	font-size: 4rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.15;
}

.about-cta-text {
	font-size: 1.8rem;
	color: rgba(255,255,255,0.7);
	margin-bottom: 36px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.about-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.cta-btn-primary {
	display: inline-block;
	background: #fff;
	color: #38002A;
	font-family: 'Archivo', sans-serif;
	font-size: 1.6rem;
	font-weight: 600;
	padding: 14px 36px;
	border-radius: 50px;
	border: 2px solid #fff;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
}

.cta-btn-primary:hover {
	background: #38002A;
	color: #fff;
	border-color: #38002A;
}

.cta-btn-outline {
	display: inline-block;
	background: transparent;
	color: #fff;
	font-family: 'Archivo', sans-serif;
	font-size: 1.6rem;
	font-weight: 600;
	padding: 14px 36px;
	border-radius: 50px;
	border: 2px solid rgba(255,255,255,0.3);
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
}

.cta-btn-outline:hover { border-color: #fff; color: #fff; }

@media (max-width: 768px) {
	.about-cta-title { font-size: 2.8rem; }
}
