/* MetaBloom product landing page styles
   Extracted from bloomlab.id source inline <style> and adapted for trybloomlab.
   Loaded exclusively on page-metabloom.php via functions.php enqueue.
*/

:root {
	--bloom-teal: #1A4B52;
	--bloom-green: #34A853;
	--bloom-peach: #E88B6A;
	--bloom-mint: #F2FAF7;
	--bloom-mint-bg: #F2FAF7;
	--white: #FFF;
	--bg-page: #FDFAF8;
	--bloom-yellow: #FFD700;
	--bloom-red: #F05A5E;
	--text-purple: #4A1D63;
	--bloom-standard-width: 1200px;
	--bloom-standard-radius: 64px;
	--bloom-standard-padding: 60px var(--bloom-side-padding);
	--bloom-transition: .7s cubic-bezier(.16, 1, .3, 1);
	--pure-white: #fff;
	--bloom-bg: #f8fafc;
	--text-sub: #4a5568;
}

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

.metabloom-landing-wrapper,
.metabloom-landing-wrapper * {
	font-family: 'Plus Jakarta Sans', sans-serif !important;
	-webkit-font-smoothing: antialiased;
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.metabloom-hero-outer {
	width: 100%;
	display: flex;
	justify-content: center;
	background: var(--bloom-mint-bg);
}

.metabloom-hero-wrapper {
	width: 100%;
	max-width: var(--bloom-standard-width);
	display: flex;
	align-items: center;
	gap: 60px;
	padding: var(--bloom-hero-padding-top, 80px) var(--bloom-side-padding);
}

.hero-content-side { flex: 1.2; }

.badge-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }

.trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border-radius: 999px;
	background: var(--white);
	border: 1px solid rgba(26, 75, 82, .06);
	font-size: 13px;
	font-weight: 700;
}

.badge-icon svg { width: 18px; height: 18px; color: var(--bloom-green); }

.headline-main {
	font-size: clamp(2.5rem, 5vw, 3.8rem);
	font-weight: 800;
	line-height: 1.05;
	margin-bottom: 20px;
	letter-spacing: -.05em;
	color: var(--bloom-teal);
}

.headline-main span { color: #BC7156; }

.sub-headline {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.6;
	max-width: 520px;
	opacity: .9;
	color: var(--bloom-teal);
}

.hero-visual-side { flex: 1; display: flex; justify-content: center; }

.hero-visual-side .product-img {
	width: 100%;
	max-width: 400px;
	height: auto;
	max-height: 400px;
	object-fit: contain;
	border-radius: 0;
	box-shadow: none;
	transform: none;
}

/* Hero Shopee CTA styling */
.bloom-cta-hero {
	display: inline-block;
	background: var(--bloom-teal);
	color: #fff;
	text-decoration: none;
	padding: 22px 60px;
	border-radius: 100px;
	font-weight: 800;
	font-size: 1.3rem;
	box-shadow: 0 15px 35px rgba(26, 75, 82, .25);
	transition: transform .3s ease, background .3s ease;
}

.bloom-cta-hero:hover { transform: translateY(-3px); background: #143a40; }

/* ── VIDEO ────────────────────────────────────────────────────────────────── */
.video-outer-container {
	width: 100%;
	display: flex;
	justify-content: center;
	background: var(--bloom-mint-bg);
}

.bloomlab-player {
	width: 100%;
	max-width: 900px; /* hero video capped to match bloomlab.id (was var(--bloom-standard-width) = 1200px) */
	aspect-ratio: 16 / 9;
	border-radius: var(--bloom-standard-radius);
	overflow: hidden;
	background: #000;
	position: relative;
	cursor: pointer;
	margin: 0 var(--bloom-side-padding) 100px;
	display: block;
}

.bloomlab-thumb {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background-image: url('https://img.youtube.com/vi/djdI0Jg_mOM/maxresdefault.jpg');
	background-position: center;
	background-size: cover;
}

.bloomlab-play-trigger {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 80px; height: 80px;
	background: #34A853;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bloomlab-play-trigger::after {
	content: '';
	border-style: solid;
	border-width: 12px 0 12px 20px;
	border-color: transparent transparent transparent #fff;
	margin-left: 5px;
}

/* ── WHY DIETS FAIL ───────────────────────────────────────────────────────── */
.bloom-edu-outer {
	width: 100%;
	background: var(--bloom-mint);
	padding: 40px 10px;
	display: flex;
	justify-content: center;
}

.bloom-edu-wrapper {
	max-width: 1100px;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 30px;
	padding: 0;
}

.bloom-edu-content { flex: 1.1; text-align: left; }

.bloom-edu-content .headline {
	font-size: clamp(2.6rem, 5vw, 3.8rem);
	font-weight: 800;
	color: var(--bloom-teal);
	line-height: 1.1;
	letter-spacing: -.04em;
	margin: 0 0 10px 0;
}

.bloom-edu-content .headline span { color: #BC7156; }

.sub-headline-h3 {
	font-size: 1.5rem;
	color: var(--bloom-teal);
	opacity: .9;
	font-weight: 700;
	margin-bottom: 25px;
	line-height: 1.4;
}

.solution-banner {
	background: var(--bloom-teal);
	padding: 30px;
	border-radius: 24px;
	color: var(--white);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.6;
	box-shadow: 0 15px 30px rgba(26, 75, 82, .12);
	max-width: 500px;
}

.banner-tag {
	display: block;
	font-size: 1rem;
	color: #85CB98;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 8px;
}

.bloom-edu-list { flex: 1; display: flex; flex-direction: column; gap: 12px; }

.bloom-edu-list .problem-item {
	background: var(--white);
	padding: 22px 25px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 18px;
	color: var(--bloom-teal);
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.5;
	border: 1px solid rgba(26, 75, 82, .05);
	box-shadow: 0 4px 10px rgba(0, 0, 0, .02);
}

.emoji-box { font-size: 2.2rem; min-width: 55px; text-align: center; }

/* ── FIBER CHART ──────────────────────────────────────────────────────────── */
.fiber-chart-section {
	width: 100%;
	padding: 40px 20px;
	background: var(--white);
	display: flex;
	justify-content: center;
}

.fiber-chart-wrapper {
	max-width: var(--bloom-standard-width);
	width: 100%;
	background: var(--bloom-mint);
	padding: var(--bloom-standard-padding);
	border-radius: var(--bloom-standard-radius);
	text-align: center;
}

.chart-header { margin-bottom: 30px; }

.chart-title {
	font-size: clamp(2.2rem, 4.5vw, 3.2rem);
	font-weight: 800;
	color: var(--bloom-teal);
	line-height: 1.1;
	letter-spacing: -.05em;
	margin: 0 0 8px 0;
}

.chart-subtitle { font-size: .95rem; font-weight: 600; color: #3F5B62; opacity: 1; }

.chart-container {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 50px;
	align-items: center;
	margin-bottom: 30px;
}

.chart-labels { display: flex; flex-direction: column; gap: 16px; text-align: left; }

.label-header { display: flex; align-items: center; gap: 12px; margin-bottom: 2px; }

.color-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.dot-low { background: var(--bloom-peach); }
.dot-who { background: var(--bloom-teal); }
.dot-gut { background: var(--bloom-green); }

.label-group { padding-left: 18px; border-left: 4px solid transparent; }
.group-low { border-color: var(--bloom-peach); }
.group-who { border-color: var(--bloom-teal); }
.group-gut { border-color: var(--bloom-green); }

.label-name { font-size: 1.3rem; font-weight: 800; color: var(--bloom-teal); margin: 0; letter-spacing: -.02em; }
.label-desc { font-size: 1.05rem; font-weight: 600; opacity: .8; color: var(--bloom-teal); margin: 0; padding-left: 24px; }

.chart-bars {
	height: 240px;
	display: flex;
	align-items: flex-end;
	justify-content: space-around;
	gap: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(26, 75, 82, .1);
}

.bar-track { flex: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; }

.bar {
	width: 100%;
	max-width: 70px;
	border-radius: 16px 16px 4px 4px;
	position: relative;
	animation: growUp 1.5s var(--bloom-transition) forwards;
	height: 0;
}

@keyframes growUp { to { height: var(--target-height); } }

.bar-low { background: var(--bloom-peach); box-shadow: 0 8px 20px rgba(232, 139, 106, .2); }
.bar-who { background: var(--bloom-teal); }
.bar-gut { background: var(--bloom-green); box-shadow: 0 8px 20px rgba(52, 168, 83, .2); }

.bar-value {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 800;
	font-size: 1rem;
	color: var(--bloom-teal);
	white-space: nowrap;
}

.chart-footer { padding-top: 25px; border-top: 1px solid rgba(26, 75, 82, .1); font-size: 1.15rem; font-weight: 600; color: var(--bloom-teal); line-height: 1.4; }
.chart-footer strong { color: #A06049; font-size: 1.4rem; }

/* ── 96% POP SECTION ─────────────────────────────────────────────────────── */
.bloom-white-pop-section { width: 100%; background: var(--white) !important; padding: 30px 0; }
.bloom-pop-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 10px; }
.bloom-header-row { text-align: center; margin-bottom: 30px; }
.bloom-header-row .stat-pill { color: #A06049; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; display: inline-block; }

.stats-headline { font-size: clamp(2.3rem, 5vw, 3.5rem); font-weight: 800; color: var(--bloom-teal); line-height: 1.2; letter-spacing: -.03em; margin: 0; }
.stats-headline span { color: #BC7156; }

.bloom-grid-row { display: flex; flex-direction: row; gap: 25px; align-items: flex-start; }
.bloom-anchor-col { flex: 1; }
.bloom-list-col { flex: 1.2; }

.frustration-card {
	background: var(--bloom-teal);
	padding: 35px 30px;
	border-radius: 24px;
	color: #fff;
	box-shadow: 0 20px 40px rgba(26, 75, 82, .1);
}

.anchor-sub { color: #85CB98; text-transform: uppercase; font-weight: 800; letter-spacing: .1em; font-size: .95rem; margin-bottom: 12px; }
.anchor-main { font-size: 1.4rem; font-weight: 700; line-height: 1.6; margin-bottom: 20px; }
.anchor-divider { height: 1px; background: rgba(255, 255, 255, .2); margin-bottom: 20px; }
.anchor-footer { font-weight: 700; font-size: 1.15rem; color: #85CB98; }

.problem-stack { display: flex; flex-direction: column; gap: 12px; }

.problem-stack .problem-item {
	background: var(--white);
	padding: 20px 24px;
	border-radius: 18px;
	display: flex;
	gap: 15px;
	align-items: center;
	box-shadow: 0 5px 20px rgba(26, 75, 82, .06);
	border: 1px solid rgba(26, 75, 82, .08);
}

.item-icon { font-size: 2.2rem; min-width: 50px; text-align: center; }
.item-text strong { display: block; color: var(--bloom-teal); font-size: 1.25rem; margin-bottom: 4px; }
.item-text p { color: var(--bloom-teal); opacity: .85; font-weight: 600; margin: 0; font-size: 1.05rem; line-height: 1.5; }

/* ── INTRODUCING METABLOOM ────────────────────────────────────────────────── */
.bloom-product-outer {
	width: 100%;
	background: var(--bloom-mint);
	padding: 30px 10px;
	display: flex;
	justify-content: center;
}

.bloom-product-wrapper {
	max-width: 1100px;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 30px;
}

.product-visual-side { flex: 1; display: flex; justify-content: center; align-items: center; }
.product-visual-side .product-img { width: 100%; max-width: 400px; height: auto; object-fit: contain; filter: drop-shadow(0 15px 30px rgba(26, 75, 82, .15)); }
.product-info-side { flex: 1.2; }

.product-title { font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 800; color: var(--bloom-teal); line-height: 1.1; letter-spacing: -.04em; margin-bottom: 12px; }
.product-title span { color: #2D9248; }

.intro-box { margin-bottom: 20px; font-size: 1.2rem; font-weight: 700; color: var(--bloom-teal); line-height: 1.5; opacity: .9; }

.feature-stack { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 25px; }

.feature-card {
	background: var(--white);
	padding: 18px 22px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--bloom-teal);
	font-weight: 700;
	font-size: 1.15rem;
	line-height: 1.4;
	border: 1px solid rgba(26, 75, 82, .05);
	box-shadow: 0 4px 10px rgba(0, 0, 0, .02);
}

.feature-card .dot { width: 10px; height: 10px; background: var(--bloom-green); border-radius: 50%; flex-shrink: 0; }

.social-proof-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--bloom-peach);
	color: #12342F;
	padding: 12px 24px;
	border-radius: 100px;
	font-weight: 800;
	font-size: 1rem;
	margin-bottom: 25px;
}

.bloom-cta-rounded {
	display: block;
	width: fit-content;
	background: var(--bloom-teal);
	color: #fff;
	text-decoration: none;
	padding: 22px 60px;
	border-radius: 100px;
	font-weight: 800;
	font-size: 1.3rem;
	box-shadow: 0 15px 35px rgba(26, 75, 82, .25);
	transition: transform .3s ease, background .3s ease;
}

.bloom-cta-rounded:hover { transform: translateY(-3px); background: #143a40; }

/* ── EXCLUSIVE PACKS / SHOPEE CTA ─────────────────────────────────────────── */
.bloomlab-product-section { width: 100%; background: var(--white) !important; padding: 80px 0; }
.bloomlab-container { max-width: var(--bloom-standard-width); margin: 0 auto; padding: 0 24px; }
.bloomlab-header { text-align: center; margin-bottom: 50px; }
.bloomlab-header .stat-pill { color: #A06049; font-weight: 800; font-size: .9rem; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 12px; }
.bloomlab-header h2 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 800; color: var(--bloom-teal); letter-spacing: -.05em; line-height: 1.1; margin: 0; }
.bloomlab-header .highlight { color: #2D9248; }

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

.bloomlab-card {
	background: var(--white);
	border-radius: 48px;
	padding: 35px;
	border: 1px solid rgba(26, 75, 82, .08);
	box-shadow: 0 12px 30px rgba(26, 75, 82, .04);
	display: flex;
	flex-direction: column;
	min-width: 0;
	transition: var(--bloom-transition);
}

.bloomlab-card:hover { transform: translateY(-12px); box-shadow: 0 40px 80px rgba(26, 75, 82, .12); border-color: var(--bloom-green); }

.bloomlab-img-box {
	width: 100%;
	aspect-ratio: 1.1 / 1;
	background: var(--bloom-mint);
	border-radius: 32px;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.bloomlab-img-box img { width: 100%; height: 100%; object-fit: contain; padding: 15px; transition: transform .6s ease; }
.bloomlab-card:hover img { transform: scale(1.05); }

.card-info h3 { font-size: 1.4rem; font-weight: 800; color: var(--bloom-teal); margin: 0 0 12px 0; line-height: 1.2; }
.card-info p { font-size: 1.1rem; color: var(--bloom-teal); opacity: .85; line-height: 1.5; margin: 0 0 30px 0; font-weight: 600; flex-grow: 1; }

.bloomlab-btn-rounded {
	background: var(--bloom-peach);
	color: #12342F;
	text-align: center;
	text-decoration: none;
	padding: 20px 25px;
	border-radius: 100px;
	font-weight: 800;
	font-size: 1.1rem;
	text-transform: uppercase;
	display: block;
	box-shadow: 0 10px 20px rgba(232, 139, 106, .2);
	transition: all .3s ease;
}

.bloomlab-btn-rounded:hover { background: var(--bloom-teal); color: #fff; transform: translateY(-2px); }

/* ── COACH / HERO SECTION ─────────────────────────────────────────────────── */
.container, .metabloom-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 20px 8px; }

.hero-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	background: var(--white);
	border-radius: 40px;
	padding: 50px;
	box-shadow: 0 20px 50px rgba(26, 75, 82, .05);
}

.hero-content { flex: 1.2; text-align: left; }
.hero-section h2 { font-weight: 800 !important; font-size: clamp(2.4rem, 5vw, 3.5rem) !important; color: var(--bloom-teal) !important; line-height: 1.1 !important; letter-spacing: -.04em !important; margin: 0 0 15px 0 !important; }
.hero-section h2 strong { color: #BC7156 !important; }
.hero-subtext { font-weight: 600 !important; font-size: 1.25rem !important; color: var(--bloom-teal) !important; line-height: 1.6 !important; margin-bottom: 35px; opacity: .9; }

.hero-image { flex: 1; min-width: 0; position: relative; display: flex; flex-direction: column; align-items: center; }
.hero-image img { width: 100%; max-width: 400px; height: auto; object-fit: contain; filter: drop-shadow(0 15px 40px rgba(26, 75, 82, .15)); }

.hero-badge {
	position: absolute;
	bottom: -10px;
	background: var(--bloom-teal);
	color: var(--white);
	padding: 14px 28px;
	border-radius: 100px;
	font-weight: 800;
	font-size: 1rem;
	box-shadow: 0 10px 20px rgba(26, 75, 82, .2);
	white-space: nowrap;
	z-index: 2;
}

/* ── TESTIMONIAL CAROUSEL ─────────────────────────────────────────────────── */
.testimonial-container { padding: 30px 8px; }
.testimonial-header { margin-bottom: 30px; text-align: center; }
.testimonial-header h2 { font-weight: 800 !important; font-size: clamp(2.4rem, 7vw, 3.8rem) !important; color: var(--bloom-teal) !important; line-height: 1.1 !important; letter-spacing: -.04em !important; margin-bottom: 12px !important; }
.testimonial-header h2 strong { color: #BC7156 !important; }
.testimonial-header p { font-weight: 600 !important; font-size: 1.25rem !important; color: var(--bloom-teal) !important; max-width: 750px; margin: 0 auto; opacity: .9; line-height: 1.5 !important; }

.carousel-wrapper { position: relative; width: 100%; }
.carousel-track { display: flex; gap: 15px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 10px 5px 25px; cursor: grab; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card { flex: 0 0 auto; width: 320px; height: 420px; scroll-snap-align: center; background: var(--white); border-radius: 28px; box-shadow: none; border: none; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.carousel-card img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background: var(--bloom-teal); color: var(--white); border: none; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: .3s ease; }
.carousel-arrow.left { left: 0; }
.carousel-arrow.right { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.carousel-dots .dot { width: 10px; height: 10px; background: #cbd5e1; border-radius: 50%; cursor: pointer; transition: .3s ease; }
.carousel-dots .dot.active { background: var(--bloom-peach); width: 28px; border-radius: 10px; }

/* ── SCIENCE & INGREDIENTS ────────────────────────────────────────────────── */
.section-container { max-width: var(--bloom-standard-width); margin: 0 auto; padding: 40px 20px; }

.science-box {
	background: var(--bg-page);
	border-radius: var(--bloom-standard-radius);
	padding: var(--bloom-standard-padding);
	text-align: center;
	margin-bottom: 30px;
	box-shadow: 0 12px 35px rgba(26, 75, 82, .04);
	border: 1px solid rgba(26, 75, 82, .03);
}

.science-box h2 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 800; margin-bottom: 15px; color: var(--bloom-teal); letter-spacing: -.05em; line-height: 1.1; }
.science-box h2 span { color: #2D9248; }
.science-box p { font-size: 1.35rem; font-weight: 600; color: var(--bloom-teal); max-width: 850px; margin: 0 auto; opacity: .95; line-height: 1.6; }

.ingredients-header { text-align: center; margin-bottom: 25px; }
.ingredients-header h3 { font-size: .9rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; color: #A06049; }

.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 30px; }

.ingredients-grid .card {
	background: var(--white);
	border-radius: 32px;
	padding: 35px 25px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 1px solid rgba(26, 75, 82, .06);
	box-shadow: 0 10px 25px rgba(26, 75, 82, .04);
	transition: var(--bloom-transition);
}

.ingredients-grid .card:hover { transform: translateY(-8px); border-color: var(--bloom-green); }

.card-image-container {
	width: 90px; height: 90px;
	margin-bottom: 20px;
	background: var(--bloom-mint);
	border-radius: 22px;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-image-container img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ingredients-grid .card h4 { font-size: 1.4rem; margin-bottom: 10px; color: var(--bloom-teal); font-weight: 800; }
.ingredients-grid .card p { font-size: 1.1rem; font-weight: 600; color: var(--bloom-teal); opacity: .85; line-height: 1.5; }

.result-banner {
	background: var(--bloom-teal);
	color: var(--white);
	padding: 24px;
	border-radius: 100px;
	text-align: center;
	font-weight: 800;
	font-size: 1.2rem;
	box-shadow: 0 12px 25px rgba(26, 75, 82, .15);
}

/* ── GUT MICROBIOME ───────────────────────────────────────────────────────── */
.gut-container { padding: 40px 20px; }
.gut-container .header { text-align: center; margin-bottom: 60px; }
.gut-container .header h2 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -.05em; line-height: 1.1; margin-bottom: 20px; color: var(--bloom-teal); }
.gut-container .header h2 span { color: #BC7156; }
.gut-container .header p { font-size: 1.35rem; font-weight: 600; max-width: 850px; margin: 0 auto; opacity: .95; line-height: 1.6; }

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

.cluster-card {
	background: var(--bg-page);
	padding: 40px 35px;
	border-radius: 32px;
	border: 1px solid rgba(22, 69, 82, .05);
	transition: var(--bloom-transition);
}

.cluster-card:hover { transform: translateY(-8px); border-color: var(--bloom-green); background: var(--white); }
.cluster-icon { font-size: 2.2rem; margin-bottom: 15px; display: block; }
.cluster-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 15px; line-height: 1.2; color: var(--bloom-teal); }
.cluster-list { list-style: none; padding: 0; }
.cluster-list li { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; padding-left: 24px; position: relative; color: var(--bloom-teal); }
.cluster-list li::before { content: "•"; position: absolute; left: 0; color: var(--bloom-green); font-weight: 800; }

.cta-section {
	background: var(--bloom-teal);
	border-radius: var(--bloom-standard-radius);
	padding: 80px 60px;
	text-align: center;
	color: var(--white);
}

.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.cta-section p { font-size: 1.25rem; opacity: .9; margin-bottom: 40px; font-weight: 600; line-height: 1.6; max-width: 650px; margin-left: auto; margin-right: auto; }

.timeline-pill {
	background: rgba(255, 255, 255, .1);
	padding: 14px 28px;
	border-radius: 100px;
	font-weight: 700;
	font-size: 1rem;
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, .15);
	color: #E2E8F0;
}

/* ── S-CURVE (PRE/PRO/POSTBIOTICS) ───────────────────────────────────────── */
.s-curve-container { max-width: 1000px; margin: 80px auto; position: relative; padding: 0 20px; }
.s-curve-container::before { content: ''; position: absolute; top: 10%; left: 50%; width: 2px; height: 80%; background: linear-gradient(var(--bloom-yellow), var(--bloom-green), var(--bloom-red)); opacity: .2; z-index: 0; }

.curve-row { display: flex; align-items: center; min-height: 220px; margin-bottom: -20px; position: relative; z-index: 1; }

.blob { padding: 60px 60px 60px 140px; width: 85%; transition: transform .3s ease; box-shadow: 0 15px 35px rgba(0, 0, 0, .05); display: flex; align-items: center; }
.pre .blob { background: var(--bloom-yellow); border-radius: 60% 40% 70% 30% / 40% 50% 60% 70%; margin-right: auto; }
.pro .blob { background: #2D9749; border-radius: 30% 70% 40% 60% / 50% 40% 70% 50%; margin-left: auto; color: #fff; padding: 60px 60px 60px 140px; }
.post .blob { background: var(--bloom-red); border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; margin-right: auto; color: #fff; }

.content-wrap { max-width: 500px; margin-left: 40px; }
.pro .content-wrap { margin-left: 40px; margin-right: 0; }
.s-curve-container h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; color: var(--text-purple); }
.pro h2, .post h2 { color: #fff; }
.s-curve-container .description { font-size: 1.1rem; font-weight: 500; line-height: 1.6; opacity: .95; }
.pro .description, .post .description { color: #10201E; }
.emoji-icon { font-size: 4rem; filter: drop-shadow(0 5px 15px rgba(0, 0, 0, .1)); margin: 0 40px; }
.pro { flex-direction: row-reverse; }

/* ── FIBER COMPARISON SPLIT ───────────────────────────────────────────────── */
.split-section {
	max-width: 1250px;
	width: 100%;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 40px;
	align-items: center;
	margin: 80px auto;
	padding: 20px;
}

.split-section .content-left { text-align: left; padding: 20px 0; }

.hero-badge-fiber {
	display: inline-block;
	background: var(--bloom-mint);
	color: var(--bloom-teal);
	padding: 6px 16px;
	border-radius: 50px;
	font-size: .8rem;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.split-section h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.1; color: var(--bloom-teal); margin-bottom: 15px; letter-spacing: -.04em; }
.split-section h2 span { color: #2D9248; }
.hero-desc { font-size: 1.1rem; color: var(--bloom-teal); opacity: .85; margin-bottom: 25px; line-height: 1.5; font-weight: 600; }

.comparison-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }

.comp-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--bloom-mint);
	padding: 16px 25px;
	border-radius: 20px;
	border: 1px solid rgba(26, 75, 82, .05);
	transition: all .3s ease;
}

.comp-item:hover { transform: translateX(8px); border-color: var(--bloom-green); background: var(--white); box-shadow: 0 8px 20px rgba(26, 75, 82, .08); }

.comp-info { display: flex; flex-direction: column; }
.comp-label { font-size: .9rem; font-weight: 700; color: var(--bloom-teal); }
.comp-weight { font-size: 1.6rem; font-weight: 800; color: #2D9248; line-height: 1.2; }
.sachet-tag { font-weight: 800; font-size: .9rem; color: #3F5B62; opacity: 1; }

.visual-right { position: relative; display: flex; justify-content: center; align-items: center; padding: 20px; }

.image-bg-blob {
	position: absolute;
	width: 100%; height: 100%;
	background: var(--bloom-mint);
	border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
	z-index: -1;
	animation: drift 8s infinite alternate ease-in-out;
}

.illustration-container img { width: 100%; max-width: 480px; filter: drop-shadow(0 20px 35px rgba(26, 75, 82, .15)); transform: rotate(-1deg); }
.disclaimer { font-size: .75rem; font-weight: 600; color: #3F5B62; opacity: 1; margin-top: 15px; line-height: 1.4; }

@keyframes drift {
	from { transform: rotate(0deg) scale(1); }
	to { transform: rotate(5deg) scale(1.05); }
}

/* ── INGREDIENT COMPOSITION CAROUSEL ─────────────────────────────────────── */
.header-section { max-width: var(--bloom-standard-width); margin: 0 auto; padding: 80px 40px 20px; text-align: left; }
.header-section .badge { text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; font-weight: 800; color: #277E3E; margin-bottom: 10px; display: block; }
.header-section h2 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -.05em; color: var(--bloom-teal); margin-bottom: 15px; }
.header-section p { font-size: 1.25rem; opacity: .95; max-width: 600px; line-height: 1.6; font-weight: 600; color: var(--bloom-teal); }

.carousel-container { padding: 0 0 100px; position: relative; }
.carousel-container .carousel-track { display: flex; gap: 30px; padding: 40px 24px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; cursor: grab; scroll-snap-type: x mandatory; }
.carousel-container .carousel-track::-webkit-scrollbar { display: none; }

.comp-card {
	flex: 0 0 auto;
	width: 380px;
	min-height: 520px;
	background: var(--bloom-mint);
	border-radius: 48px;
	padding: 45px;
	border: 1px solid rgba(26, 75, 82, .05);
	box-shadow: 0 10px 30px rgba(26, 75, 82, .03);
	display: flex;
	flex-direction: column;
	scroll-snap-align: center;
	transition: var(--bloom-transition);
}

.comp-card:hover { transform: translateY(-12px); background: var(--white); border-color: var(--bloom-green); box-shadow: 0 30px 60px rgba(26, 75, 82, .1); }

.comp-card .card-visual { width: 85px; height: 85px; background: var(--white); border-radius: 22px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; box-shadow: 0 8px 20px rgba(26, 75, 82, .06); }
.comp-card .card-visual img { max-width: 65%; height: auto; }
.comp-card h3 { font-size: 1.7rem; font-weight: 800; margin-bottom: 5px; color: var(--bloom-teal); }
.comp-card h4 { font-size: .85rem; color: #277E3E; margin-bottom: 22px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.comp-card ul { list-style: none; padding: 0; }
.comp-card li { font-size: 1.1rem; line-height: 1.5; margin-bottom: 14px; display: flex; gap: 12px; font-weight: 600; color: var(--bloom-teal); }
.comp-card li::before { content: "✓"; color: var(--bloom-green); font-weight: 900; font-size: 1.2rem; }

.nav-controls { max-width: var(--bloom-standard-width); margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.nav-btn { width: 52px; height: 52px; border-radius: 50%; border: 1px solid #edf2f7; background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--bloom-teal); transition: .3s; }
.progress-bar-container { flex: 1; margin: 0 25px; height: 4px; background: #f1f5f9; border-radius: 10px; overflow: hidden; }
.mobile-dots { display: none; }

/* ── TESTIMONIAL SPOTLIGHT ────────────────────────────────────────────────── */
.section-wrapper { max-width: var(--bloom-standard-width); margin: 0 auto; padding: 80px 24px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; margin-bottom: 0; }
.spotlight-content h2 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.05; margin-bottom: 25px; letter-spacing: -.05em; color: var(--bloom-teal); }
.spotlight-content h2 span { color: #2D9248; }
.spotlight-content p { font-size: 1.25rem; line-height: 1.7; font-weight: 600; color: var(--bloom-teal); opacity: .85; }

.player-card {
	position: relative;
	border-radius: 48px;
	overflow: hidden;
	background: #000;
	cursor: pointer;
	transition: all .8s var(--bloom-transition);
	border: 1px solid rgba(26, 75, 82, .08);
}

.player-card:hover { transform: translateY(-15px) scale(1.02); }

.yt-lite { position: relative; aspect-ratio: 16 / 9; width: 100%; display: block; }
.yt-lite img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--bloom-transition); opacity: .9; }
.player-card:hover img { transform: scale(1.1); opacity: .7; }

.play-ring {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 90px; height: 90px;
	background: var(--bloom-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 4;
}

.play-ring::after { content: ''; border-style: solid; border-width: 14px 0 14px 24px; border-color: transparent transparent transparent #fff; margin-left: 6px; }

.carousel-section { width: 100%; background: var(--bloom-mint); padding: 20px 0 80px; }
.spotlight-track { display: flex; gap: 24px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding: 20px 24px 40px; scroll-snap-type: x mandatory; }
.spotlight-track::-webkit-scrollbar { display: none; }
.spotlight-card { flex: 0 0 350px; height: 500px; background: var(--white); border-radius: 40px; overflow: hidden; scroll-snap-align: center; box-shadow: 0 15px 35px rgba(26, 75, 82, .05); }
.spotlight-card img { width: 100%; height: 100%; object-fit: contain; padding: 15px; }

.controls { max-width: var(--bloom-standard-width); margin: 0 auto; display: flex; justify-content: center; gap: 20px; }
.controls .nav-btn { width: 60px; height: 60px; border-radius: 20px; border: 1px solid rgba(26, 75, 82, .1); }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-header { text-align: center; margin-bottom: 50px; padding: 40px 20px 0; }
.faq-header h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -.05em; color: var(--bloom-teal); margin-bottom: 10px; }
.faq-header p { color: var(--bloom-teal); opacity: .8; font-weight: 600; font-size: 1.15rem; }

.faq-wrapper { max-width: 800px; margin: 0 auto; padding: 0 20px 40px; }

.faq-item {
	background: #fff;
	border-radius: 24px;
	margin-bottom: 16px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, .05);
	border: 2px solid rgba(226, 232, 240, .9);
	overflow: hidden;
	transition: all .4s ease;
}

.faq-item:hover { box-shadow: 0 20px 40px -12px rgba(26, 75, 82, .15); transform: translateY(-4px); }

.faq-question {
	width: 100%;
	padding: 24px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--bloom-teal);
}

.faq-question.active { color: var(--bloom-green); }

.icon-svg { width: 24px; height: 24px; fill: none; stroke: var(--bloom-teal); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; transition: .4s; }
.faq-question.active .icon-svg { stroke: var(--bloom-green); transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: .4s; }
.answer-content { padding: 0 32px 32px 32px; line-height: 1.7; color: #4a5568; font-size: 1.1rem; font-weight: 500; }
.answer-content strong { color: var(--bloom-teal); font-weight: 700; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 991px) {
	.metabloom-hero-wrapper { gap: 30px; }
	.bloom-edu-wrapper { gap: 20px; }
}

@media (max-width: 991px) {
	.metabloom-hero-wrapper { flex-direction: column; text-align: center; gap: 40px; padding: var(--bloom-hero-padding-top-mobile, 40px) var(--bloom-side-padding); }
	.hero-content-side { flex-direction: column; align-items: center; }
	.badge-row { justify-content: center; }
	.headline-main { font-size: clamp(2.5rem, 6vw, 3.5rem); }
	.sub-headline { font-size: 1.15rem; max-width: 100%; }
	.hero-visual-side .product-img { max-width: 280px; max-height: 320px; }
	.bloomlab-player { margin: 0 var(--bloom-side-padding) 60px; border-radius: 24px; }
	.bloom-edu-wrapper { flex-direction: column; gap: 20px; }
	.bloom-edu-content { text-align: center; width: 100%; }
	.bloom-edu-content .headline { font-size: 2.2rem; }
	.solution-banner { margin: 0 auto; width: 100%; }
	.chart-container { grid-template-columns: 1fr; gap: 30px; }
	.chart-bars { height: 200px; order: -1; }
	.bloom-grid-row { flex-direction: column; gap: 20px; }
	.bloom-product-wrapper { flex-direction: column; gap: 20px; }
	.product-visual-side { order: 1; }
	.product-info-side { order: 2; text-align: center; width: 100%; }
	.bloomlab-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
	.hero-section { flex-direction: column; padding: 40px 20px; gap: 20px; border-radius: 25px; }
	.hero-content { text-align: center; order: 2; }
	.hero-image { max-width: 100%; order: 1; width: 100%; }
	.hero-image img { max-width: 280px; }
	.hero-badge { position: relative; bottom: 0; margin-top: -20px; }
	.carousel-card { width: 280px; height: 370px; border-radius: 20px; }
	.carousel-arrow { display: none; }
	.ingredients-grid { grid-template-columns: 1fr; gap: 15px; }
	.ingredients-grid .card { flex-direction: row; text-align: left; padding: 25px; gap: 20px; }
	.card-image-container { width: 75px; height: 75px; margin-bottom: 0; min-width: 75px; }
	.cluster-grid { grid-template-columns: 1fr; }
	.cta-section { padding: 60px 25px; border-radius: 40px; }
	.curve-row, .pro { flex-direction: column; text-align: center; }
	.blob { width: 100%; padding: 40px 20px !important; border-radius: 40px !important; }
	.content-wrap, .pro .content-wrap { margin: 0; }
	.emoji-icon { margin: 20px 0; font-size: 3rem; }
	.s-curve-container::before { display: none; }
	.split-section { grid-template-columns: 1fr; gap: 30px; }
	.split-section .content-left { text-align: center; }
	.visual-right { order: -1; }
	.illustration-container img { max-width: 320px; }
	.comp-item:hover { transform: none; }
	.carousel-container .carousel-track { padding: 20px 25px; gap: 20px; }
	.comp-card { flex: 0 0 85vw; padding: 35px; min-height: 480px; border-radius: 32px; }
	.nav-controls { display: none; }
	.mobile-dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
	.hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
	.spotlight-card { flex: 0 0 280px; height: 400px; border-radius: 32px; }
	.spotlight-track { padding: 10px 20px 40px; }
	.chart-title,
	.science-box h2,
	.gut-container .header h2,
	.bloomlab-header h2,
	.faq-header h2,
	.header-section h2,
	.spotlight-content h2,
	.testimonial-header h2,
	.cta-section h2,
	.product-title,
	.stats-headline { font-size: 2.2rem !important; }
}

@media (max-width: 767px) {
	.bloom-edu-outer { padding: 25px var(--bloom-side-padding); }
	.fiber-chart-wrapper { padding: 40px var(--bloom-side-padding); }
	.bloom-white-pop-section { padding: 20px 0; }
	.frustration-card { padding: 30px 20px; text-align: center; margin: 0 5px; }
	.bloom-product-outer { padding: 25px var(--bloom-side-padding); }
	.bloom-cta-rounded,
	.bloom-cta-hero { width: 100%; padding: 20px; font-size: 1.4rem; }
	.bloomlab-product-section { padding: 60px 0; }
	.bloomlab-card .tb-shopee-cta {
		max-width: 100%;
		text-align: center;
		white-space: normal;
	}
}

@media (max-width: 480px) {
	.metabloom-hero-wrapper {
		padding-inline: 16px;
	}

	.hero-content-side,
	.badge-row,
	.headline-main,
	.sub-headline {
		max-width: 100%;
		min-width: 0;
		overflow-wrap: anywhere;
		width: 100%;
	}

	.headline-main {
		font-size: clamp(2rem, 10vw, 2.25rem);
		letter-spacing: -0.03em;
	}

	.hero-badge {
		max-width: 100%;
		overflow-wrap: anywhere;
		text-align: center;
		white-space: normal;
	}

	.split-section {
		overflow: hidden;
		padding-inline: 16px;
	}

	.split-section .content-left,
	.visual-right {
		max-width: 100%;
		min-width: 0;
		padding-inline: 0;
	}

	.split-section table {
		font-size: 0.78rem !important;
		max-width: 100%;
		table-layout: fixed;
	}

	.split-section th,
	.split-section td {
		overflow-wrap: anywhere;
		padding: 10px 6px !important;
	}
}
