/* ==========================================================================
Lumn Lab — Static / WordPress-ready styles
Design tokens + section-based structure
========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

:root {
	--background: #ffffff;
	--foreground: #171717;
	--font-sans: "Instrument Sans", sans-serif;
	--font-serif: "Instrument Serif", serif;
	--color-accent: #FF6B7C;
	--color-dark: #212121;
	--color-dark-bg: #0a0a0a;
	--z-header: 200;
	--z-nav: 100;
	--z-scroll-top: 500;
}

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

* {
	font-optical-sizing: auto;
	font-variation-settings: "wdth" 100;
}

/* smooth scroll breaks GSAP ScrollTrigger scrub; use JS for in-page anchors if needed */
html {
	scroll-behavior: auto;
}

body.site-body {
	margin: 0;
	background: var(--background);
	color: var(--foreground);
	font-family: var(--font-sans);
	font-style: normal;
	overflow-x: hidden;
}

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

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ==========================================================================
HEADER
========================================================================== */

.site-header {
	position: fixed;
	top: 16px;
	left: 0;
	right: 0;
	z-index: var(--z-header);
	display: flex;
	align-items: center;
	padding-left: 15px;
	padding-right: 15px;
	pointer-events: none;
}

.header-pill {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 0.375rem 0.375rem 0.375rem;
	border-radius: 9999px;
	background-color: #21211f;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
	pointer-events: auto;
	z-index: 999;
	width: 100%;
	max-width: 294px;
}

@media (min-width: 640px) {
	.header-pill { gap: 0.75rem; }
}

.header-logo-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 24px;
	flex-shrink: 0;
	overflow: hidden;
	background-color: var(--color-accent);
}

@media (min-width: 640px) {
	.header-logo-link { width: 2.5rem; height: 2.5rem; }
}

.header-logo-img-wrap {
	position: absolute;
	inset: 0;
}

.header-logo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(0.9);
}

.header-brand {
	font-size: clamp(1.15rem, 2.5vw, 1.5rem);
	color: #fff;
	font-weight: 300;
	text-decoration: none;
	cursor: pointer;
	user-select: none;
	font-family: var(--font-sans);
	font-size: 24px;
	line-height: 24px;
	letter-spacing: 0.15em;
}

.header-toggle {
	padding: 0;
	position: relative;
	z-index: 1;
	cursor: pointer;
	color: #fff;
	border: none;
	border-left: 1px solid #ffffff4d;
	border-right: 1px solid #ffffff1a;
	background-image: linear-gradient(270deg, #ffffff21, #ffffff17 30%, #ffffff14 70%, #ffffff0f);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: auto;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(2px);
	transition: all 0.8s ease;
	border-radius: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: text;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 9999px;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.2s;
	background-color: rgb(0 0 0 / 10%);
	margin-left: auto;
}

.hamburger-inner {
	position: relative;
	width: 18px;
	height: 13px;
	flex-shrink: 0;
}

.header-toggle:hover,
.header-toggle[aria-expanded="true"] {
	background-color: rgba(255, 255, 255, 0.18);
}

@media (min-width: 640px) {
	.header-toggle { width: 2.5rem; height: 2.5rem; }
}

.header-toggle .hamburger-bar {
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	border-radius: 1px;
	background: currentColor;
	transform-origin: center center;
}

.hamburger-top { top: 0; transition: transform 0.22s ease 0s, opacity 0.22s ease 0s; }
.header-toggle[aria-expanded="false"] .hamburger-top { transition-delay: 0.34s; }
.header-toggle[aria-expanded="true"] .hamburger-top { transform: scaleX(0); opacity: 0; }

.hamburger-mid { top: 5.5px; }
.hamburger-mid-1 { transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) 0.24s; }
.header-toggle[aria-expanded="false"] .hamburger-mid-1 { transition-delay: 0s; }
.header-toggle[aria-expanded="true"] .hamburger-mid-1 { transform: rotate(45deg); }

.hamburger-mid-2 { top: 5.5px; transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) 0.24s, opacity 0s 0s; }
.header-toggle[aria-expanded="false"] .hamburger-mid-2 { opacity: 0; transition-delay: 0s, 0.32s; }
.header-toggle[aria-expanded="true"] .hamburger-mid-2 { transform: rotate(135deg); opacity: 1; }

.hamburger-bottom { top: 11px; transition: transform 0.22s ease 0s, opacity 0.22s ease 0s; }
.header-toggle[aria-expanded="false"] .hamburger-bottom { transition-delay: 0.34s; }
.header-toggle[aria-expanded="true"] .hamburger-bottom { transform: scaleX(0); opacity: 0; }

/* Nav overlay */
.nav-overlay {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	height: 80vh;
	background-color: var(--color-dark-bg);
	z-index: var(--z-nav);
	display: flex;
	flex-direction: column;
	transition: opacity 0.3s ease-in-out;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.nav-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

.nav-spacer {
	flex-shrink: 0;
	height: 4rem;
}

@media (min-width: 640px) {
	.nav-spacer { height: 5rem; }
}

/* Mobile nav */
.nav-mobile {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
	padding: 0 1.25rem 0.75rem;
}

@media (min-width: 1024px) {
	.nav-mobile { display: none; }
}

.nav-mobile-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	flex: 1;
	min-height: 0;
	padding-top: 20px;
}

.nav-mobile-col {
	display: flex;
	flex-direction: column;
	min-height: 0;
	gap: 1rem;
}

.nav-mobile-about {
	border-right: 1px solid rgba(255, 255, 255, 0.07);
	padding-right: 1rem;
}

.nav-about-card {
	display: block;
	border-radius: 0.75rem;
	padding: 0.75rem;
	background-color: rgba(255, 107, 124, 0.12);
	border: 1px solid rgba(255, 107, 124, 0.2);
	text-decoration: none;
	color: inherit;
}

.nav-about-card-logo {
	display: block;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 0.5rem;
	overflow: hidden;
	margin-bottom: 0.5rem;
	/* 	background: var(--color-accent); */
}

.nav-about-card-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nav-about-card-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin: 0 0 0.25rem;
}

.nav-about-card-desc {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.5;
	margin: 0;
}

.nav-about-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	margin-top: 0.5rem;
	font-size: 10px;
	color: var(--color-accent);
}

.nav-label {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.3);
	margin-top: 0;
	margin-bottom: 24px;
}

.nav-mobile-links .nav-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(0.35rem, 1.1vh, 0.8rem);
}

.nav-mobile-links .nav-list a {
	font-weight: 300;
	color: #fff;
	text-decoration: none;
	font-size: clamp(0.9rem, 3.5vw, 1.2rem);
	transition: color 0.2s;
}

.nav-mobile-links .nav-list a:hover {
	color: var(--color-accent);
}

.nav-coming-soon {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.3);
	font-size: clamp(0.9rem, 3.5vw, 1.2rem);
}

.nav-coming-soon em {
	font-style: normal;
	font-size: 8px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-accent);
	border: 1px solid var(--color-accent);
	border-radius: 9999px;
	padding: 0.125rem 0.375rem;
}

.nav-products-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(0.35rem, 1.1vh, 0.8rem);
}

.nav-products-list a {
	font-weight: 300;
	color: #fff;
	text-decoration: none;
	font-size: clamp(0.9rem, 3.5vw, 1.2rem);
	transition: color 0.2s;
}

.nav-products-list a:hover {
	color: var(--color-accent);
}

.nav-stat-card {
	border-radius: 0.75rem;
	padding: 0.75rem;
	margin-top: auto;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-stat-num {
	font-weight: 700;
	color: #fff;
	line-height: 1;
	margin-bottom: 0.25rem;
	font-size: clamp(1.5rem, 6vw, 2rem);
}

.nav-stat-desc {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
}

.nav-stat-sub {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.3);
	margin-top: 0.125rem;
}

/* Desktop nav */
.nav-desktop {
	display: none;
	position: absolute;
	inset: 0;
	bottom: auto;
	top: 0;
	height: 100%;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (min-width: 1024px) {
	.nav-desktop { display: grid; }
}

.nav-d-col {
	display: flex;
	flex-direction: column;
	padding: 0 1.5rem;
	overflow: hidden;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-d-col:last-child {
	border-right: none;
}

.nav-d-about {
	padding-top: calc(4rem + 1.25rem);
	padding-bottom: 1.25rem;
}

.nav-d-about-card {
	position: relative;
	border-radius: 1rem;
	padding: 1rem 1.5rem;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background-color: rgba(255, 107, 124, 0.13);
	border: 1px solid rgba(255, 107, 124, 0.22);
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s;
}

.nav-d-about-card:hover {
	opacity: 0.9;
}

.nav-d-about-logo {
	position: absolute;
	top: 1rem;
	right: 1.25rem;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	overflow: hidden;
	flex-shrink: 0;
}

.nav-d-about-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.3);
}

.nav-d-about-title {
	color: var(--color-accent);
	font-weight: 400;
	line-height: 1.2;
	padding-right: 3.5rem;
	margin: 0;
	font-size: clamp(2rem, 2.2vw, 2.6rem);
	font-family: var(--font-sans);
}

.nav-d-about-desc {
	color: rgba(255, 107, 124, 0.7);
	margin-top: 0.75rem;
	line-height: 1.5;
	font-size: 0.875rem;
}

.nav-d-products,
.nav-d-resources,
.nav-d-stat {
	padding-top: 1.5rem;
}

.nav-d-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.nav-d-list a {
	font-weight: 300;
	color: #fff;
	text-decoration: none;
	line-height: 1.2;
	font-size: clamp(1.7rem, 2.5vw, 3rem);
	transition: color 0.15s;
}

.nav-d-list a:hover {
	color: var(--color-accent);
}

.nav-d-coming-soon-wrap {
	position: relative;
	display: inline-block;
	cursor: default;
}

.nav-d-coming-soon {
	font-weight: 300;
	color: rgba(255, 255, 255, 0.3);
	font-size: clamp(1.7rem, 2.5vw, 3rem);
	line-height: 1.2;
}

.nav-d-coming-soon-badge {
	position: absolute;
	left: 0;
	top: 100%;
	margin-top: 0.25rem;
	opacity: 0;
	transition: opacity 0.2s ease;
	background-color: #FF6B7C;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	padding: 0.375rem 0.75rem;
	border-radius: 0.5rem;
	white-space: nowrap;
	pointer-events: none;
}

.nav-d-coming-soon-wrap:hover .nav-d-coming-soon-badge {
	opacity: 1;
}

.nav-d-stat {
	gap: 1rem;
	padding-bottom: 1.25rem;
}

.nav-d-stat-card {
	position: relative;
	border-radius: 1rem;
	padding: 1.5rem;
	overflow: hidden;
	flex: 0 0 42%;
	background-color: #e8e5e1;
}

.nav-d-stat-bubble {
	position: absolute;
	bottom: -1.5rem;
	right: -1.5rem;
	width: 12rem;
	height: 12rem;
	pointer-events: none;
}

.nav-d-stat-bubble img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.nav-d-stat-num {
	position: relative;
	z-index: 10;
	font-weight: 700;
	color: #18181b;
	line-height: 1;
	margin-bottom: 0.375rem;
	font-size: clamp(2.4rem, 3.2vw, 3.6rem);
	margin-top: 0;
}

.nav-d-stat-desc {
	position: relative;
	z-index: 10;
	font-size: 0.875rem;
	font-weight: 500;
	color: #52525b;
	line-height: 1.3;
	margin-bottom: 0;
}

.nav-d-stat-sub {
	position: relative;
	z-index: 10;
	font-size: 0.75rem;
	color: #a1a1aa;
	margin-top: 0.25rem;
}

.nav-d-stat-img {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	flex: 1;
	min-height: 0;
}

.nav-d-stat-img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nav-d-stat-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
HERO
========================================================================== */

.section-hero {
	position: relative;
	height: 120vh;
}

.hero-inner {
	height: 100%;
}

.hero-sticky {
	position: sticky;
	top: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding: 2vh;
}

.hero-video-wrap {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	border-radius: 30px;
}

.hero-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.5), rgba(0,0,0,0.6));
	z-index: 5;
}

.hero-bubble-overlay {
	position: absolute;
	inset: 0;
	z-index: 6;
	pointer-events: none;
	transition: transform 0.3s ease-out;
	overflow: hidden;
}

.hero-bubble-inner {
	width: 100%;
	height: 100%;
}

.hero-bubble-img {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 120%;
	height: 120%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	object-position: center center;
	opacity: 0.6;
	display: block;
}

.hero-content {
	position: absolute;
	top: 6rem;
	left: 1.5rem;
	z-index: 20;
}

@media (min-width: 640px) {
	.hero-content { top: 6rem; left: 2rem; }
}

@media (min-width: 768px) {
	.hero-content { top: 7rem; left: 2.5rem; }
}

.hero-title {
	margin: 0 0 1.5rem;
	font-family: var(--font-sans);
	font-weight: 400;
	font-size: 52px;
	line-height: 1;
	color: #fff;
	letter-spacing: 0.5px;
}

@media (min-width: 640px) {
	.hero-title { margin-bottom: 2.5rem; font-size: 64px; }
}

.hero-cta {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background: #fff;
	border-radius: 9999px;
	font-family: var(--font-sans);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
	text-decoration: none;
	transition: background 0.3s, transform 0.3s;
}

@media (min-width: 640px) {
	.hero-cta { padding: 12px 24px; }
}

.hero-cta:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: scale(1.05);
}

.hero-marquee-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 20;
	overflow: hidden;
	padding: 1rem 0;
}

@media (min-width: 640px) {
	.hero-marquee-wrap { padding: 1.5rem 0; }
}

.hero-marquee {
	display: flex;
	gap: 2rem;
	align-items: center;
	width: fit-content;
	will-change: transform;
}

@media (min-width: 640px) {
	.hero-marquee { gap: 3rem; }
}

@media (min-width: 768px) {
	.hero-marquee { gap: 4rem; }
}

.hero-marquee-track {
	display: flex;
	gap: 2rem;
	align-items: center;
	flex-shrink: 0;
}

@media (min-width: 640px) {
	.hero-marquee-track { gap: 3rem; }
}

@media (min-width: 768px) {
	.hero-marquee-track { gap: 4rem; }
}

.hero-marquee-track img {
	height: 1.5rem;
	width: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.8;
}

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

@media (min-width: 640px) {
	.hero-marquee-track img { height: 2rem; }
}

@media (min-width: 768px) {
	.hero-marquee-track img { height: 2.5rem; }
}

/* ==========================================================================
OUR STORY
========================================================================== */

.section-our-story {
	position: relative;
	min-height: 100vh;
	background: #000;
	color: #fff;
	padding: 3rem 1rem;
	display: flex;
	align-items: center;
	isolation: isolate;
}

@media (min-width: 640px) {
	.section-our-story { padding: 4rem 1.5rem; }
}

@media (min-width: 768px) {
	.section-our-story { padding: 5rem 2rem; }
}

@media (min-width: 1024px) {
	.section-our-story { padding: 6rem 2rem; }
}

.our-story-container {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
}

.our-story-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: center;
}

@media (min-width: 640px) {
	.our-story-grid { gap: 2rem; }
}

@media (min-width: 1024px) {
	.our-story-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.our-story-image {
	position: relative;
	height: 300px;
}

@media (min-width: 640px) {
	.our-story-image { height: 400px; }
}

@media (min-width: 768px) {
	.our-story-image { height: 500px; }
}

@media (min-width: 1024px) {
	.our-story-image { height: 600px; }
}

.our-story-image-inner {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 16px;
	overflow: hidden;
}

@media (min-width: 640px) {
	.our-story-image-inner { border-radius: 20px; }
}

.our-story-image-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.our-story-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	background: #000;
}

@media (min-width: 640px) {
	.our-story-content { gap: 2rem; }
}

@media (min-width: 1024px) {
	.our-story-content { padding-left: 2rem; gap: 2.5rem; }
}

.our-story-title {
	font-family: var(--font-serif);
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.1;
	letter-spacing: 3px;
	font-style: italic;
	margin: 0;
}

.our-story-title .line-wrapper {
	display: block;
	position: relative;
	overflow: hidden;
	line-height: inherit;
}

.our-story-title .line-mask {
	position: absolute;
	inset: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	transform-origin: right center;
	opacity: 0.85;
	z-index: 2;
	pointer-events: none;
}

.our-story-title .line-text {
	position: relative;
	z-index: 1;
	display: block;
}

@media (min-width: 640px) {
	.our-story-title { font-size: 1.5rem; }
}

@media (min-width: 768px) {
	.our-story-title { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
	.our-story-title { font-size: 2.25rem; }
}

.our-story-subtitle {
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.4;
	color: #FF6B7C;
	margin: 0;
}

@media (min-width: 640px) {
	.our-story-subtitle { font-size: 1.125rem; }
}

@media (min-width: 768px) {
	.our-story-subtitle { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
	.our-story-subtitle { font-size: 1.5rem; }
}

.our-story-body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.our-story-body p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	text-align: justify;
	margin: 0;
}

@media (min-width: 640px) {
	.our-story-body p { font-size: 1rem; }
}

@media (min-width: 768px) {
	.our-story-body p { font-size: 1.125rem; }
}

/* ==========================================================================
ABOUT US (single section; pin + scrub in animations.js)
========================================================================== */

.section-about-us {
	display: block;
	position: relative;
	height: 100vh;
	background: #fff;
	color: #000;
	overflow: hidden;
	width: 100%;
}

.section-about-us .about-us-video-wrap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
	transform: translateZ(0);
}

.about-us-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	overflow: hidden;
}

/* Before GSAP runs: hide stacked absolute blocks (no jumbled Vision/Mission overlap) */
.section-about-us .about-us-content-container {
	opacity: 0;
}

.section-about-us .about-us-content-block {
	opacity: 0;
	transform: translate3d(0, 70vh, 0);
}

.about-us-inner {
	position: relative;
	z-index: 10;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 1.5rem;
}

.about-us-intro {
	text-align: center;
	max-width: 56rem;
}

.about-us-intro-title {
	font-size: 2.25rem;
	font-weight: 600;
	font-style: italic;
	letter-spacing: 3px;
	margin-bottom: 1rem;
	font-family: var(--font-serif);
}

.about-us-intro-inner-title {
	font-size: 2.25rem;
	font-weight: 600;
	letter-spacing: 4px;
	margin-bottom: 0;
	margin-top: 0;
	font-family: var(--font-sans);
}

@media (min-width: 640px) {
	.about-us-intro-title { margin-bottom: 2rem; }
	.about-us-intro-inner-title { font-size: 3rem; }
}

.about-us-content-container {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1.5rem;
}

.about-us-content-block {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	padding: 0 1.5rem;
}

.about-us-content-title {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
	.about-us-content-title { font-size: 2.25rem; }
}

@media (min-width: 768px) {
	.about-us-content-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
	.about-us-content-title { font-size: 3.75rem; }
}

.about-us-content-title span {
	color: #ff6b7c;
}

.about-us-content-line {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 56rem;
	margin: 0.125rem auto;
	line-height: 1.4;
}

@media (min-width: 640px) {
	.about-us-content-line { font-size: 1.125rem; }
}

@media (min-width: 768px) {
	.about-us-content-line { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
	.about-us-content-line { font-size: 1.5rem; }
}

@media (max-width: 767px) {
	.section-about-us .about-us-intro-title {
		font-size: 1.75rem;
		margin-bottom: 0.75rem;
	}

	.section-about-us .about-us-content-title {
		font-size: 1.375rem;
	}

	.section-about-us .about-us-content-line {
		font-size: 0.8125rem;
	}
}

/* ==========================================================================
ABOUT HERO (Our Story + image) — matches AboutHeroSection.tsx
========================================================================== */

.section-about-hero {
	background: #fff;
	padding-top: 6rem;
	padding-bottom: 0;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

@media (min-width: 640px) {
	.section-about-hero { padding-top: 7rem; }
}

@media (min-width: 768px) {
	.section-about-hero { padding-top: 6rem; padding-left: 88px; padding-right: 88px; }
}

.about-hero-inner {
	max-width: 100%;
}

.about-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding-bottom: 2rem;
}

@media (min-width: 1024px) {
	.about-hero-grid {
		grid-template-columns: 1fr 1fr;
		gap: 3.5rem;
		padding-bottom: 2.5rem;
	}
}

.about-hero-label {
	font-size: 1.25rem;
	font-weight: 700;
	color: #FF6B7C;
	margin: 0 0 0.5rem;
}

.about-hero-title {
	font-family: var(--font-sans);
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 1.05;
	color: #18181b;
	margin: 0;
}

@media (min-width: 768px) {
	.about-hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
	.about-hero-title { font-size: 3.75rem; }
}

.about-hero-right {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.about-hero-text {
	font-size: 0.875rem;
	color: #18181b;
	line-height: 1.625;
	margin: 0;
}

@media (min-width: 640px) {
	.about-hero-text { font-size: 1rem; }
}

.about-hero-image-wrap {
	position: relative;
	width: 100%;
	height: 300px;
	border-radius: 1rem;
	overflow: hidden;
}

@media (min-width: 640px) {
	.about-hero-image-wrap { height: 420px; }
}

@media (min-width: 768px) {
	.about-hero-image-wrap { height: 560px; }
}

@media (min-width: 1024px) {
	.about-hero-image-wrap { height: 680px; }
}

.about-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about-hero-bubble {
	position: absolute;
	inset: 0;
	z-index: 10;
	pointer-events: none;
	transition: transform 0.4s ease-out;
}

.about-hero-bubble img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.5;
}

/* ==========================================================================
WHAT SETS US APART — matches WhatSetsUsApartSection.tsx
========================================================================== */

.section-what-sets {
	background: #fff;
	padding-top: 4rem;
	padding-bottom: 4rem;
}

@media (min-width: 768px) {
	.section-what-sets { padding-top: 6rem; padding-bottom: 6rem; }
}

.what-sets-inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	max-width: 1800px;
}

@media (min-width: 640px) {
	.what-sets-inner { padding-left: 2.5rem; padding-right: 2.5rem; }
}

@media (min-width: 768px) {
	.what-sets-inner { padding-left: 4rem; padding-right: 4rem; }
}

@media (min-width: 1024px) {
	.what-sets-inner { padding-left: 5rem; padding-right: 5rem; }
}

.what-sets-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: start;
}

@media (min-width: 1024px) {
	.what-sets-grid {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
}

.what-sets-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #FF6B7C;
	margin: 0 0 1rem;
}

.what-sets-title {
	font-family: var(--font-serif);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 2px;
	font-style: italic;
	color: #18181b;
	margin: 0 0 1rem;
}

@media (min-width: 768px) {
	.what-sets-title { font-size: 3rem; }
}

.what-sets-desc {
	font-size: 0.875rem;
	color: #71717a;
	line-height: 1.625;
	max-width: 28rem;
	margin: 0 0 2rem;
}

@media (min-width: 640px) {
	.what-sets-desc { font-size: 1rem; }
}

.what-sets-list {
	display: flex;
	flex-direction: column;
}

.what-sets-item {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	padding-top: 1.75rem;
	padding-bottom: 1.75rem;
	padding-left: 1rem;
	padding-right: 1rem;
	margin-left: -1rem;
	margin-right: -1rem;
	border-radius: 0.75rem;
	transition: background-color 0.2s;
}

.what-sets-item:first-child {
	padding-top: 0;
}

.what-sets-item:last-child {
	padding-bottom: 0;
}

.what-sets-item:hover {
	background-color: rgba(0, 0, 0, 0.02);
}

.what-sets-item-icon {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	position: relative;
}

.what-sets-item-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.what-sets-item h3 {
	font-size: 1rem;
	font-weight: 600;
	color: #18181b;
	margin: 0 0 0.375rem;
	transition: color 0.2s;
}

@media (min-width: 640px) {
	.what-sets-item h3 { font-size: 1.125rem; }
}

.what-sets-item:hover h3 {
	color: #FF6B7C;
}

.what-sets-item p {
	font-size: 0.875rem;
	color: #71717a;
	line-height: 1.625;
	margin: 0;
}

.what-sets-item + .what-sets-item {
	border-top: 1px solid #e4e4e7;
}

/* ==========================================================================
ABOUT CTA — matches AboutCTASection.tsx
========================================================================== */

.section-about-cta {
	background: #fff;
	padding: 2.5rem 1rem;
}

@media (min-width: 640px) {
	.section-about-cta { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
	.section-about-cta { padding-top: 3.5rem; padding-bottom: 3.5rem; padding-left: 2rem; padding-right: 2rem; }
}

@media (min-width: 1024px) {
	.section-about-cta { padding-left: 3rem; padding-right: 3rem; }
}

.about-cta-inner {
	position: relative;
	overflow: hidden;
	background: #FF6B7C;
	border-radius: 1rem;
	padding: 3.5rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

@media (min-width: 640px) {
	.about-cta-inner { padding-left: 3rem; padding-right: 3rem; }
}

@media (min-width: 768px) {
	.about-cta-inner { padding-top: 5rem; padding-bottom: 5rem; padding-left: 4rem; padding-right: 4rem; }
}

/* Bubble: same as React — right-[-80px] bottom-[-580px] -translate-y-1/2; scale toggled by JS (IntersectionObserver) */
.about-cta-bubble {
	position: absolute;
	right: -80px;
	bottom: -380px;
	width: 280px;
	height: 280px;
	opacity: 0.8;
	pointer-events: none;
	transform: translateY(-50%) scale(0.7);
	transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-cta-bubble].cta-bubble-visible .about-cta-bubble {
	transform: translateY(-50%) scale(1.35);
}

@media (min-width: 768px) {
	.about-cta-bubble {
		width: 420px;
		height: 420px;
	}
}

.about-cta-bubble img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.about-cta-content {
	position: relative;
	z-index: 10;
	max-width: 42rem;
}

.about-cta-title {
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.025em;
	color: #fff;
	margin: 0 0 1.5rem;
}

@media (min-width: 640px) {
	.about-cta-title { font-size: 3rem; }
}

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

.about-cta-desc {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	line-height: 1.625;
	margin: 0 0 2rem;
	max-width: 28rem;
}

@media (min-width: 640px) {
	.about-cta-desc { font-size: 1.125rem; }
}

.about-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	background: #fff;
	color: #FF6B7C;
	font-weight: 600;
	font-size: 0.875rem;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.about-cta-btn:hover {
	background: rgba(255, 255, 255, 0.9);
	color: #e85c6d;
}

.about-cta-btn svg {
	flex-shrink: 0;
}

/* ==========================================================================
SERVICES
========================================================================== */

/* Services We Offer — matches app/components/ServicesSection.tsx */
.section-services {
	position: relative;
	width: 100%;
	background: #fff;
	overflow: hidden;
	padding-top: 3rem;
	padding-bottom: 3rem;
	padding-left: 0;
	padding-right: 0;
}

@media (min-width: 768px) {
	.section-services {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
}

@media (min-width: 1024px) {
	.section-services {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}

.section-title {
	font-family: var(--font-serif);
	font-weight: 600;
	font-style: italic;
	letter-spacing: -0.025em;
	line-height: 1.05;
}

.section-title-services {
	font-size: 3rem;
	color: #212121;
	margin-bottom: 2rem;
	text-align: center;
}

@media (min-width: 768px) {
	.section-title-services { margin-bottom: 3rem; }
}

.services-container {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 640px) {
	.services-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
	.services-container { padding-left: 2rem; padding-right: 2rem; }
}

@media (min-width: 1024px) {
	.services-container { padding-left: 3rem; padding-right: 3rem; }
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.services-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.services-grid {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 2rem;
	}
}

.card-service {
	position: relative;
	border-radius: 1rem;
	padding: 2rem;
	overflow: hidden;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media (min-width: 768px) {
	.card-service {
		padding: 2.5rem;
		min-height: 450px;
	}
}

@media (min-width: 1024px) {
	.card-service {
		border-radius: 1.5rem;
		padding: 3rem;
		min-height: 500px;
	}
}

.card-service-content {
	position: relative;
	z-index: 10;
}

.card-service-content h3 {
	font-size: 1.25rem;
	font-weight: 400;
	color: #fff;
	margin-bottom: 1rem;
	line-height: 1.25;
	letter-spacing: -0.025em;
}

@media (min-width: 768px) {
	.card-service-content h3 { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
	.card-service-content h3 { font-size: 1.875rem; }
}

.card-service-content p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 300;
	line-height: 1.625;
	margin: 0;
}

.card-service-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

/* First card: bubble strip at bottom 2/3, full width */
.card-service-bubble {
	bottom: 0;
	left: 0;
	right: 0;
	top: auto;
	height: 66.67%;
	width: auto;
	opacity: 0.6;
	overflow: hidden;
}

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

/* Second card: full-bleed image with 40% opacity */
.card-service-img {
	inset: 0;
}

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

/* Third card: single bubble bottom-right (matches React bottom-[-15%] -right-[10%]) */
.card-service-bubble-3 {
	top: auto;
	left: auto;
	bottom: -15%;
	right: -10%;
	width: 250px;
	height: 250px;
	opacity: 0.6;
	overflow: visible;
}

@media (min-width: 768px) {
	.card-service-bubble-3 {
		width: 300px;
		height: 300px;
	}
}

.card-service-bubble-3 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* ==========================================================================
WHY CHOOSE — matches components/WhyChooseSection.tsx
========================================================================== */

.section-why-choose {
	background: #fff;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
	padding-left: 0;
	padding-right: 0;
}

@media (min-width: 768px) {
	.section-why-choose {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}
}

.why-choose-container {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 640px) {
	.why-choose-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
	.why-choose-container { padding-left: 2rem; padding-right: 2rem; }
}

@media (min-width: 1024px) {
	.why-choose-container { padding-left: 3rem; padding-right: 3rem; }
}

.why-choose-inner {
	background: #f0eeeb;
	border-radius: 1rem;
	padding: 1.5rem;
}

@media (min-width: 640px) {
	.why-choose-inner { padding: 2rem; }
}

@media (min-width: 768px) {
	.why-choose-inner { padding: 2.5rem; }
}

@media (min-width: 1024px) {
	.why-choose-inner { padding: 3rem; }
}

.why-choose-header {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(113, 113, 122, 0.6);
	margin-bottom: 2rem;
}

@media (min-width: 1024px) {
	.why-choose-header {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		padding-bottom: 2.5rem;
		margin-bottom: 2.5rem;
	}
}

.why-choose-title-wrap .section-title {
	font-size: 3rem;
	color: #18181b;
	letter-spacing: -0.025em;
	line-height: 1.05;
}

.why-choose-desc-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1rem;
}

.why-choose-lead {
	font-size: 1.125rem;
	font-weight: 600;
	color: #27272a;
	line-height: 1.5;
	margin: 0 0 0.5rem;
}

@media (min-width: 768px) {
	.why-choose-lead { font-size: 1.25rem; }
}

.why-choose-text {
	font-size: 0.875rem;
	color: #71717a;
	line-height: 1.625;
	margin: 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: background-color 0.2s;
	cursor: pointer;
	border: none;
	font-family: inherit;
}

.btn-fit {
	width: max-content;
}

.btn-icon {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.btn-dark {
	background: #18181b;
	color: #fff;
}

.btn-dark:hover {
	background: #3f3f46;
}

.why-choose-desc-wrap .btn {
	align-self: flex-start;
	width: fit-content;
}

.why-choose-desc-wrap .btn span {
	flex: 1 1 auto;
}

.why-choose-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

@media (min-width: 640px) {
	.why-choose-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	.card-why-cta {
		grid-column: span 2;
	}
}

@media (min-width: 1024px) {
	.why-choose-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.card-why-cta {
		grid-column: span 1;
	}
}

.card-why {
	position: relative;
	overflow: hidden;
	background: #e8e5e1;
	color: #FF6B7C;
	border-radius: 0.75rem;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: background-color 0.3s, color 0.3s;
}

@media (min-width: 768px) {
	.card-why { padding: 1.5rem; }
}

.card-why:hover {
	background: #FF6B7C;
	color: #fff;
}

.card-why-bubble {
	position: absolute;
	bottom: -4rem;
	right: -4rem;
	width: 12rem;
	height: 12rem;
	pointer-events: none;
	opacity: 0;
	transform: scale(0.75);
	transition: opacity 0.5s, transform 0.5s;
	background: url("../images/bubble/bubble.avif") center/contain no-repeat;
}

.card-why:hover .card-why-bubble {
	opacity: 0.8;
	transform: scale(1);
}

.card-why-icon {
	position: relative;
	z-index: 10;
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
	display: block;
	color: currentColor;
	transition: color 0.3s;
}

.card-why-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

@media (min-width: 768px) {
	.card-why-icon { width: 3rem; height: 3rem; }
}

.card-why-text {
	position: relative;
	z-index: 10;
}

.card-why-text h3 {
	font-size: 1rem;
	font-weight: 600;
	color: #27272a;
	margin-bottom: 0.5rem;
	line-height: 1.375;
	transition: color 0.3s;
}

@media (min-width: 768px) {
	.card-why-text h3 { font-size: 1.125rem; }
}

.card-why:hover .card-why-text h3 {
	color: #fff;
}

.card-why-text p {
	font-size: 15px;
	color: #71717a;
	line-height: 1.6;
	margin: 0;
	transition: color 0.3s;
}

.card-why:hover .card-why-text p {
	color: rgba(255, 255, 255, 0.9);
}

.card-why-cta {
	background: #18181b;
}

.card-why-cta .card-why-bubble-cta {
	bottom: -2.5rem;
	right: -2.5rem;
	width: 9rem;
	height: 9rem;
	opacity: 0.5;
}

.card-why-cta-text {
	position: relative;
	z-index: 10;
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.125rem;
	line-height: 1.6;
	margin: 0;
}

.card-why-cta-link {
	position: relative;
	z-index: 10;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s;
}

.card-why-cta-link:hover {
	color: var(--color-accent);
}

.card-why-cta-icon {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
	transition: transform 0.2s, color 0.2s;
}

.card-why-cta-link:hover .card-why-cta-icon {
	transform: translateX(0.25rem);
	color: var(--color-accent);
}

/* ==========================================================================
PRODUCTS (horizontal scroll sections)
========================================================================== */

.section-products-mobile {
	display: block;
	position: relative;
	height: 400vh;
	height: 400dvh;
}

@media (min-width: 768px) {
	.section-products-mobile { display: none; }
}

.section-products-desktop {
	display: none;
	position: relative;
	height: 350vh;
	height: 350dvh;
}

@media (min-width: 768px) {
	.section-products-desktop { display: block; }
}

.products-sticky {
	position: sticky;
	top: 0;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
}

.products-intro-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.products-bg-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.products-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.products-bg-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
}

.products-bubble-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70vw;
	height: 70vw;
	max-width: 400px;
	max-height: 400px;
	z-index: 5;
	transition: transform 0.25s ease-out;
}

.products-bubble-center img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.products-bubble-desktop {
	left: 60%;
	width: 50vw;
	height: 50vw;
	max-width: 600px;
	max-height: 600px;
}

.products-intro-content {
	position: relative;
	z-index: 10;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 1.5rem;
}

.products-intro-desktop {
	padding: 0 1.5rem;
	max-width: 56rem;
}

@media (min-width: 640px) {
	.products-intro-desktop { padding: 0 2rem; }
}

@media (min-width: 768px) {
	.products-intro-desktop { padding: 0 4rem; }
}

@media (min-width: 1024px) {
	.products-intro-desktop { padding: 0 6rem; }
}

.products-intro-title {
	font-family: var(--font-serif);
	color: #fff;
	font-size: 3rem;
	line-height: 1.05;
	margin: 0 0 1rem;
	font-weight: 500;
}

.products-intro-desktop .products-intro-title {
	font-size: 4rem;
}

@media (min-width: 640px) {
	.products-intro-desktop .products-intro-title { font-size: 4rem; }
}

@media (min-width: 768px) {
	.products-intro-desktop .products-intro-title { font-size: 5rem; }
}

@media (min-width: 1024px) {
	.products-intro-desktop .products-intro-title { font-size: 6rem; }
}

.products-intro-title span {
	font-style: italic;
	color: rgba(255, 255, 255, 0.95);
}

.products-intro-desc {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 36rem;
	line-height: 1.6;
	font-weight: 300;
	margin: 0;
}

@media (min-width: 768px) {
	.products-intro-desktop .products-intro-desc { font-size: 1.125rem; margin-bottom: 2rem; }
}

@media (min-width: 1024px) {
	.products-intro-desktop .products-intro-desc { font-size: 1.25rem; margin-bottom: 3rem; }
}

.products-scroll-hint {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.5);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-top: 1.5rem;
}

.products-scroll-hint-arrow {
	flex-shrink: 0;
}

.section-products-mobile .products-scroll-hint-arrow {
	transform: rotate(90deg);
}

.products-cards-wrap {
	position: relative;
	z-index: 10;
	display: flex;
	height: 100%;
	will-change: transform;
	transform: translateX(100vw);
}

.products-cards-desktop {
	display: flex;
}

.card-product {
	flex-shrink: 0;
	width: 100vw;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1.5rem;
	background: #fff;
}

@media (min-width: 768px) {
	.card-product { width: 50vw; padding: 0 1.5rem 1rem; }
}

@media (min-width: 1024px) {
	.card-product { padding: 0 2rem 2rem; }
}

.card-product-article {
	width: 100%;
	max-width: 32rem;
}

.products-cards-desktop .card-product-article {
	max-width: 42rem;
	padding-top: 8rem;
	padding-bottom: 3rem;
}

.card-product .card-product-img {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 18;
	border-radius: 1rem;
	overflow: hidden;
	background: #f4f4f5;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

@media (min-width: 768px) {
	.card-product .card-product-img { aspect-ratio: 16 / 9; border-radius: 1.5rem; max-height: 46vh; }
}

.card-product .card-product-img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-product h3 {
	font-size: 1.875rem;
	font-weight: 400;
	color: #212121;
	margin-bottom: 1rem;
	line-height: 1.25;
	letter-spacing: -0.025em;
}

@media (min-width: 768px) {
	.card-product h3 { font-size: 2.25rem; font-weight: 500; }
}

@media (min-width: 1024px) {
	.card-product h3 { font-size: 3rem; }
}

.card-product p {
	font-size: 1.125rem;
	color: #52525b;
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

@media (min-width: 768px) {
	.card-product p { margin-bottom: 2.5rem; }
}

@media (min-width: 1024px) {
	.card-product p { font-size: 1.25rem; }
}

/* ==========================================================================
FAQ
========================================================================== */

.section-faq {
	background: #fff;
	padding: 2.5rem 0;
}

@media (min-width: 768px) {
	.section-faq { padding: 3.5rem 0; }
}

.faq-container {
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 1024px) {
	.faq-container { padding: 0 3rem; }
}

.faq-inner {
	background: #e8e5e1;
	border-radius: 1rem;
	padding: 1.5rem;
}

@media (min-width: 640px) {
	.faq-inner { padding: 2rem; }
}

@media (min-width: 768px) {
	.faq-inner { padding: 2.5rem; }
}

@media (min-width: 1024px) {
	.faq-inner { padding: 3rem; }
}

.faq-header {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(113, 113, 122, 0.6);
	margin-bottom: 2rem;
}

@media (min-width: 1024px) {
	.faq-header { grid-template-columns: 1fr 1fr; gap: 4rem; padding-bottom: 2.5rem; margin-bottom: 2.5rem; }
}

.faq-header .section-title {
	font-size: 2.25rem;
}

@media (min-width: 768px) {
	.faq-header .section-title { font-size: 3rem; }
}

.faq-desc {
	font-size: 1rem;
	color: #71717a;
	line-height: 1.6;
	margin: 0.5rem 0 0;
}

@media (min-width: 768px) {
	.faq-desc { font-size: 1.125rem; }
}

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

@media (min-width: 1024px) {
	.faq-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.faq-col {
	border-top: 1px solid rgba(113, 113, 122, 0.7);
}

@media (min-width: 1024px) {
	.faq-col { border-top: none; }
}

.faq-item {
	border-bottom: 1px solid rgba(113, 113, 122, 0.7);
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.25rem 0;
	text-align: left;
	background: none;
	border: none;
	font: inherit;
	color: inherit;
	cursor: pointer;
	transition: color 0.2s;
}

.faq-question span:first-child {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.3;
	color: #18181b;
	transition: color 0.2s;
}

@media (min-width: 768px) {
	.faq-question span:first-child { font-size: 1.125rem; }
}

.faq-question:hover span:first-child,
.faq-item.is-open .faq-question span:first-child {
	color: var(--color-accent);
}

.faq-icon {
	flex-shrink: 0;
	margin-top: 2px;
	width: 18px;
	height: 18px;
	border-radius: 9999px;
	border: 1px solid #a1a1aa;
	color: #a1a1aa;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.faq-icon svg {
	width: 10px;
	height: 10px;
}

.faq-item.is-open .faq-icon {
	border-color: var(--color-accent);
	color: var(--color-accent);
	transform: rotate(45deg);
}

.faq-answer {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.3s ease-in-out, opacity 0.3s;
}

.faq-item.is-open .faq-answer {
	max-height: 16rem;
	opacity: 1;
}

.faq-answer p {
	padding-bottom: 1.25rem;
	font-size: 1rem;
	color: #71717a;
	line-height: 1.6;
	margin: 0;
}

@media (min-width: 768px) {
	.faq-answer p { font-size: 16px; }
}

/* ==========================================================================
CONTACT
========================================================================== */

.section-contact {
	position: relative;
	min-height: 100vh;
	background: #000;
	color: #fff;
}

.contact-bubble {
	position: absolute;
	bottom: 1.5rem;
	left: -20%;
	width: 180px;
	height: 180px;
	opacity: 0.8;
	transition: transform 0.5s;
}

.contact-bubble:hover {
	transform: translate(1rem, -1rem) rotate(-270deg);
}

.contact-bubble img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (min-width: 768px) {
	.contact-bubble { left: -10%; width: 400px; height: 400px; }
}

@media (min-width: 1024px) {
	.contact-bubble { width: 500px; height: 500px; }
}

.contact-inner {
	position: relative;
	z-index: 10;
	margin: 0 auto;
	padding: 5.5rem 1.5rem 3.5rem;
}

@media (min-width: 768px) {
	.contact-inner { padding: 5rem 3.6rem; }
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	min-height: calc(100vh - 10rem);
}

@media (min-width: 1024px) {
	.contact-grid { grid-template-columns: 1fr 1fr; gap: 16rem; }
}

.contact-title-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 1rem;
}

@media (min-width: 1024px) {
	.contact-title-wrap { justify-content: flex-start; }
}

@media (min-width: 768px) {
	.contact-title-wrap { padding-top: 3rem; }
}

.contact-title {
	font-family: var(--font-serif);
	font-size: 2.25rem;
	font-style: italic;
	margin: 0;
	font-weight: 300;
}

@media (min-width: 640px) {
	.contact-title { font-size: 3rem; }
}

@media (min-width: 768px) {
	.contact-title { font-size: 4rem; }
}

@media (min-width: 1024px) {
	.contact-title { font-size: 5rem; }
}

@media (min-width: 1280px) {
	.contact-title { font-size: 6rem; }
}

.contact-form-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 1rem;
}

@media (min-width: 768px) {
	.contact-form-wrap { padding-top: 3rem; }
}

.contact-form-box {
	width: 100%;
	max-width: 42rem;
	background: #212121;
	border-radius: 1rem;
	padding: 1.5rem;
}

@media (min-width: 768px) {
	.contact-form-box { padding: 1rem; }
}

@media (min-width: 1024px) {
	.contact-form-box { padding: 1.5rem; }
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

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

.form-group input,
.form-group textarea {
	width: 100%;
	background: #2a2a2a;
	border: 1px solid #3f3f46;
	border-radius: 0.5rem;
	padding: 1rem 1.25rem;
	font-size: 1rem;
	color: #fff;
	font-family: inherit;
	transition: border-color 0.2s, outline 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #71717a;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #71717a;
}

.form-group textarea {
	resize: none;
	min-height: 120px;
}

.form-error {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: #f87171;
}

.form-status {
	padding: 1rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
}

.form-status.is-success {
	background: rgba(34, 197, 94, 0.1);
	color: #4ade80;
	border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-status.is-error {
	background: rgba(248, 113, 113, 0.1);
	color: #f87171;
	border: 1px solid rgba(248, 113, 113, 0.2);
}

.form-submit-wrap {
	padding-top: 1rem;
}

.btn-contact {
	padding: 0.75rem 2.5rem;
	background: #fff;
	color: #000;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 700;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.2s;
}

.btn-contact:hover {
	background: #e4e4e7;
}

.btn-contact:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Contact — WPForms: scoped to #contact / #contact-form-box; !important beats plugin + theme */
#contact .contact-form-box,
#contact-form-box.contact-form-box {
	background: #222222 !important;
	border-radius: 1rem !important;
}

#contact .contact-form-box .wpforms-container,
#contact-form-box .wpforms-container {
	margin: 0 !important;
	max-width: none !important;
	padding: 0 !important;
}

#contact .contact-form-box .wpforms-form,
#contact-form-box .wpforms-form {
	display: flex !important;
	flex-direction: column !important;
	gap: 1rem !important;
	margin: 0 !important;
	padding: 0 !important;
}

#contact .contact-form-box .wpforms-field-container,
#contact .contact-form-box .wpforms-field-layout-spacer,
#contact-form-box .wpforms-field-container,
#contact-form-box .wpforms-field-layout-spacer {
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

#contact .contact-form-box .wpforms-field,
#contact-form-box .wpforms-field {
	padding: 0 !important;
	margin: 0 0 0 0 !important;
	border: none !important;
	background: transparent !important;
	display: flex !important;
	flex-direction: column !important;
	width: 100% !important;
}

#contact .contact-form-box .wpforms-field-label:not(.wpforms-error),
#contact .contact-form-box .wpforms-field-sublabel,
#contact-form-box .wpforms-field-label:not(.wpforms-error),
#contact-form-box .wpforms-field-sublabel {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

#contact .contact-form-box label.wpforms-error,
#contact-form-box label.wpforms-error {
	position: static !important;
	width: auto !important;
	height: auto !important;
	clip: auto !important;
	overflow: visible !important;
	white-space: normal !important;
}

#contact .contact-form-box .wpforms-field-sublabel-after,
#contact-form-box .wpforms-field-sublabel-after {
	display: none !important;
}

/* Inputs: white fields, grey placeholders (reference design) — catch all WPForms class variants */
#contact .contact-form-box input[type="text"],
#contact .contact-form-box input[type="email"],
#contact .contact-form-box input[type="tel"],
#contact .contact-form-box input[type="url"],
#contact .contact-form-box input[type="number"],
#contact .contact-form-box input[type="search"],
#contact .contact-form-box textarea,
#contact .contact-form-box select,
#contact .contact-form-box .wpforms-field input.input-text,
#contact .contact-form-box .wpforms-field input[type="text"],
#contact .contact-form-box .wpforms-field input[type="email"],
#contact .contact-form-box .wpforms-field input[type="tel"],
#contact .contact-form-box .wpforms-field textarea,
#contact .contact-form-box .wpforms-field textarea.wpforms-field-medium,
#contact .contact-form-box .wpforms-field input.wpforms-field-medium,
#contact-form-box input[type="text"],
#contact-form-box input[type="email"],
#contact-form-box input[type="tel"],
#contact-form-box input[type="url"],
#contact-form-box input[type="number"],
#contact-form-box textarea,
#contact-form-box select,
#contact-form-box .wpforms-field input,
#contact-form-box .wpforms-field textarea {
	width: 100%;
	background: #2a2a2a;
	border: 1px solid #3f3f46;
	border-radius: 0.5rem;
	padding: 1rem 1.25rem;
	font-size: 1rem;
	color: #fff;
	font-family: inherit;
	transition: border-color 0.2s, outline 0.2s;
	height: auto;
}

#contact .contact-form-box input::placeholder,
#contact .contact-form-box textarea::placeholder,
#contact-form-box input::placeholder,
#contact-form-box textarea::placeholder {
	color: #71717a;
	opacity: 1 !important;
}


#contact .contact-form-box input:focus-visible,
#contact .contact-form-box textarea:focus-visible,
#contact .contact-form-box select:focus-visible,
#contact-form-box input:focus-visible,
#contact-form-box textarea:focus-visible,
#contact-form-box select:focus-visible,
#contact .contact-form-box input:focus,
#contact .contact-form-box textarea:focus,
#contact .contact-form-box select:focus,
#contact-form-box input:focus,
#contact-form-box textarea:focus,
#contact-form-box select:focus {
	outline: none !important;
	border-color: #71717a !important;
}

#contact .contact-form-box textarea,
#contact-form-box textarea {
	resize: vertical !important;
	min-height: 140px !important;
}

#contact .contact-form-box .wpforms-field-description,
#contact .contact-form-box .wpforms-field-limit-text,
#contact-form-box .wpforms-field-description,
#contact-form-box .wpforms-field-limit-text {
	font-size: 0.8125rem !important;
	color: #a1a1aa !important;
	margin-top: 0.375rem !important;
}

#contact .contact-form-box .wpforms-error-container,
#contact .contact-form-box label.wpforms-error,
#contact-form-box .wpforms-error-container,
#contact-form-box label.wpforms-error {
	margin-top: 0.5rem !important;
	font-size: 0.875rem !important;
	color: #f87171 !important;
}

#contact .contact-form-box .wpforms-submit-container,
#contact-form-box .wpforms-submit-container {
	padding-top: 1rem !important;
	margin: 0 !important;
	text-align: left !important;
}

#contact .contact-form-box .wpforms-submit-container .wpforms-submit,
#contact .contact-form-box .wpforms-submit-container button[type="submit"],
#contact .contact-form-box .wpforms-submit-container input[type="submit"],
#contact-form-box .wpforms-submit,
#contact-form-box button[type="submit"],
#contact-form-box input[type="submit"] {
	padding: 0.75rem 2.5rem;
	background: #fff;
	color: #000;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 700;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.2s;
}

#contact .contact-form-box .wpforms-submit-container .wpforms-submit:hover,
#contact .contact-form-box .wpforms-submit-container button[type="submit"]:hover,
#contact .contact-form-box .wpforms-submit-container input[type="submit"]:hover,
#contact-form-box .wpforms-submit:hover,
#contact-form-box button[type="submit"]:hover,
#contact-form-box input[type="submit"]:hover {
	background: #e4e4e7;
}

#contact .contact-form-box .wpforms-submit-container .wpforms-submit:disabled,
#contact .contact-form-box .wpforms-submit-container input[type="submit"]:disabled,
#contact-form-box .wpforms-submit:disabled,
#contact-form-box input[type="submit"]:disabled {
	opacity: 0.55 !important;
	cursor: not-allowed !important;
}

#contact .contact-form-box .wpforms-confirmation-container-full,
#contact-form-box .wpforms-confirmation-container-full {
	padding: 1rem !important;
	border-radius: 0.5rem !important;
	font-size: 0.875rem !important;
	background: rgba(34, 197, 94, 0.12) !important;
	color: #4ade80 !important;
	border: 1px solid rgba(34, 197, 94, 0.25) !important;
}

#contact .contact-form-box .wpforms-confirmation-container-full p, #contact-form-box .wpforms-confirmation-container-full p {
	color: #fff !important;
}

#contact .contact-form-box .wpforms-recaptcha-container,
#contact-form-box .wpforms-recaptcha-container {
	margin-top: 0.5rem !important;
}

.contact-wpforms-unavailable {
	margin: 0;
	color: #f87171;
	font-size: 0.9375rem;
}

/* ==========================================================================
FOOTER
========================================================================== */

.site-footer {
	background: #000;
	color: #fff;
}

.footer-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem 2rem;
	padding: 3.5rem 2rem 2.5rem;
}

@media (min-width: 640px) {
	.footer-top { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
	.footer-top { grid-template-columns: 1fr 1fr 2fr 1fr; padding-left: 4rem; padding-right: 4rem; }
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-col a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-col a:hover {
	color: #fff;
}

.footer-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.3);
	margin-bottom: 1rem;
}

.footer-industries-grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem 1.5rem;
}

.footer-cert-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: #fff;
	border-radius: 0.75rem;
	padding: 0.5rem;
}

.footer-cert-grid span {
	position: relative;
	height: 3.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #e5e7eb;
	border-right: 1px solid #e5e7eb;
}

.footer-cert-grid span:nth-child(3n) {
	border-right: none;
}

.footer-cert-grid span:nth-child(n+4) {
	border-bottom: none;
}

.footer-cert-grid img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.5rem;
	filter: grayscale(1) brightness(0);
}

.footer-label-follow {
	margin-top: 1rem;
	margin-bottom: 0.5rem;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	font-size: 0.75rem;
	transition: color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
}

.footer-divider {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin: 0 2rem;
}

@media (min-width: 1024px) {
	.footer-divider { margin: 0 4rem; }
}

.footer-brand-wrap {
	width: 100%;
	padding: 1.5rem 0;
	overflow: hidden;
}

.footer-brand-svg {
	width: 100%;
	height: clamp(68px, 14vw, 240px);
}

.footer-brand-svg text {
	fill: rgba(255, 255, 255, 0.95);
	font-size: 140px;
	font-weight: 500;
	font-family: var(--font-sans);
	text-transform: uppercase;
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 2rem;
}

@media (min-width: 640px) {
	.footer-bottom { flex-direction: row; }
}

@media (min-width: 1024px) {
	.footer-bottom { padding-left: 4rem; padding-right: 4rem; }
}

.footer-email {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-email:hover {
	color: #fff;
}

.footer-copy {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.3);
	margin: 0;
}

/* ==========================================================================
SCROLL TO TOP
========================================================================== */

.scroll-to-top {
	position: fixed;
	bottom: 0.5rem;
	right: 0.5rem;
	z-index: var(--z-scroll-top);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	background: #18181b;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: color 0.2s, border-color 0.2s, background 0.2s;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.scroll-to-top:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
	background: #27272a;
}

.scroll-to-top[hidden] {
	display: none !important;
}

/* ==========================================================================
PRODUCTS PAGE (products.html)
========================================================================== */

.section-products-hero {
	background: #fff;
	padding: 7rem 1.5rem 3rem;
}
@media (min-width: 640px) {
	.section-products-hero { padding-top: 8rem; }
}
@media (min-width: 768px) {
	.section-products-hero { padding: 9rem 2rem 3rem; }
}
@media (min-width: 1024px) {
	.section-products-hero { padding: 9rem 88px 3rem; }
}

.products-hero-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #FF6B7C;
	margin: 0 0 1.25rem;
}

.products-hero-title {
	font-family: var(--font-serif);
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 2px;
	font-style: italic;
	color: #18181b;
	margin: 0 0 1.5rem;
	max-width: 400px;
}

.products-hero-desc {
	font-size: 1rem;
	line-height: 1.6;
	color: #71717a;
	max-width: 42rem;
	margin: 0;
}
@media (min-width: 640px) {
	.products-hero-desc { font-size: 1.125rem; }
}

.section-products-categories {
	background: #fff;
	padding: 0 1.5rem 4rem;
}
@media (min-width: 640px) {
	.section-products-categories { padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (min-width: 768px) {
	.section-products-categories { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
	.section-products-categories { padding: 0 88px 4rem; }
}

.products-categories-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 640px) {
	.products-categories-grid { grid-template-columns: repeat(2, 1fr); }
}

.card-product-category {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
	background: #fafafa;
	border: 1px solid #f4f4f5;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.3s;
}
.card-product-category:hover {
	border-color: rgba(255, 107, 124, 0.3);
}

.card-product-category-img {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.card-product-category-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}
.card-product-category:hover .card-product-category-img img {
	transform: scale(1.05);
}

.card-product-category-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	transition: background 0.3s;
}
.card-product-category:hover .card-product-category-overlay {
	background: rgba(0, 0, 0, 0.1);
}

.card-product-category-body {
	padding: 1.5rem;
}

.card-product-category-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #18181b;
	margin: 0 0 0.5rem;
	transition: color 0.2s;
}
.card-product-category:hover .card-product-category-title {
	color: #FF6B7C;
}

.card-product-category-desc {
	font-size: 0.875rem;
	color: #71717a;
	line-height: 1.5;
	margin: 0 0 0.75rem;
}

.card-product-category-specs {
	font-size: 0.75rem;
	font-weight: 500;
	color: #a1a1aa;
	margin: 0 0 1rem;
}

.card-product-category-cta {
	font-size: 0.75rem;
	font-weight: 600;
	color: #FF6B7C;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
}
.card-product-category-cta::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FF6B7C' stroke-width='2'%3E%3Cpath d='M3 8h10M13 8l-4-4M13 8l-4 4'/%3E%3C/svg%3E") no-repeat center;
}

/* ==========================================================================
SERVICES PAGE — hero, lifecycle, partners, CTA
========================================================================== */

.section-services-hero {
	background: #fff;
	padding: 6rem 1.5rem 0;
}
@media (min-width: 640px) {
	.section-services-hero { padding-top: 7rem; }
}
@media (min-width: 768px) {
	.section-services-hero { padding-top: 6rem; padding-left: 88px; padding-right: 88px; }
}

.services-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding-bottom: 2rem;
}
@media (min-width: 1024px) {
	.services-hero-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; padding-bottom: 2.5rem; }
}

.services-hero-label {
	font-size: 1.25rem;
	font-weight: 700;
	color: #FF6B7C;
	margin: 0 0 0.5rem;
}

.services-hero-title {
	font-size: clamp(2.25rem, 4vw, 3.75rem);
	font-weight: 400;
	line-height: 1.05;
	color: #18181b;
	margin: 0;
}

.services-hero-desc-wrap p {
	font-size: 0.875rem;
	line-height: 1.6;
	color: #18181b;
	margin: 0 0 1.25rem;
}
@media (min-width: 640px) {
	.services-hero-desc-wrap p { font-size: 1rem; }
}

.services-hero-image-card {
	position: relative;
	width: 100%;
	height: 300px;
	border-radius: 1rem;
	overflow: hidden;
}
@media (min-width: 640px) {
	.services-hero-image-card { height: 420px; }
}
@media (min-width: 768px) {
	.services-hero-image-card { height: 560px; }
}
@media (min-width: 1024px) {
	.services-hero-image-card { height: 680px; }
}

.services-hero-image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services-hero-bubble {
	position: absolute;
	inset: 0;
	z-index: 10;
	pointer-events: none;
}
.services-hero-bubble img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.5;
}

.section-services-lifecycle {
	background: #fff;
	padding: 4rem 1rem;
}
@media (min-width: 768px) {
	.section-services-lifecycle { padding: 6rem 2rem; }
}
@media (min-width: 1024px) {
	.section-services-lifecycle { padding-left: 3rem; padding-right: 3rem; }
}

.services-lifecycle-header {
	text-align: center;
	margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
	.services-lifecycle-header { margin-bottom: 3.5rem; }
}

.services-lifecycle-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #FF6B7C;
	margin: 0 0 0.75rem;
}

.services-lifecycle-title {
	font-family: var(--font-serif);
	font-size: clamp(2.25rem, 4vw, 3rem);
	font-weight: 600;
	font-style: italic;
	line-height: 1.2;
	color: #18181b;
	margin: 0 0 1rem;
}

.services-lifecycle-sub {
	font-size: 1rem;
	color: #71717a;
	max-width: 42rem;
	margin: 0 auto;
	line-height: 1.5;
}
@media (min-width: 640px) {
	.services-lifecycle-sub { font-size: 1.125rem; }
}

.services-lifecycle-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.25rem;
	background: #f4f4f5;
	border-radius: 9999px;
	padding: 0.375rem;
	margin-bottom: 2.5rem;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 768px) {
	.services-lifecycle-tabs { margin-bottom: 3rem; }
}

.services-lifecycle-tab {
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
	border: none;
	background: transparent;
	color: #71717a;
	cursor: pointer;
	transition: color 0.2s, background 0.2s;
}
.services-lifecycle-tab:hover {
	color: #18181b;
}
.services-lifecycle-tab.is-active {
	background: #18181b;
	color: #fff;
}

.services-lifecycle-panels {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
}
@media (min-width: 1024px) {
	.services-lifecycle-panels { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}

.services-lifecycle-panel[data-stage] {
	display: none;
}
.services-lifecycle-panel[data-stage].is-active {
	display: block;
}

.services-lifecycle-image-wrap {
	position: relative;
	width: 100%;
	height: 300px;
	border-radius: 1rem;
	overflow: hidden;
	background: #f4f4f5;
}
.services-lifecycle-image-wrap .services-lifecycle-panel {
	position: absolute;
	inset: 0;
	display: none;
}
.services-lifecycle-image-wrap .services-lifecycle-panel.is-active {
	display: block;
}
.services-lifecycle-image-wrap .services-lifecycle-panel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (min-width: 640px) {
	.services-lifecycle-image-wrap { height: 400px; }
}
@media (min-width: 1024px) {
	.services-lifecycle-image-wrap { height: 520px; }
}

.services-lifecycle-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services-lifecycle-number {
	position: absolute;
	bottom: 1.25rem;
	left: 1.25rem;
	font-family: var(--font-serif);
	font-size: clamp(80px, 12vw, 140px);
	font-weight: 600;
	line-height: 1;
	color: rgba(255, 255, 255, 0.3);
	user-select: none;
}

.services-lifecycle-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.5rem;
}
@media (min-width: 1024px) {
	.services-lifecycle-content { padding: 2rem 0; }
}

.services-lifecycle-stage-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #FF6B7C;
	margin: 0 0 0.75rem;
}

.services-lifecycle-stage-title {
	font-size: clamp(1.875rem, 3vw, 3rem);
	font-weight: 500;
	line-height: 1.2;
	color: #18181b;
	margin: 0 0 1rem;
}

.services-lifecycle-stage-desc {
	font-size: 0.875rem;
	color: #71717a;
	line-height: 1.6;
	margin: 0;
}
@media (min-width: 640px) {
	.services-lifecycle-stage-desc { font-size: 1rem; }
}

.services-lifecycle-bullets {
	background: #fafafa;
	border-radius: 0.75rem;
	border: 1px solid #f4f4f5;
	padding: 1.5rem;
}

.services-lifecycle-bullets-head {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #a1a1aa;
	margin: 0 0 1rem;
}

.services-lifecycle-bullets ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.services-lifecycle-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: #3f3f46;
}
.services-lifecycle-bullets li::before {
	content: "";
	flex-shrink: 0;
	margin-top: 0.375rem;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #FF6B7C;
}

.section-partners {
	background: #fff;
	padding: 2.5rem 0 2rem;
	overflow: hidden;
}
@media (min-width: 640px) {
	.section-partners { padding: 3.5rem 0rem; }
}

.partners-header {
	padding: 0 1rem 2rem;
}
@media (min-width: 640px) {
	.partners-header { padding-left: 1.5rem; }
}
@media (min-width: 768px) {
	.partners-header { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
	.partners-header { padding-left: 5rem; padding-right: 5rem; }
}

.partners-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #FF6B7C;
	margin: 0 0 0.75rem;
}

.partners-title {
	font-family: var(--font-serif);
	font-size: clamp(2.25rem, 4vw, 3rem);
	font-weight: 600;
	font-style: italic;
	line-height: 1.2;
	color: #18181b;
	margin: 0;
}

.partners-marquee-wrap {
	overflow: hidden;
}

.partners-marquee {
	display: flex;
	gap: 3rem;
	align-items: center;
	width: fit-content;
	will-change: transform;
}
@media (min-width: 640px) {
	.partners-marquee { gap: 4rem; }
}
@media (min-width: 768px) {
	.partners-marquee { gap: 5rem; }
}

.partners-marquee-set {
	display: flex;
	gap: 3rem;
	align-items: center;
	flex-shrink: 0;
}
@media (min-width: 640px) {
	.partners-marquee-set { gap: 4rem; }
}
@media (min-width: 768px) {
	.partners-marquee-set { gap: 5rem; }
}

.partners-marquee-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.partners-marquee-item img {
	height: 1.75rem;
	width: auto;
	object-fit: contain;
	filter: brightness(0) opacity(0.3);
	transition: opacity 0.3s;
}
@media (min-width: 640px) {
	.partners-marquee-item img { height: 2rem; }
}
@media (min-width: 768px) {
	.partners-marquee-item img { height: 2.5rem; }
}
.partners-marquee-item:hover img {
	opacity: 0.6;
}

.section-services-cta {
	background: #fff;
	padding: 2.5rem 1rem;
}
@media (min-width: 768px) {
	.section-services-cta { padding: 3.5rem 2rem; }
}
@media (min-width: 1024px) {
	.section-services-cta { padding-left: 3rem; padding-right: 3rem; }
}

.services-cta-inner {
	position: relative;
	overflow: hidden;
	background: #FF6B7C;
	border-radius: 1rem;
	height: auto;
	padding: 20px;
}

@media (min-width: 640px) {
	.services-cta-inner { height: 360px; }
}
@media (min-width: 768px) {
	.services-cta-inner { height: 400px; }
}

.services-cta-heading {
	position: unset;
	top: 2rem;
	left: 2rem;
	z-index: 10;
	max-width: 18rem;
}
@media (min-width: 640px) {
	.services-cta-heading { position: absolute; left: 2.5rem; max-width: 20rem; }
}
@media (min-width: 768px) {
	.services-cta-heading { top: 2.5rem; left: 3rem; max-width: 28rem; }
}

.services-cta-heading h2 {
	font-size: 1.5rem;
	color: #fff;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 22px;
}
@media (min-width: 640px) {
	.services-cta-heading h2 { font-size: 1.875rem; margin: 0; }
}
@media (min-width: 768px) {
	.services-cta-heading h2 { font-size: 2.25rem; margin: 0; }
}
@media (min-width: 1024px) {
	.services-cta-heading h2 { font-size: 3rem; margin: 0; }
}

.services-cta-bubble {
	position: absolute;
	left: -1.25rem;
	bottom: -11.25rem;
	width: 560px;
	height: 560px;
	opacity: 0.7;
	pointer-events: none;
}
@media (min-width: 640px) {
	.services-cta-bubble { width: 420px; height: 420px; left: -3.75rem; bottom: -11.25rem; }
}
@media (min-width: 768px) {
	.services-cta-bubble { width: 520px; height: 520px; left: -1.25rem; }
}
.services-cta-bubble img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.services-cta-content {
	position: unset;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
}
@media (min-width: 640px) {
	.services-cta-content { position: absolute; width: 45%; }
}
@media (min-width: 768px) {
	.services-cta-content { width: 42%; }
}
.services-cta-content-inner {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
	padding: 0;
	height: 100%;
	justify-content: center;
}
@media (min-width: 640px) {
	.services-cta-content-inner { padding-right: 2.5rem; }
}
@media (min-width: 768px) {
	.services-cta-content-inner { padding-right: 3rem; }
}

.services-cta-content-inner p:first-of-type {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
	.services-cta-content-inner p:first-of-type { font-size: 1.25rem; }
}

.services-cta-content-inner p:nth-of-type(2) {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0;
}
@media (min-width: 640px) {
	.services-cta-content-inner p:nth-of-type(2) { font-size: 0.875rem; }
}

.services-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: #fff;
	color: #FF6B7C;
	font-weight: 600;
	font-size: 0.875rem;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.services-cta-btn:hover {
	background: rgba(255, 255, 255, 0.9);
	color: #e85c6d;
}

/* ==========================================================================
PORTFOLIO PAGE
========================================================================== */

.section-portfolio-hero {
	min-height: 100dvh;
	background: #f2f1ef;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
@media (min-width: 1024px) {
	.section-portfolio-hero { flex-direction: row; }
}

.portfolio-hero-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 7rem 2rem 4rem;
	width: 100%;
}
@media (min-width: 1024px) {
	.portfolio-hero-left { width: 52%; flex-shrink: 0; padding: 0 4rem; }
}

.portfolio-hero-chip {
	display: inline-flex;
	margin-top: 0rem;
	margin-bottom: 0.5rem;
}
.portfolio-hero-chip span {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #71717a;
	border: 1px solid #d4d4d8;
	border-radius: 9999px;
	padding: 0.375rem 1rem;
}

@media (min-width: 1024px) {
	.portfolio-hero-chip { margin-top: 2.5rem; margin-bottom: 0.5rem; }
}

.portfolio-hero-title {
	font-family: var(--font-sans);
	font-size: clamp(1.5rem, 4vw, 3.75rem);
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: -0.02em;
	color: #18181b;
	margin: 0 0 1.75rem;
	max-width: 54ch;
}

.portfolio-hero-sub {
	font-size: 1.125rem;
	font-weight: 500;
	color: #52525b;
	line-height: 1.4;
	margin: 0 0 1.25rem;
	max-width: 40ch;
	text-align: justify;
}
@media (min-width: 640px) {
	.portfolio-hero-sub { font-size: 1.25rem; }
}

.portfolio-hero-intro {
	font-size: 1rem;
	color: #a1a1aa;
	line-height: 1.6;
	max-width: 46ch;
	margin: 0 0 2rem;
	text-align: justify;
}

.portfolio-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.portfolio-hero-cta-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: #FF6B7C;
	color: #fff;
	font-weight: 600;
	font-size: 0.875rem;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.portfolio-hero-cta-primary:hover {
	background: #e85c6d;
}

.portfolio-hero-cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border: 1px solid #d4d4d8;
	color: #27272a;
	font-weight: 600;
	font-size: 0.875rem;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s;
}
.portfolio-hero-cta-secondary:hover {
	border-color: #a1a1aa;
	background: #fafafa;
}

.portfolio-hero-right {
	position: relative;
	flex: 1;
	min-height: 60vh;
	overflow: hidden;
}
@media (min-width: 1024px) {
	.portfolio-hero-right { min-height: 0; }
}

.portfolio-hero-bg {
	position: absolute;
	inset: 0;
}
.portfolio-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portfolio-hero-blur {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}
.portfolio-hero-blur-inner {
	width: 82%;
	aspect-ratio: 1;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	mask-image: radial-gradient(circle at center, black 65%, transparent 50%);
	-webkit-mask-image: radial-gradient(circle at center, black 65%, transparent 50%);
}

.portfolio-hero-bubble-wrap {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}
.portfolio-hero-bubble-inner {
	position: relative;
	width: 82%;
	aspect-ratio: 1;
}
.portfolio-hero-bubble-inner img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.portfolio-hero-stats {
	position: absolute;
	inset: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}
.portfolio-hero-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	width: 55%;
	min-width: 300px;
}
.portfolio-hero-stat-card {
	background: #fff;
	border-radius: 1.25rem;
	padding: 1rem 1.25rem;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	display: flex;
	flex-direction: column;
}
@media (min-width: 768px) {
	.portfolio-hero-stat-card { padding: 1rem 1.25rem; }
}
.portfolio-hero-stat-label {
	font-size: 0.75rem;
	font-weight: 500;
	color: #a1a1aa;
	margin: 0 0 0.5rem;
	line-height: 1;
}
.portfolio-hero-stat-value {
	font-size: 1.25rem;
	font-weight: 700;
	color: #18181b;
	line-height: 1.2;
	flex: 1;
	margin-top: 0;
	margin-bottom: 0.75rem;
}
.portfolio-hero-stat-bar {
	height: 3px;
	width: 100%;
	border-radius: 9999px;
	background: #ff6b7c;
	margin-top: auto;
}

.section-portfolio-projects {
	background: #fff;
	padding: 4rem 1rem;
}
@media (min-width: 768px) {
	.section-portfolio-projects { padding: 5rem 2rem; }
}
@media (min-width: 1024px) {
	.section-portfolio-projects { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.portfolio-projects-header {
	text-align: center;
	margin-bottom: 4rem;
}
@media (min-width: 768px) {
	.portfolio-projects-header { margin-bottom: 6rem; }
}

.portfolio-projects-title {
	font-family: var(--font-serif);
	font-size: clamp(2.25rem, 4vw, 3rem);
	font-weight: 600;
	font-style: italic;
	line-height: 1.2;
	color: #18181b;
	margin: 0 0 1.25rem;
}

.portfolio-projects-sub {
	font-size: 0.875rem;
	color: #71717a;
	line-height: 1.6;
	max-width: 42rem;
	margin: 0 auto;
}
@media (min-width: 640px) {
	.portfolio-projects-sub { font-size: 1rem; }
}

.portfolio-projects-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.portfolio-project-row {
	display: grid;
	grid-template-columns: 1fr;
	min-height: 440px;
}
@media (min-width: 768px) {
	.portfolio-project-row { min-height: 500px; }
}
@media (min-width: 1024px) {
	.portfolio-project-row { grid-template-columns: repeat(2, 1fr); }
}

.portfolio-project-row.even .portfolio-project-image-wrap { order: 0; }
.portfolio-project-row.even .portfolio-project-text { order: 1; }
/* .portfolio-project-row.odd .portfolio-project-image-wrap { order: 1; } */
.portfolio-project-row.odd .portfolio-project-text { order: 0; }
@media (min-width: 1024px) {
	.portfolio-project-row.even .portfolio-project-image-wrap { order: 0; }
	.portfolio-project-row.even .portfolio-project-text { order: 1; }
	.portfolio-project-row.odd .portfolio-project-image-wrap { order: 2; }
	.portfolio-project-row.odd .portfolio-project-text { order: 0; }
}

.portfolio-project-image-wrap {
	padding: 0.75rem;
}
@media (min-width: 640px) {
	.portfolio-project-image-wrap { padding: 1rem; }
}

.portfolio-project-image-inner {
	position: relative;
	width: 100%;
	border-radius: 1rem;
	overflow: hidden;
	background: #000;
	min-height: 260px;
	height: 100%;
}
@media (min-width: 640px) {
	.portfolio-project-image-inner { min-height: 320px; }
}
@media (min-width: 1024px) {
	.portfolio-project-image-inner { min-height: 0; aspect-ratio: 16/10; }
}

.portfolio-project-image-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
}

.portfolio-project-image-bubble {
	position: absolute;
	inset: 0;
	z-index: 10;
	pointer-events: none;
}
.portfolio-project-image-bubble img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6;
	mix-blend-mode: screen;
}

.portfolio-project-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem 1rem;
}
@media (min-width: 640px) {
	.portfolio-project-text { padding: 2.5rem 2rem; }
}
@media (min-width: 768px) {
	.portfolio-project-text { padding: 3rem; }
}
@media (min-width: 1024px) {
	.portfolio-project-text { padding: 4rem; }
}

.portfolio-project-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #18181b;
	line-height: 1.2;
	margin: 0 0 1rem;
}
@media (min-width: 640px) {
	.portfolio-project-title { font-size: 1.875rem; }
}
@media (min-width: 768px) {
	.portfolio-project-title { font-size: 2.25rem; }
}

.portfolio-project-subheading {
	font-size: 0.875rem;
	font-weight: 600;
	color: #3f3f46;
	margin: 0 0 1.25rem;
}
@media (min-width: 640px) {
	.portfolio-project-subheading { font-size: 1rem; }
}

.portfolio-project-bullets {
	border-radius: 0.75rem;
	background: #fafafa;
	border: 1px solid #f4f4f5;
	padding: 1rem 1.25rem 1.25rem;
}

.portfolio-project-bullets-head {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #a1a1aa;
	margin: 0 0 0.75rem;
}

.portfolio-project-bullets-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.portfolio-project-bullets-list li {
	display: grid;
	grid-template-columns: 16px 1fr;
	font-size: 0.875rem;
	color: #52525b;
	line-height: 1.5;
}
.portfolio-project-bullets-list li span:first-child {
	color: #a1a1aa;
}

.section-portfolio-video {
	position: relative;
	background: #000;
	padding: 3rem 1.5rem;
	overflow: hidden;
}
@media (min-width: 768px) {
	.section-portfolio-video { padding: 4rem 2rem; }
}
@media (min-width: 1024px) {
	.section-portfolio-video { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.portfolio-video-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.25;
}
.portfolio-video-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.portfolio-video-inner {
	position: relative;
	z-index: 10;
	background: #f4f4f5;
	border-radius: 1.5rem;
	padding: 2rem;
}
@media (min-width: 640px) {
	.portfolio-video-inner { padding: 2.5rem; }
}
@media (min-width: 768px) {
	.portfolio-video-inner { padding: 3.5rem; }
}

.portfolio-video-header {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
	.portfolio-video-header { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.portfolio-video-title {
	font-family: var(--font-serif);
	font-size: clamp(1.875rem, 3vw, 3rem);
	font-weight: 600;
	font-style: italic;
	line-height: 1.2;
	color: #18181b;
	margin: 0;
}

.portfolio-video-right p:first-child {
	font-size: 1rem;
	font-weight: 600;
	color: #27272a;
	margin: 0 0 0.75rem;
}
@media (min-width: 640px) {
	.portfolio-video-right p:first-child { font-size: 1.125rem; }
}
.portfolio-video-right p:last-child {
	font-size: 0.875rem;
	color: #71717a;
	line-height: 1.6;
	margin: 0;
}
@media (min-width: 640px) {
	.portfolio-video-right p:last-child { font-size: 1rem; }
}

.portfolio-video-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 640px) {
	.portfolio-video-cards { grid-template-columns: repeat(3, 1fr); }
}

.portfolio-video-card {
	position: relative;
	overflow: hidden;
	background: rgba(228, 228, 231, 0.8);
	border-radius: 1rem;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: background-color 0.3s;
}
.portfolio-video-card:hover {
	background: #FF6B7C;
}

.portfolio-video-card p:first-child {
	font-size: 1rem;
	font-weight: 600;
	color: #18181b;
	margin: 0;
	transition: color 0.3s;
}
.portfolio-video-card:hover p:first-child {
	color: #fff;
}
.portfolio-video-card p:last-child {
	font-size: 0.875rem;
	color: #71717a;
	line-height: 1.5;
	margin: 0;
	transition: color 0.3s;
}
.portfolio-video-card:hover p:last-child {
	color: rgba(255, 255, 255, 0.9);
}

.section-portfolio-cta {
	background: #fff;
	padding: 2.5rem 1rem;
}
@media (min-width: 768px) {
	.section-portfolio-cta { padding: 3.5rem 3rem; }
}

.portfolio-cta-inner {
	position: relative;
	overflow: hidden;
	background: #FF6B7C;
	border-radius: 1rem;
	padding: 3.5rem 2rem;
}
@media (min-width: 640px) {
	.portfolio-cta-inner { padding: 4rem 2rem; }
}
@media (min-width: 768px) {
	.portfolio-cta-inner { padding: 5rem 4rem; }
}

/* Same position and scale animation as About CTA (React PortfolioCTASection) */
.portfolio-cta-bubble {
	position: absolute;
	right: -80px;
	bottom: -380px;
	width: 280px;
	height: 280px;
	opacity: 0.8;
	pointer-events: none;
	transform: translateY(-50%) scale(0.7);
	transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-cta-bubble].cta-bubble-visible .portfolio-cta-bubble {
	transform: translateY(-50%) scale(1.35);
}
@media (min-width: 768px) {
	.portfolio-cta-bubble { width: 420px; height: 420px; }
}
.portfolio-cta-bubble img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.portfolio-cta-content {
	position: relative;
	z-index: 10;
	max-width: 42rem;
}

.portfolio-cta-content h2 {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 1.5rem;
}


@media (min-width: 640px) {
	.portfolio-cta-content h2 { font-size: 3rem; }
}

.portfolio-cta-content p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0 0 2rem;
	max-width: 28rem;
}
@media (min-width: 640px) {
	.portfolio-cta-content p { font-size: 1.125rem; }
}

.portfolio-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	background: #fff;
	color: #FF6B7C;
	font-weight: 600;
	font-size: 0.875rem;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}
.portfolio-cta-btn:hover {
	background: rgba(255, 255, 255, 0.9);
	color: #e85c6d;
}

/* ==========================================================================
PRODUCT DETAIL PAGES (products/indoor-led.html etc.)
========================================================================== */

.section-product-hero {
	min-height: 100dvh;
	background: #f2f1ef;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
@media (min-width: 1024px) {
	.section-product-hero { flex-direction: row; }
}
.section-product-hero .portfolio-hero-left { padding-top: 6rem; }
@media (min-width: 1024px) {
	.section-product-hero .portfolio-hero-left { padding-top: 0; }
}

.section-product-cta,
.section-industry-cta {
	background: #fff;
	padding: 56px 1rem;
}
.section-product-cta .portfolio-cta-inner,
.section-industry-cta .portfolio-cta-inner {
	max-width: 72rem;
	margin: 0 auto;
}

.section-product-cta .services-cta-inner {
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
}

/* Product CTA bubble: scale on scroll into view (matches React ProductCTASection) */
.section-product-cta[data-cta-bubble] .services-cta-bubble {
	opacity: 0.6;
	transform: scale(0.8);
	transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.section-product-cta[data-cta-bubble].cta-bubble-visible .services-cta-bubble {
	transform: scale(1.28);
}

.services-cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.services-cta-btn-outline {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.services-cta-btn-outline:hover {
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
}

/* ==========================================================================
PRODUCT SPECS (Our Products — horizontal scroll layout, matches React ProductSpecsSection)
========================================================================== */

.section-product-specs {
	background: #fff;
	padding: 4rem 1rem;
}

/* Scroll layout: no section padding, full-bleed */
.section-product-specs:has(.product-specs-scroll) {
	padding-inline: 0;
}

.section-product-specs .product-specs-mobile {
	display: block;
	position: relative;
}
@media (min-width: 768px) {
	.section-product-specs .product-specs-mobile { display: none; }
}

.section-product-specs .product-specs-desktop {
	display: none;
	position: relative;
}
@media (min-width: 768px) {
	.section-product-specs .product-specs-desktop { display: block; }
}

.product-specs-sticky {
	position: sticky;
	top: 0;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
}

.product-specs-intro-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.product-specs-intro-bg-wrap {
	position: absolute;
	inset: 0;
}
.product-specs-intro-bg-wrap .product-specs-intro-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-specs-intro-wrap .product-specs-intro-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}

.product-specs-bubble {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70vw;
	height: 70vw;
	max-width: 400px;
	max-height: 400px;
	z-index: 5;
	transition: transform 0.25s ease-out;
}
.product-specs-bubble img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.product-specs-bubble-desktop {
	left: 60%;
	width: 50vw;
	height: 50vw;
	max-width: 600px;
	max-height: 600px;
}

.product-specs-intro-wrap .product-specs-intro-content {
	position: relative;
	z-index: 10;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 1.5rem;
	text-align: left;
}
.product-specs-intro-content-desktop {
	padding: 0 1.5rem;
	max-width: 56rem;
}
@media (min-width: 640px) {
	.product-specs-intro-content-desktop { padding: 0 2rem; }
}
@media (min-width: 768px) {
	.product-specs-intro-content-desktop { padding: 0 4rem; }
}
@media (min-width: 1024px) {
	.product-specs-intro-content-desktop { padding: 0 6rem; }
}

.product-specs-scroll-hint {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.5);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-top: 1.5rem;
}
@media (min-width: 640px) {
	.product-specs-scroll-hint { font-size: 12px; gap: 0.75rem; }
}
.product-specs-scroll-hint-arrow { flex-shrink: 0; }
.product-specs-mobile .product-specs-scroll-hint-arrow { transform: rotate(90deg); }

.product-specs-cards-wrap {
	position: relative;
	z-index: 10;
	display: flex;
	height: 100%;
	will-change: transform;
}

.product-specs-scroll-card {
	flex-shrink: 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
}
.product-specs-scroll-card-mobile {
	width: 100vw;
	padding: 0 1.5rem;
}
.product-specs-scroll-card-desktop {
	width: 62.5vw;
	padding-left: clamp(1.5rem, 3vw, 2rem);
	padding-right: clamp(1.5rem, 3vw, 2rem);
}

.product-specs-scroll-card-inner {
	width: 100%;
	max-width: 32rem;
}
.product-specs-scroll-card-desktop .product-specs-scroll-card-inner {
	max-width: 48rem;
	padding-top: clamp(1rem, 5dvh, 7rem);
	padding-bottom: clamp(0.5rem, 2dvh, 3rem);
}

.product-specs-scroll-card .product-specs-card-title {
	font-size: 1.875rem;
	font-weight: 500;
	color: #212121;
	line-height: 1.2;
	letter-spacing: -0.025em;
	margin: 0 0 0.75rem;
}
.product-specs-scroll-card-desktop .product-specs-card-title {
	font-size: clamp(1.5rem, 2.8vw, 3rem);
	margin-bottom: clamp(0.4rem, 1dvh, 1rem);
}

.product-specs-scroll-card .product-specs-card-desc {
	font-size: 1rem;
	color: #52525b;
	line-height: 1.6;
	margin: 0 0 1.5rem;
}
.product-specs-scroll-card-desktop .product-specs-card-desc {
	font-size: clamp(0.95rem, 1.2vw, 1.25rem);
	margin-bottom: clamp(0.75rem, 2dvh, 2rem);
}

.product-specs-card-specs-mobile {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}
.product-specs-card-specs-desktop {
	display: grid;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: clamp(0.4rem, 0.6vw, 0.75rem);
	margin-bottom: clamp(0.75rem, 2dvh, 2rem);
}
.product-specs-scroll-card .product-specs-spec {
	background: #fafafa;
	border: 1px solid #f4f4f5;
	border-radius: 0.75rem;
	padding: 0.5rem 0.75rem;
}
.product-specs-scroll-card .product-specs-spec-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #a1a1aa;
	margin: 0 0 0.25rem;
}
.product-specs-scroll-card-mobile .product-specs-spec-label {
	font-size: 9px;
}
.product-specs-scroll-card .product-specs-spec-value {
	font-size: 0.875rem;
	font-weight: 600;
	color: #27272a;
	margin: 0;
}
.product-specs-scroll-card-mobile .product-specs-spec-value {
	font-size: 0.75rem;
}

.product-specs-scroll-card .product-specs-app-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #a1a1aa;
	margin: 0 0 0.5rem;
}
.product-specs-scroll-card-desktop .product-specs-app-label {
	margin-bottom: 0.5rem;
}
.product-specs-scroll-card .product-specs-app-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}
.product-specs-scroll-card-desktop .product-specs-app-tags {
	margin-bottom: clamp(0.75rem, 2dvh, 2rem);
}
.product-specs-scroll-card .product-specs-app-tags span {
	font-size: 0.75rem;
	color: #52525b;
	background: #f4f4f5;
	border-radius: 9999px;
	padding: 0.25rem 0.75rem;
}

.product-specs-scroll-card .product-specs-card-img {
	aspect-ratio: 24 / 10;
	border-radius: 1rem;
	overflow: hidden;
	background: #f4f4f5;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	width: 100%;
	height: 100%;
}
.product-specs-scroll-card .product-specs-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-specs-card-img-desktop {
	aspect-ratio: auto;
	height: clamp(8rem, 32dvh, 22rem);
	border-radius: 1.5rem;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Legacy static grid (used by outdoor/rental/specialized until converted) */
@media (min-width: 768px) {
	.section-product-specs { padding: 6rem 1.5rem; }
}

.product-specs-intro {
	position: relative;
	height: 50vh;
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
	border-radius: 1rem;
	overflow: hidden;
}

.product-specs-intro-bg {
	position: absolute;
	inset: 0;
}

.product-specs-intro-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-specs-intro-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}

.product-specs-intro-content {
	position: relative;
	z-index: 5;
	text-align: center;
	padding: 0 1.5rem;
}

.product-specs-intro-title {
	font-family: var(--font-serif);
	font-size: 2.25rem;
	color: #fff;
	font-weight: 500;
	line-height: 1.05;
	font-style: italic;
	margin: 0 0 1rem;
	max-width: 475px;
	letter-spacing: 0;
}
@media (min-width: 640px) {
	.product-specs-intro-title { font-size: 3rem; }
}
@media (min-width: 768px) {
	.product-specs-intro-title { font-size: 4.5rem; margin-bottom: 1.5rem; }
}
@media (min-width: 1024px) {
	.product-specs-intro-title { font-size: 6rem; }
}

.product-specs-intro-title span {
	font-style: italic;
	color: rgba(255, 255, 255, 0.95);
}

.product-specs-intro-sub {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 300;
	max-width: 36rem;
	margin: 0 0 0.5rem;
	line-height: 1.6;
}
@media (min-width: 768px) {
	.product-specs-intro-sub { font-size: 1.125rem; margin-bottom: 2rem; }
}
@media (min-width: 1024px) {
	.product-specs-intro-sub { font-size: 1.25rem; margin-bottom: 3rem; }
}

.product-specs-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 72rem;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.product-specs-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

.product-specs-card {
	background: #fff;
	border: 1px solid #e4e4e7;
	border-radius: 1rem;
	padding: 1.5rem;
}

@media (min-width: 768px) {
	.product-specs-card { padding: 2rem; }
}

.product-specs-card-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #18181b;
	margin: 0 0 0.5rem;
}

@media (min-width: 768px) {
	.product-specs-card-title { font-size: 1.5rem; }
}

.product-specs-card-desc {
	font-size: 0.875rem;
	color: #71717a;
	line-height: 1.6;
	margin: 0 0 1rem;
}

.product-specs-card-specs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.product-specs-spec {
	background: #f4f4f5;
	border-radius: 0.5rem;
	padding: 0.5rem 0.75rem;
}

.product-specs-spec-label {
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #71717a;
	margin: 0 0 0.25rem;
}

.product-specs-spec-value {
	font-size: 0.75rem;
	font-weight: 600;
	color: #27272a;
	margin: 0;
}

.product-specs-app-label {
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #71717a;
	margin: 0 0 0.5rem;
}

.product-specs-app-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
	margin-bottom: 1rem;
}

.product-specs-app-tags span {
	font-size: 0.7rem;
	color: #52525b;
	background: #f4f4f5;
	border-radius: 9999px;
	padding: 0.25rem 0.5rem;
}

.product-specs-card-img {
	border-radius: 0.75rem;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #f4f4f5;
}

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

/* ==========================================================================
PRODUCT PARALLAX — scroll-driven (matches React ProductParallaxSection)
========================================================================== */

[data-product-parallax-scroll] {
	position: relative;
	padding: 0;
}

[data-product-parallax-scroll] .product-parallax-sticky {
	position: sticky;
	top: 0;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
}

[data-product-parallax-scroll] .product-parallax-bg {
	position: absolute;
	inset: 0;
	background-color: #f2f1ef;
	z-index: 0;
}

[data-product-parallax-scroll] .product-parallax-orb {
	position: absolute;
	top: 50%;
	left: 50%;
	pointer-events: none;
	z-index: 1;
}
[data-product-parallax-scroll] .product-parallax-orb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
[data-product-parallax-scroll] .product-parallax-orb-0 {
	width: min(100vh, 100vw);
	height: min(100vh, 100vw);
	margin-top: calc(min(100vh, 100vw) / -2);
	margin-left: calc(min(100vh, 100vw) / -2);
}
[data-product-parallax-scroll] .product-parallax-orb-1 {
	width: min(115vh, 115vw);
	height: min(115vh, 115vw);
	margin-top: calc(min(115vh, 115vw) / -2);
	margin-left: calc(min(115vh, 115vw) / -2);
}
[data-product-parallax-scroll] .product-parallax-orb-2 {
	width: min(125vh, 125vw);
	height: min(125vh, 125vw);
	margin-top: calc(min(125vh, 125vw) / -2);
	margin-left: calc(min(125vh, 125vw) / -2);
}

[data-product-parallax-scroll] .product-parallax-layout {
	position: relative;
	z-index: 10;
	height: 100%;
	display: flex;
}

[data-product-parallax-scroll] .product-parallax-tracker {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 2rem;
	padding: 2.5rem 2rem 2.5rem 2.5rem;
	width: 200px;
	flex-shrink: 0;
}
@media (min-width: 768px) {
	[data-product-parallax-scroll] .product-parallax-tracker { display: flex; }
}
@media (min-width: 1024px) {
	[data-product-parallax-scroll] .product-parallax-tracker { width: 240px; padding-left: 4rem; }
}

[data-product-parallax-scroll] .product-parallax-tracker-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	opacity: 0.28;
	transition: opacity 0.3s ease;
}
[data-product-parallax-scroll] .product-parallax-tracker-item.active {
	opacity: 1;
}
[data-product-parallax-scroll] .product-parallax-tracker-num {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	tabular-nums: 1;
	width: 1.5rem;
	flex-shrink: 0;
	color: #71717a;
}
[data-product-parallax-scroll] .product-parallax-tracker-item.active .product-parallax-tracker-num {
	color: rgba(255, 255, 255, 0.45);
}
[data-product-parallax-scroll] .product-parallax-tracker-item:first-child .product-parallax-tracker-num,
[data-product-parallax-scroll] .product-parallax-tracker-item:first-child.active .product-parallax-tracker-num {
	color: #71717a;
}
[data-product-parallax-scroll] .product-parallax-tracker-item:first-child.active .product-parallax-tracker-num {
	color: #71717a;
}
[data-product-parallax-scroll] .product-parallax-tracker-label {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.025em;
	color: #757575;
}
[data-product-parallax-scroll] .product-parallax-tracker-item.active .product-parallax-tracker-label {
	color: #fff;
}
[data-product-parallax-scroll] .product-parallax-tracker-item:first-child.active .product-parallax-tracker-label {
	color: #18181b;
}
[data-product-parallax-scroll] .product-parallax-tracker-label-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}
[data-product-parallax-scroll] .product-parallax-tracker-accent {
	position: absolute;
	left: 0;
	bottom: 0;
	top: auto;
	height: 2px;
	width: 100%;
	background: #ff6b7c;
	border-radius: 9999px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease-out;
}
[data-product-parallax-scroll] .product-parallax-tracker-item.active .product-parallax-tracker-accent {
	transform: scaleX(1);
}

[data-product-parallax-scroll] .product-parallax-content {
	flex: 1;
	position: relative;
	overflow: hidden;
}

[data-product-parallax-scroll] .product-parallax-phase {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2.5rem 1.5rem;
}
[data-product-parallax-scroll] .product-parallax-phase.product-parallax-phase-0 {
/* 	overflow: auto;	 */
	justify-content: flex-start;
}
[data-product-parallax-scroll] .product-parallax-phase.product-parallax-phase-0{
    -ms-overflow-style: none;
    scrollbar-width: none;
}

[data-product-parallax-scroll] .product-parallax-phase.product-parallax-phase-0::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
	[data-product-parallax-scroll] .product-parallax-phase { padding: 2.5rem 2.5rem 2.5rem 1rem; }
	[data-product-parallax-scroll] .product-parallax-phase.product-parallax-phase-0 {overflow: unset; justify-content: center;}

}
@media (min-width: 1024px) {
	[data-product-parallax-scroll] .product-parallax-phase { padding: 2.5rem 3.5rem 2.5rem 1.5rem; }
}

[data-product-parallax-scroll] .product-parallax-phase-title {
	font-family: var(--font-serif);
	font-size: 1.875rem;
	font-weight: 600;
	letter-spacing: 0.025em;
	line-height: 1.05;
	margin: 0 0 1rem;
	color: #18181b;
	font-style: italic;
}
[data-product-parallax-scroll] .product-parallax-phase-title span {
	font-style: italic;
	color: #18181b;
}
@media (min-width: 640px) {
	[data-product-parallax-scroll] .product-parallax-phase-title { font-size: 2.25rem; }
}
@media (min-width: 768px) {
	[data-product-parallax-scroll] .product-parallax-phase-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
	[data-product-parallax-scroll] .product-parallax-phase-title { font-size: 3.75rem; }
}
[data-product-parallax-scroll] .product-parallax-phase-1 .product-parallax-phase-title,
[data-product-parallax-scroll] .product-parallax-phase-2 .product-parallax-phase-title {
	color: #fff;
}
[data-product-parallax-scroll] .product-parallax-phase-1 .product-parallax-phase-title span,
[data-product-parallax-scroll] .product-parallax-phase-2 .product-parallax-phase-title span {
	color: rgba(255, 255, 255, 0.95);
}

[data-product-parallax-scroll] .product-parallax-quality-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}
@media (min-width: 640px) {
	[data-product-parallax-scroll] .product-parallax-quality-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	[data-product-parallax-scroll] .product-parallax-quality-grid { grid-template-columns: repeat(3, 1fr); }
}

[data-product-parallax-scroll] .product-parallax-quality-card {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1.25rem;
	border-radius: 1.25rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(12px);
	transition: background 0.3s, border-color 0.3s, color 0.3s;
	cursor: pointer;
}
[data-product-parallax-scroll] .product-parallax-quality-card:hover {
	background: #ff6b7c;
	border-color: #ff6b7c;
}
[data-product-parallax-scroll] .product-parallax-quality-check {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
	margin-top: 0.125rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #18181b;
	transition: background 0.3s, color 0.3s;
}
[data-product-parallax-scroll] .product-parallax-quality-check svg {
	width: 11px;
	height: 11px;
}
[data-product-parallax-scroll] .product-parallax-quality-card:hover .product-parallax-quality-check {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}
[data-product-parallax-scroll] .product-parallax-quality-title {
	font-size: 1rem;
	font-weight: 600;
	color: #18181b;
	margin: 0 0 0.375rem;
	line-height: 1.3;
}
[data-product-parallax-scroll] .product-parallax-quality-card:hover .product-parallax-quality-title {
	color: #fff;
}
[data-product-parallax-scroll] .product-parallax-quality-desc {
	font-size: 0.875rem;
	color: #52525b;
	line-height: 1.5;
	margin: 0;
}
[data-product-parallax-scroll] .product-parallax-quality-card:hover .product-parallax-quality-desc {
	color: rgba(255, 255, 255, 0.9);
}

[data-product-parallax-scroll] .product-parallax-tech-layout {
	display: flex;
	flex-direction: column;
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.95);
	overflow: hidden;
}
@media (min-width: 640px) {
	[data-product-parallax-scroll] .product-parallax-tech-layout { flex-direction: row; }
}

[data-product-parallax-scroll] .product-parallax-tech-head {
	padding: clamp(1.25rem, 2.5vw, 2.5rem);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	flex-shrink: 0;
}
@media (min-width: 640px) {
	[data-product-parallax-scroll] .product-parallax-tech-head { width: 40%; border-bottom: none; border-right: 1px solid rgba(0, 0, 0, 0.08); }
}
[data-product-parallax-scroll] .product-parallax-tech-head p {
	font-size: clamp(1rem, 1.8vw, 2.25rem);
	font-weight: 600;
	color: #18181b;
	line-height: 1.3;
	margin: 0;
}
[data-product-parallax-scroll] .product-parallax-tech-head span {
	color: #52525b;
}

[data-product-parallax-scroll] .product-parallax-tech-list {
	padding: clamp(1.25rem, 2.5vw, 2.5rem);
	display: flex;
	flex-direction: column;
	gap: clamp(0.5rem, 0.9vw, 1.5rem);
}
[data-product-parallax-scroll] .product-parallax-tech-item-title {
	font-size: clamp(0.7rem, 0.85vw, 1rem);
	font-weight: 600;
	color: #18181b;
	margin: 0 0 0.2rem;
}
[data-product-parallax-scroll] .product-parallax-tech-item-desc {
	font-size: clamp(0.6rem, 0.75vw, 0.875rem);
	color: #52525b;
	line-height: 1.5;
	margin: 0;
}

[data-product-parallax-scroll] .product-parallax-comparison-card {
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
}

[data-product-parallax-scroll] .product-parallax-comparison-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
@media (min-width: 640px) {
	[data-product-parallax-scroll] .product-parallax-comparison-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

[data-product-parallax-scroll] .product-parallax-comparison-feature {
	display: none !important; 
}

@media (min-width: 640px) {
	[data-product-parallax-scroll] .product-parallax-comparison-feature {
		display: grid;
	}
	[data-product-parallax-scroll] .product-parallax-comparison-feature {
		display:  grid !important; 
	}

}
[data-product-parallax-scroll] .product-parallax-comparison-col {
	display: grid;
	grid-template-rows: auto;
	font-size: 0.875rem;
}

[data-product-parallax-scroll] .product-parallax-comparison-col:not(:last-child) {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}
[data-product-parallax-scroll] .product-parallax-comparison-col > span {
	color: rgba(255, 255, 255, 0.5);
	padding: 0.75rem 1.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
[data-product-parallax-scroll] .product-parallax-comparison-col .product-parallax-comparison-header {
	background: rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
[data-product-parallax-scroll] .product-parallax-comparison-header {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}
[data-product-parallax-scroll] .product-parallax-comparison-accent {
	color: #ff6b7c !important;
}
[data-product-parallax-scroll] .product-parallax-comparison-a span:not(.product-parallax-comparison-header) {
	font-weight: 600;
	color: #fff;
}
[data-product-parallax-scroll] .product-parallax-comparison-b span:not(.product-parallax-comparison-header) {
	color: rgba(255, 255, 255, 0.5);
}

[data-product-parallax-scroll] .product-parallax-dots {
	position: absolute;
	bottom: 1.5rem;
	left: 0;
	right: 0;
	z-index: 20;
	display: flex;
	justify-content: center;
	gap: 2rem;
}
@media (min-width: 768px) {
	[data-product-parallax-scroll] .product-parallax-dots { display: none; }
}
[data-product-parallax-scroll] .product-parallax-dot {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.375rem;
	opacity: 0.28;
	transform: scale(0.6);
	transition: opacity 0.3s, transform 0.3s;
}
[data-product-parallax-scroll] .product-parallax-dot.active {
	opacity: 1;
	transform: scale(1);
}
[data-product-parallax-scroll] .product-parallax-dot span {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #ff6b7c;
}
[data-product-parallax-scroll] .product-parallax-dot em {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-style: normal;
	color: #fff;
}

/* ==========================================================================
PRODUCT PARALLAX (Quality / Technology / Comparison — static blocks, legacy)
========================================================================== */

.section-product-parallax {
	background: #f2f1ef;
	padding: 0;
}

.section-product-parallax:not([data-product-parallax-scroll]) {
	padding: 4rem 1rem;
}
@media (min-width: 768px) {
	.section-product-parallax:not([data-product-parallax-scroll]) { padding: 6rem 1.5rem; }
}

.product-parallax-inner {
	max-width: 56rem;
	margin: 0 auto;
}

.product-parallax-block {
	margin-bottom: 3rem;
}

.product-parallax-block:last-child {
	margin-bottom: 0;
}

.product-parallax-number {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #FF6B7C;
	margin: 0 0 0.25rem;
}

.product-parallax-title {
	font-family: var(--font-serif);
	font-size: 1.75rem;
	font-weight: 600;
	color: #18181b;
	margin: 0 0 1rem;
}

@media (min-width: 768px) {
	.product-parallax-title { font-size: 2rem; }
}

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

.product-parallax-list li {
	font-size: 0.875rem;
	color: #52525b;
	line-height: 1.6;
	padding: 0.5rem 0;
	border-bottom: 1px solid #e4e4e7;
}

.product-parallax-list li:last-child {
	border-bottom: none;
}

.product-parallax-list strong {
	color: #18181b;
	display: block;
	margin-bottom: 0.25rem;
}

.product-parallax-sub {
	font-size: 0.875rem;
	color: #71717a;
	margin: 0 0 1rem;
}

.product-parallax-table-wrap {
	overflow-x: auto;
	border-radius: 0.5rem;
	border: 1px solid #e4e4e7;
}

.product-parallax-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.product-parallax-table th,
.product-parallax-table td {
	padding: 0.75rem 1rem;
	text-align: left;
	border-bottom: 1px solid #e4e4e7;
}

.product-parallax-table th {
	background: #f4f4f5;
	font-weight: 600;
	color: #18181b;
}

.product-parallax-table tr:last-child td {
	border-bottom: none;
}

/* ==========================================================================
INDUSTRY PAGES (industries/*.html) — matches React Industry* components
========================================================================== */

/* ----- Hero (IndustryHeroSection) ----- */
.section-industry-hero {
	background: #fff;
	padding: 6rem 0rem 0;
}
@media (min-width: 640px) {
	.section-industry-hero { padding-top: 7rem; }
}
@media (min-width: 768px) {
	.section-industry-hero { padding-top: 6rem; }
}

.industry-hero-inner {
	max-width: 1800px;
	margin: 0 auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 640px) {
	.industry-hero-inner { padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (min-width: 768px) {
	.industry-hero-inner { padding-left: 4rem; padding-right: 4rem; }
}
@media (min-width: 1024px) {
	.industry-hero-inner { padding-left: 5.5rem; padding-right: 5.5rem; }
}

.industry-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding-bottom: 2rem;
}
@media (min-width: 1024px) {
	.industry-hero-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; padding-bottom: 2.5rem; }
}

.industry-hero-label {
	font-size: 1.25rem;
	font-weight: 700;
	color: #FF6B7C;
	margin: 0 0 0.5rem;
}

.industry-hero-title {
	font-family: var(--font-sans);
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 1.05;
	color: #18181b;
	margin: 0;
	white-space: pre-line;
	letter-spacing: -1px;
}
@media (min-width: 768px) {
	.industry-hero-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
	.industry-hero-title { font-size: 3.75rem; }
}

.industry-hero-right {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	justify-content: flex-start;
}
.industry-hero-sub,
.industry-hero-intro {
	font-size: 0.875rem;
	line-height: 1.6;
	color: #18181b;
	margin: 0;
}
@media (min-width: 640px) {
	.industry-hero-sub,
	.industry-hero-intro { font-size: 1rem; }
}

.industry-hero-image-wrap {
	position: relative;
	width: 100%;
	border-radius: 1.25rem;
	overflow: hidden;
}
.industry-hero-image-card {
	position: relative;
	width: 100%;
	height: 300px;
	border-radius: 1.25rem;
	overflow: hidden;
}
@media (min-width: 640px) {
	.industry-hero-image-card { height: 420px; }
}
@media (min-width: 768px) {
	.industry-hero-image-card { height: 560px; }
}
@media (min-width: 1024px) {
	.industry-hero-image-card { height: 680px; }
}
.industry-hero-image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.industry-hero-bubble-overlay {
	position: absolute;
	inset: 0;
	z-index: 10;
	pointer-events: none;
	transition: transform 0.4s ease-out;
}
.industry-hero-bubble-overlay img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.5;
}

/* ----- Applications (IndustryApplicationsSection) ----- */
.section-industry-applications {
	position: relative;
	padding: 5rem 0;
	margin-top: 5rem;
	overflow: hidden;
}
@media (min-width: 768px) {
	.section-industry-applications { padding: 7rem 0; margin-top: 5rem; }
}

.industry-apps-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.industry-apps-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}
.industry-apps-container {
	position: relative;
	z-index: 10;
	max-width: 1800px;
	margin: 0 auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 640px) {
	.industry-apps-container { padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (min-width: 768px) {
	.industry-apps-container { padding-left: 4rem; padding-right: 4rem; }
}
@media (min-width: 1024px) {
	.industry-apps-container { padding-left: 5.5rem; padding-right: 5.5rem; }
}

.industry-apps-box {
	background: #f4f4f5;
	border-radius: 1.875rem;
	padding: 2rem;
}
@media (min-width: 640px) {
	.industry-apps-box { padding: 2.5rem; }
}
@media (min-width: 768px) {
	.industry-apps-box { padding: 3.5rem; }
}

.industry-apps-header {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
	.industry-apps-header { grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 3.5rem; }
}
.industry-apps-eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #FF6B7C;
	margin: 0 0 1rem;
}
.industry-apps-title {
	font-family: var(--font-serif);
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.05em;
	font-style: italic;
	color: #18181b;
	margin: 0;
}
@media (min-width: 768px) {
	.industry-apps-title { font-size: 2.25rem; }
}
.industry-apps-desc {
	display: flex;
	align-items: flex-end;
}
.industry-apps-desc p {
	font-size: 0.875rem;
	color: #71717a;
	line-height: 1.6;
	margin: 0;
}
@media (min-width: 640px) {
	.industry-apps-desc p { font-size: 1rem; }
}

.industry-apps-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 640px) {
	.industry-apps-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.industry-apps-list { grid-template-columns: repeat(3, 1fr); }
}

.industry-app-card {
	position: relative;
	overflow: hidden;
	background: #e8e5e1;
	border-radius: 1.25rem;
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	transition: background-color 0.3s, color 0.3s;
}
.industry-app-card:hover {
	background: #FF6B7C;
}
.industry-app-bubble {
	position: absolute;
	bottom: -4rem;
	right: -4rem;
	width: 12rem;
	height: 12rem;
	pointer-events: none;
	opacity: 0;
	transform: scale(0.75);
	transition: opacity 0.5s, transform 0.5s;
}
.industry-app-card:hover .industry-app-bubble {
	opacity: 0.8;
	transform: scale(1);
}
.industry-app-bubble img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.industry-app-num {
	position: relative;
	z-index: 10;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #FF6B7C;
	transition: color 0.3s;
}
.industry-app-card:hover .industry-app-num {
	color: rgba(255, 255, 255, 0.8);
}
.industry-app-card h3 {
	position: relative;
	z-index: 10;
	font-size: 1rem;
	font-weight: 600;
	color: #18181b;
	margin: 0;
	line-height: 1.3;
	transition: color 0.3s;
}
@media (min-width: 640px) {
	.industry-app-card h3 { font-size: 1.125rem; }
}
.industry-app-card:hover h3 {
	color: #fff;
}
.industry-app-card p {
	position: relative;
	z-index: 10;
	font-size: 0.875rem;
	color: #71717a;
	line-height: 1.5;
	margin: 0;
	transition: color 0.3s;
}
.industry-app-card:hover p {
	color: rgba(255, 255, 255, 0.9);
}

/* ----- Why Choose (IndustryWhyChooseSection) ----- */
.section-industry-why {
	background: #fff;
	padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
	.section-industry-why { padding: 6rem 1.5rem; }
}

.industry-why-inner {
	max-width: 1800px;
	margin: 0 auto;
	padding-left: 0;
	padding-right: 0;
}
@media (min-width: 640px) {
	.industry-why-inner { padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (min-width: 768px) {
	.industry-why-inner { padding-left: 4rem; padding-right: 4rem; }
}
@media (min-width: 1024px) {
	.industry-why-inner { padding-left: 5.5rem; padding-right: 5.5rem; }
}

.industry-why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}
@media (min-width: 1024px) {
	.industry-why-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.industry-why-image-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 3.5 / 4;
	border-radius: 1.25rem;
	overflow: hidden;
}
.industry-why-image {
	position: relative;
	width: 100%;
	height: 100%;
}
.industry-why-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.industry-why-bubble-overlay {
	position: absolute;
	inset: 0;
	z-index: 10;
	pointer-events: none;
	transition: transform 0.4s ease-out;
}
.industry-why-bubble-overlay img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.5;
}

.industry-why-eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #FF6B7C;
	margin: 0 0 1rem;
}
.industry-why-title {
	font-family: var(--font-serif);
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.05em;
	font-style: italic;
	color: #18181b;
	margin: 0 0 1rem;
}
@media (min-width: 768px) {
	.industry-why-title { font-size: 3rem; }
}
.industry-why-desc {
	font-size: 0.875rem;
	color: #71717a;
	line-height: 1.6;
	margin: 0 0 2rem;
	max-width: 28rem;
}
@media (min-width: 640px) {
	.industry-why-desc { font-size: 1rem; }
}

.industry-why-list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid #e4e4e7;
}
.industry-why-item {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	padding: 1.75rem 1rem;
	margin: 0 -1rem;
	border-radius: 0.75rem;
	transition: background 0.2s;
}
.industry-why-item:last-child {
	padding-bottom: 1.75rem;
}
.industry-why-item:hover {
	background: rgba(0, 0, 0, 0.02);
}
.industry-why-icon {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	position: relative;
}
.industry-why-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.industry-why-item h3 {
	font-size: 1rem;
	font-weight: 600;
	color: #18181b;
	margin: 0 0 0.375rem;
	transition: color 0.2s;
}
@media (min-width: 640px) {
	.industry-why-item h3 { font-size: 1.125rem; }
}
.industry-why-item:hover h3 {
	color: #FF6B7C;
}
.industry-why-item p {
	font-size: 0.875rem;
	color: #71717a;
	line-height: 1.5;
	margin: 0;
}
.industry-why-item + .industry-why-item {
	border-top: 1px solid #e4e4e7;
}
.industry-why-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 2rem;
	padding: 0.75rem 1.5rem;
	background: #18181b;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: background 0.2s;
}
.industry-why-btn:hover {
	background: #3f3f46;
	color: #fff;
}

/* ----- Industry CTA (IndustryCTASection) ----- */
.section-industry-cta {
	background: #fff;
	padding: 2.5rem 1rem;
}
@media (min-width: 768px) {
	.section-industry-cta { padding: 3.5rem 1rem; }
}

.industry-cta-inner {
	position: relative;
	max-width: 72rem;
	margin: 0 auto;
	overflow: hidden;
	background: #FF6B7C;
	border-radius: 1.25rem;
	padding: 3.5rem 2rem 4rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
@media (min-width: 640px) {
	.industry-cta-inner { padding: 4rem 3rem 5rem; }
}
@media (min-width: 768px) {
	.industry-cta-inner { padding: 5rem 4rem 5rem; }
}

.industry-cta-bubble {
	position: absolute;
	right: -5rem;
	bottom: -36rem;
	width: 280px;
	height: 280px;
	opacity: 0.8;
	pointer-events: none;
	transform: translateY(-50%) scale(0.7);
	transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.section-industry-cta[data-industry-cta-bubble].industry-cta-visible .industry-cta-bubble {
	transform: translateY(-50%) scale(1.35);
}
@media (min-width: 768px) {
	.industry-cta-bubble { width: 420px; height: 420px; right: -5rem; bottom: -26rem; }
}
.industry-cta-bubble img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.industry-cta-content {
	position: relative;
	z-index: 10;
	max-width: 36rem;
}
.industry-cta-title {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.025em;
	color: #fff;
	margin: 0 0 1.5rem;
	white-space: pre-line;
}
@media (min-width: 640px) {
	.industry-cta-title { font-size: 3rem; }
}
.industry-cta-desc {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0 0 2rem;
}
@media (min-width: 640px) {
	.industry-cta-desc { font-size: 1.125rem; }
}
.industry-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	background: #fff;
	color: #FF6B7C;
	font-weight: 600;
	font-size: 0.875rem;
	border-radius: 0.5rem;
	text-decoration: none;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
	transition: background 0.2s, color 0.2s;
}
.industry-cta-btn:hover {
	background: rgba(255, 255, 255, 0.9);
	color: #e85c6d;
}

/* Legacy industry-cta using portfolio-cta (if any page still uses it) */
.section-industry-cta .portfolio-cta-inner {
	max-width: 72rem;
	margin: 0 auto;
}
