/* Wave Maker Craft – Flexiteek Theme
   Branding: wavemakercraft.com (Questrial + Bayon, navy/blue/mint)
   Content: FlexiTeek IT (white-label → Wave Maker Craft)
   ============================================ */

:root {
	--wmcft-navy: #0E1B4D;
	--wmcft-navy-light: #1a2d6b;
	--wmcft-blue: #4770DB;
	--wmcft-blue-hover: #3a5fc4;
	--wmcft-mint: #1FF996;
	--wmcft-light: #EFF0F5;
	--wmcft-white: #ffffff;
	--wmcft-text: #4a5568;
	--wmcft-text-muted: #8896a6;
	--wmcft-overlay: rgba(14, 27, 77, 0.65);

	--wmcft-font-body: 'Questrial', -apple-system, BlinkMacSystemFont, sans-serif;
	--wmcft-font-heading: 'Bayon', 'Questrial', sans-serif;

	--wmcft-radius: 12px;
	--wmcft-radius-lg: 20px;
	--wmcft-shadow: 0 4px 24px rgba(14, 27, 77, 0.1);
	--wmcft-shadow-lg: 0 12px 48px rgba(14, 27, 77, 0.15);
	--wmcft-transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
	font-family: var(--wmcft-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--wmcft-text);
	background: var(--wmcft-white);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--wmcft-transition); }
ul { list-style: none; }

h1, h2, h3, h4 {
	font-family: var(--wmcft-font-heading);
	color: var(--wmcft-navy);
	line-height: 1.2;
	letter-spacing: 0.02em;
}

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

.wmcft-skip-link {
	position: absolute; top: -100px; left: 16px; z-index: 9999;
	background: var(--wmcft-blue); color: var(--wmcft-white);
	padding: 8px 16px; border-radius: 4px;
}
.wmcft-skip-link:focus { top: 16px; }

.wmcft-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.text-center { text-align: center; }

/* Top bar */
.wmcft-top-bar {
	background: var(--wmcft-navy);
	color: rgba(255,255,255,0.85);
	font-size: 13px;
	text-align: center;
	padding: 8px 0;
}
.wmcft-top-bar strong { color: var(--wmcft-mint); }

/* Header */
.wmcft-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--wmcft-white);
	border-bottom: 1px solid rgba(14,27,77,0.08);
	transition: box-shadow var(--wmcft-transition);
}
.wmcft-header.is-scrolled { box-shadow: var(--wmcft-shadow); }

.wmcft-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 0;
}

.wmcft-logo img { height: 64px; width: auto; max-width: 200px; }
.wmcft-footer__brand img { height: auto; width: 200px; max-width: 100%; }

.wmcft-nav__list {
	display: flex;
	gap: 28px;
	align-items: center;
}
.wmcft-nav__list a {
	font-size: 14px;
	font-weight: 500;
	color: var(--wmcft-navy);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.wmcft-nav__list a:hover { color: var(--wmcft-blue); }

.wmcft-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wmcft-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.wmcft-menu-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--wmcft-navy);
	transition: var(--wmcft-transition);
}

/* Buttons */
.wmcft-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 50px;
	font-family: var(--wmcft-font-body);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--wmcft-transition);
}
.wmcft-btn--primary {
	background: var(--wmcft-blue);
	color: var(--wmcft-white);
	border-color: var(--wmcft-blue);
}
.wmcft-btn--primary:hover {
	background: var(--wmcft-blue-hover);
	border-color: var(--wmcft-blue-hover);
	color: var(--wmcft-white);
}
.wmcft-btn--outline {
	background: transparent;
	color: var(--wmcft-navy);
	border-color: var(--wmcft-navy);
}
.wmcft-btn--outline:hover {
	background: var(--wmcft-navy);
	color: var(--wmcft-white);
}
.wmcft-btn--light {
	color: var(--wmcft-white);
	border-color: var(--wmcft-white);
}
.wmcft-btn--light:hover {
	background: var(--wmcft-white);
	color: var(--wmcft-navy);
}
.wmcft-btn--mint {
	background: var(--wmcft-mint);
	color: var(--wmcft-navy);
	border-color: var(--wmcft-mint);
}
.wmcft-btn--mint:hover {
	background: #17e085;
	border-color: #17e085;
}
.wmcft-btn--sm { padding: 10px 20px; font-size: 12px; }

.wmcft-link-arrow {
	display: inline-block;
	margin-top: 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--wmcft-blue);
}

/* Sections */
.wmcft-section { padding: 80px 0; }
.wmcft-section--dark { background: var(--wmcft-navy); color: rgba(255,255,255,0.85); }
.wmcft-section--dark h2, .wmcft-section--dark h3 { color: var(--wmcft-white); }
.wmcft-section--light { background: var(--wmcft-light); }
.wmcft-section-cta { text-align: center; margin-top: 40px; }

.wmcft-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--wmcft-blue);
	margin-bottom: 12px;
}
.wmcft-section--dark .wmcft-eyebrow { color: var(--wmcft-mint); }

.wmcft-section-heading { margin-bottom: 48px; }
.wmcft-section-title {
	font-size: clamp(28px, 4vw, 42px);
	margin-bottom: 16px;
}
.wmcft-section-desc {
	font-size: 17px;
	max-width: 680px;
	color: var(--wmcft-text);
}
.wmcft-section--dark .wmcft-section-desc { color: rgba(255,255,255,0.75); }
.text-center .wmcft-section-desc { margin: 0 auto; }
.text-center .wmcft-section-heading { text-align: center; }

/* Hero */
.wmcft-hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.wmcft-hero__media {
	position: absolute;
	inset: 0;
}
.wmcft-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wmcft-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--wmcft-overlay) 0%, rgba(14,27,77,0.35) 100%);
}
.wmcft-hero__content {
	position: relative;
	z-index: 2;
	max-width: 720px;
	padding: 120px 0 100px;
	color: var(--wmcft-white);
}
.wmcft-hero__content .wmcft-eyebrow { color: var(--wmcft-mint); }
.wmcft-hero__title {
	font-size: clamp(36px, 6vw, 64px);
	color: var(--wmcft-white);
	margin-bottom: 20px;
}
.wmcft-hero__subtitle {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255,255,255,0.9);
	margin-bottom: 20px;
}
.wmcft-hero__h2 { font-size: 20px; font-weight: 600; }
.wmcft-hero__body {
	margin-bottom: 28px;
	max-width: 640px;
}
.wmcft-hero__body p {
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255,255,255,0.88);
	margin-bottom: 12px;
}
.wmcft-hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.wmcft-hero__wave {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	line-height: 0;
}
.wmcft-hero__wave svg { width: 100%; height: 60px; }

/* Hero carousel */
.wmcft-hero-carousel {
	position: relative;
	background: var(--wmcft-navy);
	overflow: hidden;
}
.wmcft-hero-carousel__stage {
	position: relative;
	width: 100%;
	transition: height 0.4s ease;
}
.wmcft-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	pointer-events: none;
}
.wmcft-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 2;
}
.wmcft-hero-slide__image-wrap {
	width: 100%;
	line-height: 0;
}
.wmcft-hero-slide__img {
	width: 100%;
	height: auto;
	display: block;
}
.wmcft-hero-slide__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(14, 27, 77, 0.78) 0%,
		rgba(71, 112, 219, 0.55) 42%,
		rgba(31, 249, 150, 0.38) 100%
	);
	z-index: 1;
}
.wmcft-hero-slide__content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 640px;
	padding: 48px 0 72px;
	color: var(--wmcft-white);
}
.wmcft-hero-slide__content .wmcft-eyebrow { color: var(--wmcft-mint); }
.wmcft-hero-slide__title {
	font-size: clamp(32px, 5vw, 56px);
	color: var(--wmcft-white);
	margin-bottom: 16px;
	line-height: 1.1;
}
.wmcft-hero-slide__text {
	font-size: clamp(16px, 2vw, 18px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 28px;
	max-width: 520px;
}
.wmcft-hero-slide__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.wmcft-hero-carousel__dots {
	position: absolute;
	bottom: 88px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
	display: flex;
	gap: 10px;
}
.wmcft-hero-carousel__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.6);
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: all var(--wmcft-transition);
}
.wmcft-hero-carousel__dot.is-active,
.wmcft-hero-carousel__dot:hover {
	background: var(--wmcft-mint);
	border-color: var(--wmcft-mint);
}
.wmcft-hero-carousel__wave {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	line-height: 0;
	pointer-events: none;
}
.wmcft-hero-carousel__wave svg { width: 100%; height: 60px; }

/* Page hero */
.wmcft-page-hero {
	background: var(--wmcft-light);
	padding: 80px 0 60px;
	text-align: center;
}
.wmcft-page-hero h1 {
	font-size: clamp(32px, 5vw, 52px);
	margin-bottom: 16px;
}
.wmcft-page-hero p {
	max-width: 640px;
	margin: 0 auto;
	font-size: 17px;
}
.wmcft-page-hero--legal p {
	max-width: 760px;
}
.wmcft-legal__updated {
	margin-top: 16px !important;
	font-size: 14px !important;
	color: rgba(14,27,77,0.65);
}

/* Legal pages */
.wmcft-legal {
	max-width: 760px;
	margin: 0 auto;
}
.wmcft-legal__section {
	margin-bottom: 36px;
}
.wmcft-legal__section:last-child {
	margin-bottom: 0;
}
.wmcft-legal h2 {
	font-size: 22px;
	margin-bottom: 14px;
	color: var(--wmcft-navy);
}
.wmcft-legal p {
	margin-bottom: 14px;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(14,27,77,0.88);
}
.wmcft-legal p:last-child {
	margin-bottom: 0;
}
.wmcft-legal__list {
	margin: 0 0 14px 1.25rem;
	padding: 0;
}
.wmcft-legal__list li {
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(14,27,77,0.88);
}
.wmcft-legal__list li:last-child {
	margin-bottom: 0;
}

/* Audience cards */
.wmcft-audience__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.wmcft-audience__card {
	background: var(--wmcft-white);
	border: 1px solid rgba(14,27,77,0.08);
	border-radius: var(--wmcft-radius-lg);
	padding: 36px 28px;
	transition: all var(--wmcft-transition);
}
.wmcft-audience__card:hover {
	border-color: var(--wmcft-blue);
	box-shadow: var(--wmcft-shadow-lg);
	transform: translateY(-4px);
}
.wmcft-audience__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--wmcft-light);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wmcft-audience__icon--boat::after { content: '⛵'; font-size: 24px; }
.wmcft-audience__icon--builder::after { content: '🏭'; font-size: 24px; }
.wmcft-audience__icon--trade::after { content: '🔧'; font-size: 24px; }
.wmcft-audience__card h3 { font-size: 22px; margin-bottom: 12px; }
.wmcft-audience__card p { font-size: 15px; color: var(--wmcft-text-muted); }

/* Partners */
.wmcft-partners__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
	opacity: 0.7;
}
.wmcft-partners__logo img {
	height: 48px;
	width: auto;
	filter: grayscale(100%);
	transition: filter var(--wmcft-transition);
}
.wmcft-partners__logo:hover img { filter: grayscale(0%); }

/* Innovation */
.wmcft-innovation__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}
.wmcft-feature-pill {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--wmcft-radius);
	padding: 16px 20px;
	margin-bottom: 12px;
}
.wmcft-feature-pill strong {
	display: block;
	color: var(--wmcft-mint);
	font-size: 14px;
	margin-bottom: 4px;
}
.wmcft-feature-pill span { font-size: 14px; color: rgba(255,255,255,0.7); }

/* Split layout */
.wmcft-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.wmcft-split--reverse .wmcft-split__media { order: 2; }
.wmcft-split--reverse .wmcft-split__text { order: 1; }
.wmcft-split__media img {
	border-radius: var(--wmcft-radius-lg);
	box-shadow: var(--wmcft-shadow-lg);
}

/* Support cards */
.wmcft-support__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.wmcft-support__card {
	background: var(--wmcft-light);
	border-radius: var(--wmcft-radius-lg);
	padding: 36px 28px;
	text-align: center;
}
.wmcft-support__card h3 { font-size: 20px; margin-bottom: 12px; }

/* Why choose */
.wmcft-why-choose__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.wmcft-why-choose__card {
	border-radius: var(--wmcft-radius-lg);
	overflow: hidden;
	background: var(--wmcft-white);
	box-shadow: var(--wmcft-shadow);
	transition: transform var(--wmcft-transition);
}
.wmcft-why-choose__card:hover { transform: translateY(-4px); }
.wmcft-why-choose__image { aspect-ratio: 16/9; overflow: hidden; }
.wmcft-why-choose__image img { width: 100%; height: 100%; object-fit: cover; }
.wmcft-why-choose__body { padding: 24px; }
.wmcft-why-choose__body h3 { font-size: 20px; margin-bottom: 8px; }

/* Testimonials */
.wmcft-testimonials__slider { position: relative; max-width: 800px; margin: 0 auto; }
.wmcft-testimonial {
	display: none;
	text-align: center;
}
.wmcft-testimonial.is-active { display: block; }
.wmcft-testimonial p {
	font-size: 20px;
	font-style: italic;
	line-height: 1.6;
	margin-bottom: 24px;
	color: rgba(255,255,255,0.9);
}
.wmcft-testimonial footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.wmcft-testimonial footer img { height: 40px; width: auto; }
.wmcft-testimonial cite { font-style: normal; font-weight: 600; color: var(--wmcft-mint); }
.wmcft-testimonials__nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 32px;
}
.wmcft-slider-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.3);
	background: transparent;
	color: var(--wmcft-white);
	font-size: 18px;
	cursor: pointer;
	transition: var(--wmcft-transition);
}
.wmcft-slider-btn:hover { border-color: var(--wmcft-mint); color: var(--wmcft-mint); }

.wmcft-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.wmcft-testimonial-card {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--wmcft-radius-lg);
	padding: 28px;
}
.wmcft-testimonial-card p { font-size: 15px; margin-bottom: 20px; color: rgba(255,255,255,0.85); }
.wmcft-testimonial-card footer img { height: 36px; width: auto; }

/* Gallery preview */
.wmcft-gallery-preview__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.wmcft-gallery-preview__item {
	border-radius: var(--wmcft-radius);
	overflow: hidden;
	position: relative;
}
.wmcft-gallery-preview__item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.wmcft-gallery-preview__item figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 12px;
	background: linear-gradient(transparent, rgba(14,27,77,0.8));
	color: var(--wmcft-white);
	font-size: 13px;
}

/* Benefits grid */
.wmcft-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.wmcft-benefit-card {
	background: var(--wmcft-white);
	border-radius: var(--wmcft-radius);
	padding: 28px;
	box-shadow: var(--wmcft-shadow);
}
.wmcft-benefit-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--wmcft-blue); }

/* Color catalog */
.wmcft-color-filters, .wmcft-gallery-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 40px;
	justify-content: center;
}
.wmcft-filter-btn {
	padding: 10px 20px;
	border-radius: 50px;
	border: 2px solid rgba(14,27,77,0.15);
	background: var(--wmcft-white);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: var(--wmcft-transition);
	color: var(--wmcft-navy);
}
.wmcft-filter-btn.is-active,
.wmcft-filter-btn:hover {
	background: var(--wmcft-navy);
	color: var(--wmcft-white);
	border-color: var(--wmcft-navy);
}

.wmcft-color-family { margin-bottom: 60px; }
.wmcft-color-family.is-hidden { display: none; }
.wmcft-color-family__title { font-size: 28px; margin-bottom: 4px; }
.wmcft-color-family__count { color: var(--wmcft-text-muted); margin-bottom: 24px; font-size: 14px; }

.wmcft-color-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}
.wmcft-color-card {
	border-radius: var(--wmcft-radius-lg);
	overflow: hidden;
	background: var(--wmcft-white);
	box-shadow: var(--wmcft-shadow);
}
.wmcft-color-card__image img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.wmcft-color-card__body { padding: 20px; }
.wmcft-color-card__body h3 { font-size: 20px; margin-bottom: 4px; }
.wmcft-color-card__caulk { font-size: 13px; color: var(--wmcft-blue); font-weight: 600; margin-bottom: 8px; }

/* Gallery page */
.wmcft-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.wmcft-gallery__item {
	border-radius: var(--wmcft-radius);
	overflow: hidden;
	position: relative;
	transition: opacity var(--wmcft-transition);
}
.wmcft-gallery__item.is-hidden { display: none; }
.wmcft-gallery__item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.wmcft-gallery__item figcaption {
	padding: 12px 16px;
	background: var(--wmcft-light);
	font-size: 14px;
	font-weight: 600;
	color: var(--wmcft-navy);
}

/* Design page */
.wmcft-design-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}
.wmcft-design-swatch {
	padding: 16px 28px;
	background: var(--wmcft-white);
	border-radius: var(--wmcft-radius);
	box-shadow: var(--wmcft-shadow);
	font-weight: 600;
	color: var(--wmcft-navy);
}
.wmcft-caulking-options {
	display: flex;
	justify-content: center;
	gap: 32px;
	margin-bottom: 24px;
}
.wmcft-caulking-option { text-align: center; }
.wmcft-caulking-swatch {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	margin: 0 auto 8px;
	border: 2px solid rgba(14,27,77,0.15);
}
.wmcft-caulking-swatch--black { background: #1a1a1a; }
.wmcft-caulking-swatch--white { background: #f5f5f5; }
.wmcft-caulking-swatch--grey { background: #888; }

/* Rex banners */
.wmcft-rex-banner {
	padding: 0;
	background: var(--wmcft-light);
}
.wmcft-rex-banner__img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--wmcft-radius-lg);
	box-shadow: var(--wmcft-shadow);
}
.wmcft-rex-banner .wmcft-container {
	padding-top: 24px;
	padding-bottom: 24px;
}

/* Authorized dealer */
.wmcft-dealer__content p {
	margin-bottom: 16px;
	max-width: 820px;
}
.wmcft-bullet-list {
	margin: 20px 0 28px;
	padding-left: 0;
}
.wmcft-bullet-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 10px;
	font-size: 15px;
	color: var(--wmcft-text);
}
.wmcft-bullet-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--wmcft-blue);
}

/* Applications */
.wmcft-applications__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.wmcft-application-card {
	background: var(--wmcft-white);
	border-radius: var(--wmcft-radius);
	padding: 24px 20px;
	box-shadow: var(--wmcft-shadow);
	border: 1px solid rgba(14,27,77,0.06);
}
.wmcft-application-card h3 {
	font-size: 17px;
	margin-bottom: 8px;
	color: var(--wmcft-blue);
}

/* Process */
.wmcft-process__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.wmcft-process-step {
	background: var(--wmcft-white);
	border-radius: var(--wmcft-radius-lg);
	padding: 28px 24px;
	box-shadow: var(--wmcft-shadow);
}
.wmcft-process-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--wmcft-blue);
	color: var(--wmcft-white);
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 14px;
}
.wmcft-process-step h3 { font-size: 18px; margin-bottom: 8px; }

/* Problem / solution */
.wmcft-problem-solution__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	max-width: 900px;
	margin: 0 auto;
}
.wmcft-problem-solution__col h3 {
	font-size: 20px;
	margin-bottom: 16px;
	color: var(--wmcft-mint);
}
.wmcft-problem-solution__col .wmcft-bullet-list li {
	color: rgba(255,255,255,0.85);
}
.wmcft-problem-solution__col .wmcft-bullet-list li::before {
	background: var(--wmcft-mint);
}

/* FAQ */
.wmcft-faq__list {
	max-width: 820px;
	margin: 0 auto;
}
.wmcft-faq__item {
	border-bottom: 1px solid rgba(14,27,77,0.1);
}
.wmcft-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--wmcft-font-heading);
	font-size: 17px;
	color: var(--wmcft-navy);
}
.wmcft-faq__question[aria-expanded="true"] .wmcft-faq__icon {
	transform: rotate(45deg);
}
.wmcft-faq__icon {
	font-size: 24px;
	color: var(--wmcft-blue);
	transition: transform var(--wmcft-transition);
	flex-shrink: 0;
}
.wmcft-faq__answer {
	padding-bottom: 20px;
}
.wmcft-faq__answer p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--wmcft-text);
}

/* Contact */
.wmcft-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
}
.wmcft-contact__card {
	background: var(--wmcft-light);
	border-radius: var(--wmcft-radius);
	padding: 20px;
	margin-bottom: 16px;
}
.wmcft-contact__card h3 { font-size: 16px; margin-bottom: 8px; color: var(--wmcft-blue); }
.wmcft-contact__card a { color: var(--wmcft-blue); }
.wmcft-contact__card a:hover { text-decoration: underline; }

.wmcft-contact-form {
	background: var(--wmcft-light);
	border-radius: var(--wmcft-radius-lg);
	padding: 36px;
}
.wmcft-form-group { margin-bottom: 20px; }
.wmcft-form-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wmcft-navy);
	margin-bottom: 6px;
}
.wmcft-form-group input,
.wmcft-form-group select,
.wmcft-form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid rgba(14,27,77,0.12);
	border-radius: var(--wmcft-radius);
	font-family: var(--wmcft-font-body);
	font-size: 15px;
	background: var(--wmcft-white);
	transition: border-color var(--wmcft-transition);
}
.wmcft-form-group input:focus,
.wmcft-form-group select:focus,
.wmcft-form-group textarea:focus {
	outline: none;
	border-color: var(--wmcft-blue);
}
.wmcft-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.wmcft-form-status {
	margin-top: 16px;
	font-size: 14px;
	font-weight: 600;
}
.wmcft-form-status.is-success { color: #16a34a; }
.wmcft-form-status.is-error { color: #dc2626; }

/* Footer */
.wmcft-footer__cta {
	background: var(--wmcft-blue);
	color: var(--wmcft-white);
	padding: 60px 0;
	text-align: center;
}
.wmcft-footer__cta h2 {
	font-size: 32px;
	color: var(--wmcft-white);
	margin-bottom: 12px;
}
.wmcft-footer__cta p {
	max-width: 560px;
	margin: 0 auto 24px;
	opacity: 0.9;
}
.wmcft-footer__cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}
.wmcft-footer__cta .wmcft-btn--outline {
	color: var(--wmcft-white);
	border-color: var(--wmcft-white);
}
.wmcft-footer__cta .wmcft-btn--outline:hover {
	background: var(--wmcft-white);
	color: var(--wmcft-blue);
}

.wmcft-footer__main {
	background: var(--wmcft-navy);
	color: rgba(255,255,255,0.75);
	padding: 60px 0;
}
.wmcft-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}
.wmcft-footer__brand img { margin-bottom: 16px; height: 50px; width: auto; }
.wmcft-footer__brand p { font-size: 14px; margin-bottom: 16px; }
.wmcft-footer__contact a { color: var(--wmcft-mint); }
.wmcft-footer__links h3 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--wmcft-mint);
	margin-bottom: 16px;
}
.wmcft-footer__links li { margin-bottom: 8px; }
.wmcft-footer__links a { font-size: 14px; color: rgba(255,255,255,0.7); }
.wmcft-footer__links a:hover { color: var(--wmcft-white); }
.wmcft-footer__badges { display: flex; gap: 12px; }
.wmcft-footer__badges img { width: 64px; height: auto; opacity: 0.8; }

.wmcft-footer__bottom {
	background: rgba(0,0,0,0.2);
	padding: 20px 0 24px;
	text-align: center;
	font-size: 13px;
	color: rgba(255,255,255,0.5);
}
.wmcft-footer__bottom a { color: var(--wmcft-mint); }
.wmcft-footer__legal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px 12px;
	margin-bottom: 14px;
}
.wmcft-footer__legal a {
	color: rgba(255,255,255,0.75);
	font-size: 13px;
	text-decoration: none;
}
.wmcft-footer__legal a:hover {
	color: var(--wmcft-white);
}
.wmcft-footer__legal-sep {
	color: rgba(255,255,255,0.35);
}
.wmcft-footer__disclaimer {
	max-width: 760px;
	margin: 0 auto 14px;
	font-size: 12px;
	line-height: 1.6;
	color: rgba(255,255,255,0.45);
}

/* Anchor scroll offset for fixed header */
#contact,
#flexiteek-options,
#gallery,
#pricing-tiers,
#process {
	scroll-margin-top: 100px;
}

/* Colors teaser */
.wmcft-colors-teaser {
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid rgba(14,27,77,0.08);
}
.wmcft-colors-teaser__title {
	font-size: 24px;
	margin-bottom: 12px;
}
.wmcft-colors-teaser__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 24px;
}
.wmcft-colors-teaser__chip {
	text-align: center;
}
.wmcft-colors-teaser__chip img {
	width: 100%;
	height: auto;
	border-radius: var(--wmcft-radius);
	box-shadow: var(--wmcft-shadow);
}
.wmcft-colors-teaser__chip figcaption {
	margin-top: 10px;
	font-size: 14px;
	font-weight: 600;
}
.wmcft-colors-teaser__chip span {
	display: block;
	font-weight: 400;
	color: var(--wmcft-text-muted);
	font-size: 13px;
}

/* Comparison table */
.wmcft-comparison-table-wrap {
	overflow-x: auto;
	margin: 32px 0;
}
.wmcft-comparison-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--wmcft-white);
	border-radius: var(--wmcft-radius-lg);
	overflow: hidden;
	box-shadow: var(--wmcft-shadow);
}
.wmcft-comparison-table th,
.wmcft-comparison-table td {
	padding: 16px 20px;
	text-align: left;
	border-bottom: 1px solid rgba(14,27,77,0.08);
	font-size: 15px;
}
.wmcft-comparison-table thead th {
	background: var(--wmcft-navy);
	color: var(--wmcft-white);
}
.wmcft-comparison-table tbody th {
	background: var(--wmcft-light);
	font-weight: 600;
}
.wmcft-comparison-table tbody tr:last-child td,
.wmcft-comparison-table tbody tr:last-child th {
	border-bottom: none;
}
.wmcft-comparison-table td:last-child {
	font-weight: 600;
	color: var(--wmcft-navy);
}

/* Pricing tiers */
.wmcft-pricing-tiers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}
.wmcft-pricing-tier {
	background: var(--wmcft-white);
	border: 1px solid rgba(14,27,77,0.08);
	border-radius: var(--wmcft-radius-lg);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	box-shadow: var(--wmcft-shadow);
}
.wmcft-pricing-tier--select {
	border-color: var(--wmcft-blue);
	box-shadow: var(--wmcft-shadow-lg);
}
.wmcft-pricing-tier__badge {
	display: inline-block;
	align-self: flex-start;
	background: var(--wmcft-light);
	color: var(--wmcft-navy);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 6px 12px;
	border-radius: 999px;
}
.wmcft-pricing-tier--select .wmcft-pricing-tier__badge {
	background: var(--wmcft-blue);
	color: var(--wmcft-white);
}
.wmcft-pricing-tier__tagline {
	font-size: 16px;
	font-weight: 600;
	color: var(--wmcft-navy);
	margin-bottom: 12px;
}
.wmcft-pricing-tier__title {
	font-size: 22px;
	line-height: 1.2;
}
.wmcft-pricing-tier__price {
	font-size: 20px;
	color: var(--wmcft-blue);
	font-weight: 700;
}
.wmcft-pricing-tier__desc,
.wmcft-pricing-tier__block p {
	font-size: 15px;
	color: var(--wmcft-text);
	line-height: 1.6;
}
.wmcft-pricing-tier__block h4 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 8px;
	color: var(--wmcft-navy);
}
.wmcft-pricing-tier__block ul {
	padding-left: 18px;
}
.wmcft-pricing-tier__block li {
	font-size: 14px;
	margin-bottom: 6px;
	color: var(--wmcft-text);
}
.wmcft-pricing-tier .wmcft-btn { margin-top: auto; }
.wmcft-pricing-tiers__footer {
	margin-top: 40px;
	text-align: center;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}
.wmcft-pricing-tiers__footer p {
	margin-bottom: 16px;
	font-size: 16px;
	line-height: 1.65;
}

/* Pricing promo block */
.wmcft-pricing-promo__inner {
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
}
.wmcft-pricing-promo .wmcft-section-desc {
	margin-bottom: 16px;
}

/* Expanded gallery */
.wmcft-expanded-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 32px 0;
}
.wmcft-expanded-gallery__card {
	background: var(--wmcft-white);
	border-radius: var(--wmcft-radius-lg);
	overflow: hidden;
	box-shadow: var(--wmcft-shadow);
}
.wmcft-expanded-gallery__image img {
	width: 100%;
	height: auto;
	display: block;
}
.wmcft-expanded-gallery__body {
	padding: 20px;
}
.wmcft-expanded-gallery__body h3 {
	font-size: 18px;
	margin-bottom: 8px;
}
.wmcft-expanded-gallery__body p {
	font-size: 14px;
	color: var(--wmcft-text-muted);
	line-height: 1.55;
}

/* Homepage contact */
.wmcft-home-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
	align-items: start;
}
.wmcft-home-contact__info p {
	margin-bottom: 16px;
	font-size: 16px;
	line-height: 1.6;
}
.wmcft-contact-form-intro h2 {
	font-size: 28px;
	margin-bottom: 12px;
}
.wmcft-contact-form-intro p {
	margin-bottom: 24px;
	color: var(--wmcft-text-muted);
}

/* Shop cross-promo */
.wmcft-shop-promo__inner {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}
.wmcft-shop-promo .wmcft-section-desc {
	margin-bottom: 24px;
}

/* Color cards — official swatch chips */
.wmcft-color-card__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	background: var(--wmcft-light);
}

/* 404 */
.wmcft-404 h1 { font-size: 120px; color: var(--wmcft-blue); margin-bottom: 8px; }
.wmcft-404 p { font-size: 20px; margin-bottom: 32px; }

/* Responsive */
@media (max-width: 1024px) {
	.wmcft-audience__grid,
	.wmcft-support__grid,
	.wmcft-why-choose__grid,
	.wmcft-benefits__grid { grid-template-columns: repeat(2, 1fr); }
	.wmcft-gallery-preview__grid { grid-template-columns: repeat(2, 1fr); }
	.wmcft-footer__grid { grid-template-columns: 1fr 1fr; }
	.wmcft-applications__grid,
	.wmcft-process__grid { grid-template-columns: repeat(2, 1fr); }
	.wmcft-problem-solution__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.wmcft-nav { display: none; }
	.wmcft-nav.is-open {
		display: block;
		position: fixed;
		inset: 0;
		top: 60px;
		background: var(--wmcft-white);
		padding: 24px;
		z-index: 99;
	}
	.wmcft-nav.is-open .wmcft-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.wmcft-menu-toggle { display: flex; }
	.wmcft-header__actions .wmcft-btn { display: none; }

	.wmcft-audience__grid,
	.wmcft-support__grid,
	.wmcft-why-choose__grid,
	.wmcft-benefits__grid,
	.wmcft-gallery__grid,
	.wmcft-testimonials__grid,
	.wmcft-contact__grid { grid-template-columns: 1fr; }
	.wmcft-form-row { grid-template-columns: 1fr; }
	.wmcft-footer__grid { grid-template-columns: 1fr; }
	.wmcft-applications__grid,
	.wmcft-process__grid,
	.wmcft-innovation__grid,
	.wmcft-split { grid-template-columns: 1fr; }
	.wmcft-split--reverse .wmcft-split__media { order: 0; }
	.wmcft-hero-slide__content {
		padding: 32px 0 64px;
		max-width: 100%;
	}
	.wmcft-hero-carousel__dots { bottom: 72px; }

	/* Mobile hero: stack copy below image so H1/CTAs are never clipped */
	.wmcft-hero-carousel__stage {
		height: auto !important;
		min-height: 0;
	}
	.wmcft-hero-slide {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
	}
	.wmcft-hero-slide.is-active {
		position: relative;
	}
	.wmcft-hero-slide__image-wrap {
		position: relative;
	}
	.wmcft-hero-slide__overlay {
		position: absolute;
		inset: 0;
	}
	.wmcft-hero-slide__content {
		position: relative;
		inset: auto;
		justify-content: flex-start;
		padding: 100px 20px 120px;
		max-width: 100%;
		background: linear-gradient(
			135deg,
			rgba(14, 27, 77, 0.96) 0%,
			rgba(71, 112, 219, 0.88) 45%,
			rgba(31, 249, 150, 0.45) 100%
		);
	}
	.wmcft-hero-slide__title {
		font-size: clamp(28px, 8vw, 40px);
	}
	.wmcft-hero-slide__text {
		font-size: 16px;
		margin-bottom: 24px;
	}
	.wmcft-hero-slide__cta {
		flex-direction: column;
		align-items: stretch;
	}
	.wmcft-hero-slide__cta .wmcft-btn {
		width: 100%;
		justify-content: center;
	}
	.wmcft-hero-carousel__dots {
		bottom: 36px;
	}
	.wmcft-hero-carousel__wave svg {
		height: 48px;
	}
	.wmcft-colors-teaser__grid,
	.wmcft-pricing-tiers,
	.wmcft-expanded-gallery__grid,
	.wmcft-home-contact__grid { grid-template-columns: 1fr; }
}
