/* =========================================================================
   Follower ON — main stylesheet
   Visual language carried over from the 2019 design: Instagram gradient
   bands with a curved edge, squiggle dividers, gradient icon circles,
   Poppins titles / Work Sans body, soft purple card shadows.
   ========================================================================= */

:root {
	--fo-yellow: #FEDA75;
	--fo-orange: #FA7E1E;
	--fo-pink: #D62976;
	--fo-purple: #962FBF;
	--fo-blue: #4F5BD5;
	--fo-grad: linear-gradient(140deg, #FEDA75 -20%, #FA7E1E 10%, #D62976 40%, #962FBF 72%, #4F5BD5 105%);
	--fo-grad-warm: linear-gradient(135deg, #f6744e, #d93e79);
	--fo-grad-cool: linear-gradient(135deg, #962FBF, #4F5BD5);
	--fo-grad-footer: linear-gradient(90deg, #e90b72, #875cc6);
	--fo-ink: #243238;
	--fo-ink-2: #5f6f78;
	--fo-ink-3: #8a98a0;
	--fo-line: #e6ebee;
	--fo-bg: #ffffff;
	--fo-bg-soft: #f7f6fb;
	--fo-accent: #d93e79;
	--fo-accent-2: #5755d7;
	--fo-hi: #FFEA74;
	--fo-shadow: 10px 10px 35px rgba(158, 114, 198, 0.15);
	--fo-shadow-sm: 0 2px 10px rgba(36, 50, 56, 0.06);
	--fo-radius: 14px;
	--fo-font-title: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--fo-font-body: 'Work Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--fo-container: 1200px;
	--fo-gutter: clamp(16px, 4vw, 32px);
	--fo-header-h: 84px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--fo-bg);
	color: var(--fo-ink);
	font-family: var(--fo-font-body);
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; }
a { color: var(--fo-accent); text-decoration: none; }
a:hover { color: var(--fo-purple); }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--fo-font-title);
	font-weight: 700;
	line-height: 1.2;
	color: var(--fo-ink);
	margin: 0 0 0.5em;
	text-wrap: balance;
}
h1 { font-size: clamp(32px, 4.5vw, 50px); }
h2 { font-size: clamp(26px, 3.4vw, 40px); }
h3 { font-size: clamp(19px, 2vw, 22px); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--fo-hi); outline-offset: 3px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.fo-skip { position: absolute; left: -999px; top: 8px; background: var(--fo-ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.fo-skip:focus { left: 8px; }

/* ---------- Layout ---------- */
.fo-container { max-width: var(--fo-container); margin-inline: auto; padding-inline: var(--fo-gutter); }
.fo-section { padding-block: clamp(48px, 7vw, 96px); }
.fo-section--soft { background: var(--fo-bg-soft); }
.fo-center { text-align: center; }
.fo-muted { color: var(--fo-ink-2); }
.fo-mt-l { margin-top: 40px; }
.fo-eyebrow {
	font-family: var(--fo-font-title);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fo-accent);
	margin-bottom: 14px;
}
.fo-grid { display: grid; gap: 28px; }
.fo-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.fo-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
@media (min-width: 1000px) { .fo-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.fo-grad-text { background: var(--fo-grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Header ---------- */
.fo-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--fo-bg);
	transition: box-shadow 0.2s;
}
.fo-header.is-scrolled { box-shadow: 0 6px 24px rgba(36, 50, 56, 0.08); }
.fo-header__inner { display: flex; align-items: center; gap: 24px; min-height: var(--fo-header-h); }
.fo-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.fo-logo img { width: 158px; height: auto; display: block; }
.fo-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.fo-nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.fo-nav__list li { position: relative; }
.fo-nav__list > li > a {
	display: inline-block;
	font-family: var(--fo-font-title);
	font-weight: 500;
	font-size: 15px;
	color: var(--fo-ink);
	padding: 10px 14px;
	border-radius: 999px;
	transition: color 0.15s, background-color 0.15s;
}
.fo-nav__list > li > a:hover, .fo-nav__list > li.current-menu-item > a, .fo-nav__list > li.current-menu-ancestor > a { color: var(--fo-accent); }
.fo-nav__list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 10px;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border-radius: 12px;
	box-shadow: var(--fo-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
.fo-nav__list li:hover > .sub-menu, .fo-nav__list li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.fo-nav__list .sub-menu a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--fo-ink); font-size: 15px; }
.fo-nav__list .sub-menu a:hover { background: var(--fo-bg-soft); color: var(--fo-accent); }
.fo-burger {
	display: none;
	margin-left: auto;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	border-radius: 10px;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	padding: 10px;
}
.fo-burger span { display: block; height: 2px; border-radius: 2px; background: var(--fo-ink); transition: transform 0.2s, opacity 0.2s; }
.fo-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fo-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.fo-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
	:root { --fo-header-h: 68px; }
	.fo-logo img { width: 136px; }
	.fo-burger { display: flex; }
	.fo-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		background: #fff;
		padding: 12px var(--fo-gutter) 20px;
		box-shadow: 0 20px 30px rgba(36, 50, 56, 0.12);
		display: none;
	}
	body.nav-open .fo-nav { display: flex; }
	.fo-nav__list { flex-direction: column; align-items: stretch; }
	.fo-nav__list > li > a { display: block; padding: 12px 6px; border-bottom: 1px solid var(--fo-line); border-radius: 0; }
	.fo-nav__list .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0 0 6px 14px; display: none; }
	.fo-nav__list li.is-open > .sub-menu { display: block; }
	.fo-nav__cta .fo-btn { width: 100%; text-align: center; }
}

/* ---------- Buttons ---------- */
.fo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--fo-font-title);
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	padding: 16px 30px;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.15s, box-shadow 0.15s, background-color 0.15s, color 0.15s;
	white-space: nowrap;
}
.fo-btn:hover { transform: translateY(-2px); }
.fo-btn--primary { background: var(--fo-grad); background-size: 200% 200%; color: #fff; box-shadow: 0 10px 24px rgba(214, 41, 118, 0.25); }
.fo-btn--primary:hover { color: #fff; box-shadow: 0 14px 30px rgba(214, 41, 118, 0.32); background-position: 100% 50%; }
.fo-btn--outline { background: transparent; color: var(--fo-accent); border-color: currentColor; }
.fo-btn--outline:hover { background: var(--fo-accent); color: #fff; }
.fo-btn--light, .fo-band .fo-btn--light { background: #fff; color: var(--fo-ink); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12); }
.fo-btn--light:hover, .fo-band .fo-btn--light:hover { color: var(--fo-accent); }
.fo-band .fo-btn--primary, .fo-band .fo-btn--primary:hover { color: #fff; }
.fo-btn--ghost { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.fo-btn--ghost:hover { background: rgba(255, 255, 255, 0.24); color: #fff; }
.fo-btn--sm { padding: 12px 22px; font-size: 14px; }
.fo-btn:disabled, .fo-btn.is-disabled { opacity: 0.5; pointer-events: none; }

/* ---------- Gradient bands ---------- */
.fo-band {
	position: relative;
	isolation: isolate;
	color: #fff;
	background:
		linear-gradient(178deg, rgba(255, 255, 255, 0.45) -20%, rgba(255, 255, 255, 0) 60%),
		var(--fo-grad);
	overflow: hidden;
}
.fo-band h1, .fo-band h2, .fo-band h3 { color: #fff; }
.fo-band a { color: #fff; }
.fo-band a:hover { color: var(--fo-hi); }
.fo-band > .fo-container { position: relative; z-index: 2; }
.fo-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.fo-particles canvas { display: block; width: 100%; height: 100%; }
.fo-curve {
	position: absolute;
	left: 0;
	width: 100%;
	height: clamp(30px, 5vw, 96px);
	z-index: 3;
	display: block;
}
.fo-curve--bottom { bottom: -1px; }
.fo-curve--top { top: -1px; transform: rotate(180deg); }
.fo-band--title { text-align: center; padding: clamp(40px, 6vw, 70px) 0 clamp(90px, 11vw, 170px); }
.fo-band__inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.fo-band__title { margin: 0; font-size: clamp(34px, 5vw, 56px); }
.fo-band__sub { max-width: 60ch; margin: 0; font-size: clamp(16px, 1.6vw, 19px); opacity: 0.94; }
.fo-squiggle { display: block; fill: var(--fo-accent); }
.fo-squiggle--light { fill: #fff; }

/* Breadcrumbs (ours and Yoast's) */
.fo-crumbs { font-family: var(--fo-font-title); font-weight: 500; font-size: 14px; color: rgba(255, 255, 255, 0.92); display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.fo-crumbs a { color: #fff; }
.fo-crumbs a:hover { color: var(--fo-hi); }
.fo-crumbs__sep, .fo-crumbs .breadcrumb_last::before { opacity: 0.7; }
.fo-crumbs span[aria-current], .fo-crumbs .breadcrumb_last { color: var(--fo-hi); }

/* ---------- Hero (front page) ---------- */
.fo-hero { padding: clamp(40px, 6vw, 80px) 0 clamp(110px, 13vw, 190px); }
.fo-hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 40px; align-items: center; }
.fo-hero .fo-eyebrow { color: var(--fo-hi); }
.fo-hero__title { font-size: clamp(34px, 4.6vw, 58px); line-height: 1.1; margin-bottom: 18px; }
.fo-hero__text { font-size: clamp(17px, 1.7vw, 20px); max-width: 56ch; opacity: 0.95; margin-bottom: 28px; }
.fo-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.fo-hero__visual { position: relative; display: flex; justify-content: center; }
.fo-hero__blob { position: absolute; inset: 8% 12%; border-radius: 50%; background: rgba(255, 255, 255, 0.18); filter: blur(2px); }
.fo-hero__phone { position: relative; width: min(100%, 520px); filter: drop-shadow(0 30px 40px rgba(60, 20, 90, 0.35)); transform-style: preserve-3d; }
@media (max-width: 900px) {
	.fo-hero__grid { grid-template-columns: 1fr; text-align: center; }
	.fo-hero__actions { justify-content: center; }
	.fo-hero__text { margin-inline: auto; }
	.fo-hero__phone { width: min(80%, 420px); }
}

/* ---------- Section titles + icon circles ---------- */
.fo-section-title { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: clamp(32px, 5vw, 56px); }
.fo-section-title__h { margin: 0; }
.fo-section-title__p { max-width: 62ch; color: var(--fo-ink-2); margin: 0; font-size: 18px; }
.fo-icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(214, 41, 118, 0.08);
	flex: 0 0 auto;
}
.fo-icon-circle i { font-size: 26px; line-height: 1; background: var(--fo-grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.fo-icon-circle i::before { font-size: inherit; margin: 0; }
.fo-icon-circle--lg { width: 76px; height: 76px; }
.fo-icon-circle--lg i { font-size: 36px; }
.fo-icon-circle--cool i { background: var(--fo-grad-cool); -webkit-background-clip: text; background-clip: text; }

/* ---------- Cards / tools ---------- */
.fo-tool-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: #fff;
	border: 1px solid var(--fo-line);
	border-radius: var(--fo-radius);
	padding: 28px;
	color: var(--fo-ink);
	box-shadow: var(--fo-shadow-sm);
	transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
	transform-style: preserve-3d;
}
.fo-tool-card:hover { box-shadow: var(--fo-shadow); border-color: transparent; color: var(--fo-ink); }
.fo-tool-card.is-featured { border-color: transparent; box-shadow: var(--fo-shadow); }
.fo-tool-card__title { margin: 4px 0 0; font-size: 20px; }
.fo-tool-card__text { margin: 0; color: var(--fo-ink-2); font-size: 15.5px; flex: 1; }
.fo-tool-card__meta { display: flex; flex-wrap: wrap; gap: 6px; }
.fo-tool-card__go { font-family: var(--fo-font-title); font-weight: 600; font-size: 14px; color: var(--fo-accent); }
.fo-chip {
	display: inline-block;
	font-family: var(--fo-font-title);
	font-size: 12px;
	font-weight: 500;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--fo-bg-soft);
	color: var(--fo-ink-2);
}
.fo-chip--type { background: rgba(87, 85, 215, 0.1); color: var(--fo-accent-2); }

/* ---------- Features ---------- */
.fo-feature { background: #fff; border-radius: var(--fo-radius); padding: 32px 28px; box-shadow: var(--fo-shadow-sm); }
.fo-feature h3 { margin: 18px 0 8px; }
.fo-feature p { margin: 0; color: var(--fo-ink-2); }

/* ---------- Stats ---------- */
.fo-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.fo-stat { background: #fff; border-radius: var(--fo-radius); box-shadow: var(--fo-shadow); padding: 34px 20px; text-align: center; }
.fo-stat__n {
	display: block;
	font-family: var(--fo-font-title);
	font-weight: 800;
	font-size: clamp(40px, 5vw, 56px);
	line-height: 1;
	font-variant-numeric: tabular-nums;
	background: var(--fo-grad-warm);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.fo-stat:nth-child(2) .fo-stat__n { background: var(--fo-grad-cool); -webkit-background-clip: text; background-clip: text; }
.fo-stat:nth-child(4) .fo-stat__n { background: linear-gradient(135deg, #FA7E1E, #FEDA75); -webkit-background-clip: text; background-clip: text; }
.fo-stat__l { display: block; margin-top: 10px; font-family: var(--fo-font-title); font-weight: 600; font-size: 15px; color: var(--fo-ink); }

/* ---------- Autopilot band ---------- */
.fo-band--autopilot { margin-top: clamp(20px, 4vw, 40px); padding: clamp(110px, 12vw, 170px) 0; background: linear-gradient(178deg, rgba(255, 255, 255, 0.35) -20%, rgba(255, 255, 255, 0) 60%), linear-gradient(120deg, #D62976, #962FBF 55%, #4F5BD5); }
.fo-autopilot { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.fo-autopilot .fo-eyebrow { color: var(--fo-hi); }
.fo-autopilot__title { margin: 0; font-size: clamp(28px, 3.6vw, 44px); }
.fo-autopilot__text { max-width: 58ch; font-size: 18px; margin: 0 0 14px; opacity: 0.95; }
.fo-autopilot__form { width: min(100%, 560px); }
.fo-autopilot__form form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.fo-autopilot__form input[type="email"], .fo-autopilot__form input[type="text"] { flex: 1 1 260px; padding: 14px 18px; border-radius: 999px; border: 0; font-size: 16px; }

/* ---------- Services teaser ---------- */
.fo-services__card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	background: var(--fo-bg-soft);
	border-radius: var(--fo-radius);
	padding: clamp(28px, 4vw, 44px);
}
.fo-services__card h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; }
.fo-services__card p { margin: 0; color: var(--fo-ink-2); max-width: 60ch; }
@media (max-width: 700px) { .fo-services__card { flex-direction: column; align-items: flex-start; } }

/* ---------- FAQ ---------- */
.fo-faq__list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.fo-faq__item { background: #fff; border: 1px solid var(--fo-line); border-radius: 12px; padding: 0 22px; }
.fo-faq__item[open] { box-shadow: var(--fo-shadow-sm); border-color: transparent; }
.fo-faq__item summary {
	cursor: pointer;
	list-style: none;
	font-family: var(--fo-font-title);
	font-weight: 600;
	font-size: 17px;
	padding: 18px 36px 18px 0;
	position: relative;
}
.fo-faq__item summary::-webkit-details-marker { display: none; }
.fo-faq__item summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(214, 41, 118, 0.08);
	color: var(--fo-accent);
	font-weight: 500;
}
.fo-faq__item[open] summary::after { content: '–'; }
.fo-faq__item p { margin: 0 0 18px; color: var(--fo-ink-2); }

/* ---------- Blog ---------- */
.fo-post-card { background: #fff; border: 1px solid var(--fo-line); border-radius: var(--fo-radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s; }
.fo-post-card:hover { box-shadow: var(--fo-shadow); }
.fo-post-card__thumb img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.fo-post-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.fo-post-card__title { font-size: 21px; margin: 0; }
.fo-post-card__title a { color: var(--fo-ink); }
.fo-post-card__title a:hover { color: var(--fo-accent); }
.fo-post-card p { margin: 0; color: var(--fo-ink-2); }
.fo-post-card__more { font-family: var(--fo-font-title); font-weight: 600; font-size: 14px; }
.fo-post-meta { font-family: var(--fo-font-title); font-size: 13px; color: var(--fo-ink-3); display: flex; gap: 8px; }
.fo-pagination { margin-top: 40px; display: flex; justify-content: center; }
.fo-pagination .nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.fo-pagination .page-numbers { display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center; padding: 0 12px; border-radius: 999px; border: 1px solid var(--fo-line); color: var(--fo-ink); font-family: var(--fo-font-title); font-weight: 500; font-size: 14px; }
.fo-pagination .page-numbers.current, .fo-pagination .page-numbers:hover { background: var(--fo-accent); border-color: var(--fo-accent); color: #fff; }
.fo-single, .fo-page { max-width: 820px; }
.fo-single__thumb img, .fo-page__thumb img { border-radius: var(--fo-radius); width: 100%; }
.fo-single .fo-post-meta { margin-bottom: 20px; }
.fo-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 28px; }
.fo-tags a { font-size: 13px; padding: 4px 10px; border-radius: 999px; background: var(--fo-bg-soft); color: var(--fo-ink-2); }
.fo-post-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--fo-line); font-family: var(--fo-font-title); font-weight: 500; }
.fo-none { text-align: center; padding: 40px 0; }
.fo-search-again { max-width: 560px; margin: 0 auto 32px; }
.fo-searchform { display: flex; gap: 8px; }
.fo-searchform input[type="search"] { flex: 1; padding: 12px 16px; border: 1px solid var(--fo-line); border-radius: 999px; background: #fff; }

/* Long-form content */
.fo-prose { max-width: 72ch; font-size: 17.5px; }
.fo-prose > * + * { margin-top: 1.1em; }
.fo-prose h2 { margin-top: 1.8em; }
.fo-prose h3 { margin-top: 1.5em; }
.fo-prose img { border-radius: 12px; }
.fo-prose blockquote { margin: 1.4em 0; padding: 4px 0 4px 22px; border-left: 4px solid var(--fo-accent); color: var(--fo-ink-2); font-style: italic; }
.fo-prose table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.fo-prose th, .fo-prose td { padding: 10px 12px; border-bottom: 1px solid var(--fo-line); text-align: left; vertical-align: top; }
.fo-prose th { font-family: var(--fo-font-title); font-weight: 600; background: var(--fo-bg-soft); }
.fo-prose pre { background: var(--fo-ink); color: #dde7ea; padding: 18px; border-radius: 12px; overflow-x: auto; font-size: 14px; }
.fo-prose code { background: var(--fo-bg-soft); padding: 2px 6px; border-radius: 6px; font-size: 0.92em; }
.fo-prose pre code { background: none; padding: 0; }
.fo-prose .wp-block-button__link { border-radius: 999px; background: var(--fo-grad); font-family: var(--fo-font-title); font-weight: 600; }
.fo-prose .alignwide { max-width: none; }

/* ---------- Forms (generic + WPForms) ---------- */
.fo-prose input[type="text"], .fo-prose input[type="email"], .fo-prose input[type="tel"], .fo-prose textarea, .fo-prose select,
.wpforms-container input[type="text"], .wpforms-container input[type="email"], .wpforms-container input[type="tel"], .wpforms-container textarea, .wpforms-container select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--fo-line);
	border-radius: 12px;
	background: #fff;
	font-size: 16px;
}
.wpforms-container button[type="submit"], .comment-form .submit {
	background: var(--fo-grad) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 999px !important;
	padding: 14px 28px !important;
	font-family: var(--fo-font-title) !important;
	font-weight: 600 !important;
	cursor: pointer;
}

/* ---------- Comments ---------- */
.fo-comments { max-width: 820px; padding-bottom: 60px; }
.fo-comments__list { list-style: none; padding: 0; }
.fo-comments .comment { padding: 18px 0; border-bottom: 1px solid var(--fo-line); }
.fo-comments .comment-form textarea, .fo-comments .comment-form input:not([type="submit"]):not([type="checkbox"]) { width: 100%; padding: 12px 16px; border: 1px solid var(--fo-line); border-radius: 12px; }

/* ---------- Footer ---------- */
.fo-footer { position: relative; color: #fff; background: var(--fo-grad-footer); margin-top: clamp(40px, 6vw, 80px); }
.fo-footer a { color: rgba(255, 255, 255, 0.92); }
.fo-footer a:hover { color: var(--fo-hi); }
.fo-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-block: clamp(40px, 6vw, 64px) 32px; }
.fo-footer__brand p { max-width: 36ch; opacity: 0.92; margin: 16px 0; font-size: 15.5px; }
.fo-footer__brand .fo-logo img { width: 158px; }
.fo-social { display: flex; flex-wrap: wrap; gap: 8px; }
.fo-social a { font-family: var(--fo-font-title); font-size: 13px; font-weight: 500; padding: 6px 12px; border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 999px; }
.fo-footer__h { font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.fo-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 15px; }
.fo-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.25); padding-block: 18px; font-size: 13.5px; opacity: 0.9; }
.fo-footer__bottom p { margin: 0; }
@media (max-width: 900px) { .fo-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .fo-footer__grid { grid-template-columns: 1fr; } }

/* ---------- WooCommerce (kept minimal; the store is secondary) ---------- */
.fo-woo .button, .fo-woo .woocommerce-button, .fo-woo button.button { background: var(--fo-grad); color: #fff; border-radius: 999px; font-family: var(--fo-font-title); font-weight: 600; border: 0; }
.fo-woo ul.products li.product { text-align: left; }
.fo-woo ul.products li.product .woocommerce-loop-product__title { font-family: var(--fo-font-title); font-size: 18px; }
.fo-woo .woocommerce-message, .fo-woo .woocommerce-info, .fo-woo .woocommerce-error { border-top-color: var(--fo-accent); border-radius: 12px; }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.fo-btn, .fo-tool-card, .fo-post-card { transition: none; }
	.fo-btn:hover { transform: none; }
}
