/* ═══════════ Cahaya Membran Group — site styles ═══════════ */

:root {
	--cm-navy: #0b2540;
	--cm-navy-dark: #071a2e;
	--cm-teal: #14a5b4;
	--cm-teal-light: #4fd1de;
	--cm-cream: #f7fafa;
	--cm-cream-2: #eaf4f5;
	--cm-ink: #16202b;
	--cm-white: #ffffff;
	--cm-shell: 1180px;
	--cm-font-heading: "Poppins", system-ui, -apple-system, sans-serif;
	--cm-font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--cm-font-body);
	color: var(--cm-ink);
	background: var(--cm-cream);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

a {
	text-decoration: none;
	color: inherit;
}

ul {
	margin: 0;
	padding: 0;
}

.cm-shell {
	max-width: var(--cm-shell);
	margin: 0 auto;
	padding: 0 20px;
}

/* ── Buttons ─────────────────────────────────────────────── */

.cm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--cm-teal);
	color: var(--cm-white);
	font-weight: 600;
	border-radius: 999px;
	padding: 14px 28px;
	font-size: 15px;
	white-space: nowrap;
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
	border: none;
	cursor: pointer;
}

.cm-btn:hover {
	background: var(--cm-teal-light);
	transform: translateY(-2px);
	box-shadow: 0 14px 28px -14px rgba(20, 165, 180, 0.6);
}

.cm-btn--sm {
	padding: 9px 18px;
	font-size: 13.5px;
}

.cm-btn--lg {
	padding: 16px 34px;
	font-size: 16px;
}

.cm-btn--ghost {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: var(--cm-white);
}

.cm-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.22);
	color: var(--cm-white);
}

.cm-btn--outline {
	background: transparent;
	border: 1.5px solid var(--cm-teal);
	color: var(--cm-teal);
}

.cm-btn--outline:hover {
	background: var(--cm-teal);
	color: var(--cm-white);
}

/* ── Nav ─────────────────────────────────────────────────── */

.cm-nav {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(7, 26, 46, 0.94);
	backdrop-filter: blur(6px);
}

.cm-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.cm-nav__logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.cm-nav__logo img {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.cm-nav__logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.cm-nav__logo-text strong {
	font-family: var(--cm-font-heading);
	color: var(--cm-white);
	font-size: 14px;
	letter-spacing: 0.02em;
}

.cm-nav__logo-text em {
	font-style: normal;
	color: var(--cm-teal-light);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.cm-nav__links {
	display: none;
	gap: 28px;
	flex: 1;
	justify-content: center;
}

.cm-nav__links a {
	color: rgba(255, 255, 255, 0.88);
	font-size: 14.5px;
	font-weight: 500;
	transition: color 0.2s ease;
}

.cm-nav__links a:hover {
	color: var(--cm-teal-light);
}

.cm-nav__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.cm-nav__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	color: var(--cm-white);
	padding: 4px;
}

.cm-nav__mobile {
	display: none;
	flex-direction: column;
	gap: 4px;
	padding: 8px 20px 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cm-nav__mobile.is-open {
	display: flex;
}

.cm-nav__mobile a {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	font-weight: 500;
	padding: 10px 4px;
}

.cm-nav__mobile .cm-btn {
	margin-top: 8px;
	justify-content: center;
}

@media (min-width: 900px) {
	.cm-nav__links {
		display: flex;
	}
	.cm-nav__toggle {
		display: none;
	}
	.cm-nav__mobile {
		display: none !important;
	}
}

/* ── Hero ────────────────────────────────────────────────── */

.cm-hero {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.cm-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 900px 500px at 50% 0%, rgba(79, 209, 222, 0.18) 0%, transparent 60%),
		linear-gradient(180deg, rgba(7, 26, 46, 0.86) 0%, rgba(7, 26, 46, 0.92) 55%, rgba(7, 26, 46, 0.97) 100%);
}

.cm-hero__divider {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	width: 100%;
	height: 48px;
	z-index: 2;
	display: block;
}

@media (min-width: 640px) {
	.cm-hero__divider {
		height: 64px;
	}
}

.cm-hero__content {
	position: relative;
	z-index: 1;
	text-align: left;
	padding-top: 130px;
	padding-bottom: 100px;
	max-width: 760px;
}

.cm-hero__title {
	font-family: var(--cm-font-heading);
	font-weight: 800;
	color: var(--cm-white);
	font-size: clamp(34px, 6vw, 62px);
	line-height: 1.1;
	margin: 20px 0 0;
	letter-spacing: -0.01em;
}

.cm-hero__title span {
	display: block;
	color: var(--cm-teal-light);
	font-size: 0.55em;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-top: 8px;
}

.cm-hero__tagline {
	max-width: 560px;
	margin: 26px 0 36px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	line-height: 1.7;
}

.cm-hero__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
}

/* ── Hero grid (text + estimator card) ──────────────────── */

.cm-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr;
	align-items: start;
}

@media (min-width: 980px) {
	.cm-hero__inner {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 48px;
	}
	.cm-hero__content {
		max-width: none;
		padding-top: 90px;
	}
}

.cm-hero__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 40px;
	max-width: 480px;
}

@media (min-width: 560px) {
	.cm-hero__stats {
		grid-template-columns: repeat(4, 1fr);
		max-width: none;
	}
}

.cm-hero__stats strong {
	display: block;
	font-family: var(--cm-font-heading);
	font-size: clamp(18px, 2.4vw, 24px);
	font-weight: 800;
	color: var(--cm-teal-light);
}

.cm-hero__stats span {
	display: block;
	font-size: 11.5px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 2px;
}

/* ── Estimator card ──────────────────────────────────────── */

.cm-estimator {
	background: var(--cm-white);
	border-radius: 18px;
	border-top: 4px solid var(--cm-teal);
	box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
	padding: 30px 26px;
	width: 100%;
	max-width: 420px;
	margin: 0 0 0 auto;
}

@media (min-width: 980px) {
	.cm-estimator {
		margin-top: 10px;
	}
}

.cm-estimator h2 {
	font-family: var(--cm-font-heading);
	font-size: 20px;
	font-weight: 700;
	color: var(--cm-navy);
	text-align: center;
	margin: 0 0 20px;
}

.cm-estimator__field {
	margin-bottom: 14px;
}

.cm-estimator__field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--cm-navy);
	margin-bottom: 6px;
}

.cm-estimator__field input,
.cm-estimator__field select,
.cm-estimator__field textarea {
	width: 100%;
	border: 1px solid rgba(11, 37, 64, 0.16);
	border-radius: 10px;
	padding: 11px 13px;
	font-family: var(--cm-font-body);
	font-size: 14px;
	color: var(--cm-ink);
	background: var(--cm-cream);
}

.cm-estimator__field textarea {
	resize: vertical;
	min-height: 70px;
}

.cm-estimator__field input:focus,
.cm-estimator__field select:focus,
.cm-estimator__field textarea:focus {
	outline: 2px solid var(--cm-teal);
	outline-offset: 1px;
}

.cm-estimator .cm-btn {
	width: 100%;
	margin-top: 4px;
}

/* ── Eyebrow / ornament ──────────────────────────────────── */

.cm-eyebrow {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.12);
	color: var(--cm-teal-light);
	border: 1px solid rgba(79, 209, 222, 0.4);
	border-radius: 999px;
	padding: 7px 18px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.cm-eyebrow svg {
	width: 13px;
	height: 13px;
	margin-right: 7px;
	flex-shrink: 0;
}

.cm-eyebrow--dark {
	background: rgba(11, 37, 64, 0.08);
	color: var(--cm-navy);
	border-color: rgba(11, 37, 64, 0.22);
}

.cm-ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 0 16px;
	color: var(--cm-teal);
}

.cm-ornament--light {
	color: var(--cm-teal-light);
}

.cm-ornament__line {
	width: 34px;
	height: 1px;
	background: currentColor;
	opacity: 0.4;
}

/* ── Marquee ─────────────────────────────────────────────── */

.cm-marquee {
	background: var(--cm-navy-dark);
	overflow: hidden;
	padding: 15px 0;
}

.cm-marquee__track {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	white-space: nowrap;
	animation: cm-marquee-scroll 100s linear infinite;
	will-change: transform;
	color: var(--cm-teal-light);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.cm-marquee__dot {
	display: inline-flex;
	color: rgba(255, 255, 255, 0.3);
}

@keyframes cm-marquee-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.cm-marquee__track {
		animation: none;
		flex-wrap: wrap;
	}
}

/* ── Scroll reveal ───────────────────────────────────────── */

[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ── Sections ────────────────────────────────────────────── */

.cm-section {
	padding: 84px 0;
}

.cm-section--muted {
	background-color: var(--cm-cream-2);
	background-image: radial-gradient(rgba(11, 37, 64, 0.07) 1px, transparent 1px);
	background-size: 22px 22px;
}

.cm-section--dark {
	background-color: var(--cm-navy-dark);
	background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 24px 24px;
	color: var(--cm-white);
}

.cm-section__head {
	text-align: center;
	max-width: 660px;
	margin: 0 auto 48px;
}

.cm-section__head--left {
	text-align: left;
	margin: 0 0 36px;
}

.cm-section__head--left .cm-ornament {
	justify-content: flex-start;
}

.cm-h2 {
	font-family: var(--cm-font-heading);
	font-size: clamp(26px, 3.6vw, 38px);
	font-weight: 700;
	margin: 0 0 14px;
	color: var(--cm-navy);
}

.cm-h2--light {
	color: var(--cm-white);
}

.cm-section__lead {
	font-size: 15.5px;
	color: rgba(22, 32, 43, 0.72);
	margin: 0;
}

.cm-section__lead--light {
	color: rgba(255, 255, 255, 0.82);
}

.cm-section__cta {
	text-align: center;
	margin-top: 40px;
}

/* ── Label block (big bold label + accent bar, ECC-style) ── */

.cm-label-block {
	display: grid;
	gap: 22px;
	grid-template-columns: 1fr;
	align-items: start;
	margin-bottom: 44px;
	padding-bottom: 36px;
	border-bottom: 1px solid rgba(11, 37, 64, 0.12);
}

.cm-label-block--light {
	border-bottom-color: rgba(255, 255, 255, 0.14);
}

.cm-label-block--tight {
	margin-bottom: 0;
}

@media (min-width: 780px) {
	.cm-label-block {
		grid-template-columns: 0.85fr 1.15fr;
		gap: 40px;
	}
}

.cm-label-block__label {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.cm-label-block__bar {
	width: 4px;
	flex-shrink: 0;
	background: var(--cm-teal);
	border-radius: 2px;
	align-self: stretch;
	min-height: 40px;
}

.cm-label-block__label h2 {
	font-family: var(--cm-font-heading);
	font-weight: 800;
	font-size: clamp(30px, 4.2vw, 48px);
	line-height: 1;
	margin: 0;
	color: var(--cm-navy);
	letter-spacing: -0.01em;
}

.cm-label-block--light .cm-label-block__label h2 {
	color: var(--cm-white);
}

.cm-label-block__content h3 {
	font-family: var(--cm-font-heading);
	font-size: clamp(19px, 2.4vw, 26px);
	font-weight: 700;
	margin: 0 0 14px;
	color: var(--cm-navy);
}

.cm-label-block--light .cm-label-block__content h3 {
	color: var(--cm-white);
}

.cm-label-block__content p {
	font-size: 15.5px;
	color: rgba(22, 32, 43, 0.75);
	margin: 0 0 14px;
}

.cm-label-block__content p:last-child {
	margin-bottom: 0;
}

.cm-label-block--light .cm-label-block__content p {
	color: rgba(255, 255, 255, 0.8);
}

/* ── Kicker (compact bar + word, single-column contexts) ─── */

.cm-kicker {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.cm-kicker__bar {
	width: 4px;
	height: 26px;
	background: var(--cm-teal);
	border-radius: 2px;
	flex-shrink: 0;
}

.cm-kicker__word {
	font-family: var(--cm-font-heading);
	font-weight: 800;
	font-size: 26px;
	color: var(--cm-navy);
	letter-spacing: -0.01em;
}

.cm-kicker--light .cm-kicker__word {
	color: var(--cm-white);
}

/* ── Full-bleed photo break ──────────────────────────────── */

.cm-section__photo {
	margin-top: 52px;
}

.cm-section__photo img {
	width: 100%;
	max-height: 460px;
	object-fit: cover;
	display: block;
}

/* ── Category quick-nav strip (Portfolio) ────────────────── */

.cm-cat-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-bottom: 40px;
}

.cm-cat-strip__item {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: var(--cm-navy);
	color: var(--cm-white);
	padding: 11px 18px;
	border-radius: 10px;
	font-size: 13.5px;
	font-weight: 600;
	transition: background 0.2s ease, transform 0.2s ease;
}

.cm-cat-strip__item:hover {
	background: var(--cm-teal);
	transform: translateY(-2px);
}

.cm-cat-strip__icon {
	display: flex;
	color: var(--cm-teal-light);
}

.cm-cat-strip__item:hover .cm-cat-strip__icon {
	color: var(--cm-white);
}

.cm-cat-strip__icon svg {
	width: 16px;
	height: 16px;
}

/* ── About grid (Home + About page) ─────────────────────── */

.cm-about-grid {
	display: grid;
	gap: 48px;
	align-items: center;
	grid-template-columns: 1fr;
}

@media (min-width: 860px) {
	.cm-about-grid {
		grid-template-columns: 0.85fr 1.15fr;
	}
}

.cm-about-grid__media img {
	width: 100%;
	height: 100%;
	max-height: 460px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 30px 60px -30px rgba(7, 26, 46, 0.45);
}

.cm-about-grid__text p {
	color: rgba(22, 32, 43, 0.78);
	font-size: 15.5px;
	margin: 0 0 16px;
}

.cm-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--cm-teal);
	font-weight: 600;
	font-size: 14.5px;
	margin-top: 6px;
	transition: gap 0.2s ease;
}

.cm-link-arrow:hover {
	gap: 12px;
}

/* ── Info cards (Kenapa Kami) ────────────────────────────── */

.cm-info-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.cm-info-card {
	position: relative;
	overflow: hidden;
	background: var(--cm-white);
	border: 1px solid rgba(11, 37, 64, 0.1);
	border-radius: 18px;
	padding: 30px 26px;
	text-align: center;
	box-shadow: 0 10px 30px -18px rgba(7, 26, 46, 0.3);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cm-info-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px -16px rgba(7, 26, 46, 0.26);
}

.cm-info-card__num {
	position: absolute;
	top: -8px;
	right: 14px;
	font-family: var(--cm-font-heading);
	font-size: 56px;
	font-weight: 700;
	color: rgba(11, 37, 64, 0.06);
	line-height: 1;
	user-select: none;
}

.cm-info-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--cm-cream-2);
	color: var(--cm-teal);
	margin-bottom: 18px;
}

.cm-info-card h3 {
	font-family: var(--cm-font-heading);
	font-size: 17px;
	margin: 0 0 10px;
	color: var(--cm-navy);
}

.cm-info-card p {
	font-size: 14px;
	color: rgba(22, 32, 43, 0.72);
	margin: 0;
}

/* ── Project cards (Home preview + Portfolio) ───────────── */

.cm-project-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cm-project-card {
	position: relative;
	background: var(--cm-white);
	border: 1px solid rgba(11, 37, 64, 0.1);
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cm-project-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 36px -20px rgba(7, 26, 46, 0.3);
	border-color: rgba(20, 165, 180, 0.35);
}

.cm-project-card__photo {
	aspect-ratio: 900 / 353;
	overflow: hidden;
	background: var(--cm-cream-2);
}

.cm-project-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.cm-project-card:hover .cm-project-card__photo img {
	transform: scale(1.06);
}

.cm-project-card__body {
	padding: 22px 24px 26px;
}

.cm-project-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--cm-cream-2);
	color: var(--cm-teal);
	margin-bottom: 16px;
}

.cm-project-card__cat {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cm-teal);
	margin-bottom: 8px;
}

.cm-project-card h3 {
	font-family: var(--cm-font-heading);
	font-size: 16.5px;
	margin: 0 0 8px;
	color: var(--cm-navy);
}

.cm-project-card p {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13.5px;
	color: rgba(22, 32, 43, 0.65);
	margin: 0;
}

.cm-project-card p svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	color: var(--cm-teal);
}

/* ── Services scroller (Home preview + Layanan page) ─────── */

.cm-services-scroll {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding-bottom: 10px;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
}

.cm-services-scroll::-webkit-scrollbar {
	height: 6px;
}

.cm-services-scroll::-webkit-scrollbar-thumb {
	background: rgba(11, 37, 64, 0.2);
	border-radius: 999px;
}

.cm-services-scroll .cm-service-card {
	scroll-snap-align: start;
	flex: 0 0 270px;
}

.cm-services-hint {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	color: rgba(22, 32, 43, 0.55);
	margin: -10px 0 18px;
}

.cm-service-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cm-service-card {
	background: var(--cm-white);
	border: 1px solid rgba(11, 37, 64, 0.1);
	border-radius: 16px;
	padding: 26px 24px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cm-service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 36px -20px rgba(7, 26, 46, 0.3);
}

.cm-service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--cm-cream-2);
	color: var(--cm-teal);
	margin-bottom: 18px;
}

.cm-service-card h3 {
	font-family: var(--cm-font-heading);
	font-size: 17px;
	margin: 0 0 10px;
	color: var(--cm-navy);
}

.cm-service-card p {
	font-size: 13.5px;
	color: rgba(22, 32, 43, 0.7);
	margin: 0 0 16px;
}

.cm-service-card .cm-link-arrow {
	font-size: 13.5px;
	margin-top: 0;
}

/* ── Process steps ───────────────────────────────────────── */

.cm-process-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.cm-process-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1020px) {
	.cm-process-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.cm-process-step {
	position: relative;
	background: var(--cm-white);
	border: 1px solid rgba(11, 37, 64, 0.1);
	border-radius: 16px;
	padding: 28px 24px;
}

.cm-process-step__num {
	position: absolute;
	top: 20px;
	right: 22px;
	font-family: var(--cm-font-heading);
	font-size: 34px;
	font-weight: 800;
	color: rgba(11, 37, 64, 0.08);
	line-height: 1;
}

.cm-process-step__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--cm-cream-2);
	color: var(--cm-teal);
	margin-bottom: 16px;
}

.cm-process-step h3 {
	font-family: var(--cm-font-heading);
	font-size: 16.5px;
	margin: 0 0 8px;
	color: var(--cm-navy);
}

.cm-process-step p {
	font-size: 13.5px;
	color: rgba(22, 32, 43, 0.7);
	margin: 0;
}

/* ── Before / after documentation split ──────────────────── */

.cm-doc-split {
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 780px) {
	.cm-doc-split {
		grid-template-columns: 1fr 1fr;
	}
}

.cm-doc-split__item {
	position: relative;
	min-height: 360px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
}

.cm-doc-split__item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 26, 46, 0) 40%, rgba(7, 26, 46, 0.85) 100%);
}

.cm-doc-split__text {
	position: relative;
	z-index: 1;
	padding: 32px;
	color: var(--cm-white);
}

.cm-doc-split__text span {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cm-teal-light);
	margin-bottom: 8px;
}

.cm-doc-split__text h3 {
	font-family: var(--cm-font-heading);
	font-size: 21px;
	margin: 0 0 8px;
}

.cm-doc-split__text p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	max-width: 420px;
}

/* ── FAQ accordion ───────────────────────────────────────── */

.cm-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 820px;
}

.cm-faq-item {
	background: var(--cm-white);
	border: 1px solid rgba(11, 37, 64, 0.12);
	border-radius: 14px;
	overflow: hidden;
}

.cm-faq-item__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 18px 20px;
	font-family: var(--cm-font-body);
	font-size: 15px;
	font-weight: 600;
	color: var(--cm-navy);
	cursor: pointer;
}

.cm-faq-item__trigger svg {
	flex-shrink: 0;
	color: var(--cm-teal);
	transition: transform 0.25s ease;
}

.cm-faq-item.is-open .cm-faq-item__trigger svg {
	transform: rotate(180deg);
}

.cm-faq-item__answer {
	display: none;
	padding: 0 20px 20px;
	font-size: 14.5px;
	color: rgba(22, 32, 43, 0.75);
	line-height: 1.7;
}

.cm-faq-item.is-open .cm-faq-item__answer {
	display: block;
}

/* ── Material brand callout ──────────────────────────────── */

.cm-brand-callout {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 18px;
	background: var(--cm-white);
	border: 1px solid rgba(11, 37, 64, 0.1);
	border-radius: 16px;
	padding: 28px 32px;
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
}

.cm-brand-callout strong {
	font-family: var(--cm-font-heading);
	font-size: 22px;
	color: var(--cm-navy);
	letter-spacing: 0.02em;
}

.cm-brand-callout p {
	margin: 0;
	font-size: 14px;
	color: rgba(22, 32, 43, 0.7);
}

/* ── Floating WhatsApp button ─────────────────────────────── */

.cm-float-wa {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: var(--cm-white);
	box-shadow: 0 12px 26px -8px rgba(37, 211, 102, 0.6);
	transition: transform 0.2s ease;
}

.cm-float-wa:hover {
	transform: scale(1.08);
	color: var(--cm-white);
}

/* ── Filter tabs (Portfolio / Galeri) ─────────────────────── */

.cm-filter-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cm-filter-tabs button {
	background: var(--cm-white);
	border: 1px solid rgba(11, 37, 64, 0.15);
	color: var(--cm-navy);
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cm-filter-tabs button.is-active,
.cm-filter-tabs button:hover {
	background: var(--cm-teal);
	border-color: var(--cm-teal);
	color: var(--cm-white);
}

/* ── Gallery grid (Galeri page) ───────────────────────────── */

.cm-gallery-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cm-gallery-item {
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	aspect-ratio: 4 / 3;
}

.cm-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.cm-gallery-item:hover img {
	transform: scale(1.06);
}

.cm-gallery-item__caption {
	position: absolute;
	inset: auto 0 0 0;
	background: linear-gradient(180deg, rgba(7, 26, 46, 0) 0%, rgba(7, 26, 46, 0.85) 100%);
	color: var(--cm-white);
	padding: 34px 16px 14px;
	font-size: 13px;
	font-weight: 600;
}

/* ── Facts strip (About page) ────────────────────────────── */

.cm-facts {
	background: var(--cm-navy);
	padding: 30px 0;
}

.cm-facts__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, 1fr);
	text-align: center;
}

@media (min-width: 720px) {
	.cm-facts__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.cm-facts__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cm-facts__item strong {
	font-family: var(--cm-font-heading);
	color: var(--cm-teal-light);
	font-size: clamp(20px, 3vw, 28px);
	font-weight: 700;
}

.cm-facts__item span {
	color: rgba(255, 255, 255, 0.7);
	font-size: 12.5px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* ── Vision / Mission (About page) ──────────────────────── */

.cm-vm-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

@media (min-width: 780px) {
	.cm-vm-grid {
		grid-template-columns: 1fr 1.3fr;
	}
}

.cm-vm-card {
	background: var(--cm-white);
	border: 1px solid rgba(11, 37, 64, 0.1);
	border-radius: 18px;
	padding: 32px;
	box-shadow: 0 10px 30px -20px rgba(7, 26, 46, 0.25);
}

.cm-vm-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--cm-cream-2);
	color: var(--cm-teal);
	margin-bottom: 16px;
}

.cm-vm-card h3 {
	font-family: var(--cm-font-heading);
	font-size: 19px;
	margin: 0 0 12px;
	color: var(--cm-navy);
}

.cm-vm-card p {
	font-size: 14.5px;
	color: rgba(22, 32, 43, 0.75);
	margin: 0;
}

.cm-vm-card ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cm-vm-card li {
	position: relative;
	padding-left: 22px;
	font-size: 14.5px;
	color: rgba(22, 32, 43, 0.78);
}

.cm-vm-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--cm-teal);
	transform: rotate(45deg);
}

/* ── Page header banner (sub-pages) ──────────────────────── */

.cm-page-header {
	position: relative;
	min-height: 300px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.cm-page-header__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 26, 46, 0.88) 0%, rgba(7, 26, 46, 0.94) 100%);
}

.cm-page-header__content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 70px 0 50px;
}

.cm-page-header__content h1 {
	font-family: var(--cm-font-heading);
	color: var(--cm-white);
	font-size: clamp(28px, 4.5vw, 44px);
	font-weight: 800;
	margin: 0 0 12px;
}

.cm-page-header__content p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 15.5px;
	margin: 0;
}

/* ── Contact (Home bottom section) ──────────────────────── */

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

@media (min-width: 720px) {
	.cm-contact-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.cm-contact-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(79, 209, 222, 0.3);
	border-radius: 16px;
	padding: 26px 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	transition: transform 0.2s ease, background 0.2s ease;
}

.cm-contact-card:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-3px);
}

.cm-contact-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--cm-teal-light);
	margin-bottom: 4px;
}

.cm-contact-card__label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.65);
}

.cm-contact-card__value {
	font-size: 15px;
	font-weight: 600;
	color: var(--cm-white);
}

/* ── Contact page split (info list + map) ───────────────── */

.cm-contact-split {
	display: grid;
	gap: 44px;
	grid-template-columns: 1fr;
	align-items: start;
}

@media (min-width: 900px) {
	.cm-contact-split {
		grid-template-columns: 1fr 1fr;
	}
}

.cm-contact-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 26px 0 30px;
}

.cm-contact-list__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: var(--cm-white);
	border: 1px solid rgba(11, 37, 64, 0.1);
	border-radius: 14px;
	padding: 16px 18px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.cm-contact-list__item:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px -20px rgba(7, 26, 46, 0.3);
}

.cm-contact-list__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--cm-cream-2);
	color: var(--cm-teal);
	flex-shrink: 0;
}

.cm-contact-list__item strong {
	display: block;
	font-size: 13.5px;
	color: var(--cm-navy);
	margin-bottom: 2px;
}

.cm-contact-list__item > span > span {
	font-size: 14px;
	color: rgba(22, 32, 43, 0.72);
}

.cm-contact-split__map {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 20px 40px -24px rgba(7, 26, 46, 0.35);
	min-height: 340px;
}

.cm-contact-split__map iframe {
	width: 100%;
	height: 100%;
	min-height: 340px;
	border: 0;
	display: block;
}

/* ── CTA band ────────────────────────────────────────────── */

.cm-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 26px;
}

@media (min-width: 720px) {
	.cm-cta {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

.cm-cta h2 {
	margin: 0 0 8px;
}

.cm-cta p {
	margin: 0;
}

/* ── Footer ──────────────────────────────────────────────── */

.cm-footer {
	background: var(--cm-navy-dark);
	border-top: 1px solid rgba(79, 209, 222, 0.2);
	padding: 40px 0 24px;
}

.cm-footer__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 26px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: 20px;
}

.cm-footer__brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cm-footer__brand img {
	width: 34px;
	height: 34px;
}

.cm-footer__brand strong {
	display: block;
	font-family: var(--cm-font-heading);
	color: var(--cm-white);
	font-size: 14.5px;
}

.cm-footer__brand span {
	display: block;
	color: rgba(255, 255, 255, 0.6);
	font-size: 12.5px;
}

.cm-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.cm-footer__links a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 13.5px;
	font-weight: 500;
}

.cm-footer__links a:hover {
	color: var(--cm-teal-light);
}

.cm-footer__copy {
	margin: 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 12.5px;
}
