/* ═══════════════════════════════════════════════════
   MFV Pages — Shared styles for Contact, Help Center,
   FAQ, Privacy Policy custom templates.
   ═══════════════════════════════════════════════════ */
:root {
	--mp-teal: #0e7490; --mp-purple: #7c3aed; --mp-orange: #f97316;
	--mp-green: #059669; --mp-blue: #2563eb; --mp-slate: #0f172a;
	--mp-gray: #64748b; --mp-light: #f8fafc;
}
.mfv-page { font-family: 'DM Sans','Inter',-apple-system,sans-serif; color: var(--mp-slate); overflow-x: hidden; }
.mfv-page * { box-sizing: border-box; }
.mfv-page .wrap { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.mfv-page .wrap--wide { max-width: 1100px; }

/* ── Hero banner (tinted, not full gradient) ── */
.mfv-page-hero {
	padding: 56px 0 44px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.mfv-page-hero::before {
	content: ''; position: absolute; top: -80px; right: -60px;
	width: 280px; height: 280px; border-radius: 50%;
	opacity: 0.07; pointer-events: none;
}
.mfv-page-hero__badge {
	display: inline-block; padding: 4px 14px;
	border-radius: 100px; font-size: 11px; font-weight: 700;
	letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px;
}
.mfv-page-hero h1 {
	font-family: 'Poppins',sans-serif;
	font-size: clamp(26px,4vw,40px);
	font-weight: 800; line-height: 1.15; margin: 0 0 10px;
}
.mfv-page-hero p {
	font-size: 15px; color: var(--mp-gray); line-height: 1.6;
	max-width: 560px; margin: 0 auto;
}
.mfv-page-hero__illust {
	margin: 24px auto 0; max-width: 320px;
}
.mfv-page-hero__illust img { width: 100%; height: auto; }

/* ── Section ── */
.mfv-page section { padding: 48px 0; }
.mfv-page-section-title {
	font-family: 'Poppins',sans-serif; font-size: 22px;
	font-weight: 700; margin: 0 0 20px; display: flex; align-items: center; gap: 10px;
}
.mfv-page-section-title svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ── Cards grid ── */
.mfv-page-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 32px; }
.mfv-page-card {
	background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
	padding: 24px 20px; transition: transform .2s, box-shadow .2s;
}
.mfv-page-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(14,116,144,0.08); }
.mfv-page-card__icon {
	width: 44px; height: 44px; border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 12px; color: #fff;
}
.mfv-page-card__icon svg { width: 22px; height: 22px; }
.mfv-page-card h3 { font-family: 'Poppins',sans-serif; font-size: 15px; font-weight: 700; margin: 0 0 6px; }
.mfv-page-card p { font-size: 13px; color: var(--mp-gray); line-height: 1.5; margin: 0; }
.mfv-page-card a { color: var(--mp-teal); font-weight: 600; text-decoration: none; font-size: 13px; }
.mfv-page-card a:hover { text-decoration: underline; }

/* ── Accordion (reuse about page pattern) ── */
.mfv-page-acc-group { margin-bottom: 24px; }
.mfv-page-acc-group__title {
	font-family: 'Poppins',sans-serif; font-size: 16px; font-weight: 700;
	color: var(--mp-teal); margin: 0 0 10px; display: flex; align-items: center; gap: 8px;
}
.mfv-page-acc-group__title svg { width: 18px; height: 18px; }
.mfv-page-acc {
	border: 1px solid #e2e8f0; border-radius: 10px; background: #fff;
	overflow: hidden; margin-bottom: 6px;
}
.mfv-page-acc__trigger {
	width: 100%; display: flex; align-items: center; justify-content: space-between;
	padding: 14px 18px; background: none; border: none; font-family: inherit;
	font-size: 14px; font-weight: 600; color: var(--mp-slate); cursor: pointer; text-align: left;
}
.mfv-page-acc__trigger:hover { background: #f8fafc; }
.mfv-page-acc__trigger svg { width: 16px; height: 16px; color: var(--mp-gray); transition: transform .25s; flex-shrink: 0; }
.mfv-page-acc--open .mfv-page-acc__trigger svg { transform: rotate(180deg); }
.mfv-page-acc__body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.mfv-page-acc--open .mfv-page-acc__body { max-height: 600px; }
.mfv-page-acc__content { padding: 0 18px 14px; font-size: 14px; color: var(--mp-gray); line-height: 1.65; }
.mfv-page-acc__content strong { color: var(--mp-slate); }
.mfv-page-acc__content ul { padding-left: 18px; margin: 6px 0 0; }
.mfv-page-acc__content a { color: var(--mp-teal); }

/* ── Prose (Privacy Policy) ── */
.mfv-page-prose h2 {
	font-family: 'Poppins',sans-serif; font-size: 20px; font-weight: 700;
	color: var(--mp-slate); margin: 32px 0 12px; padding-top: 16px;
	border-top: 1px solid #e2e8f0;
}
.mfv-page-prose h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.mfv-page-prose h3 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; }
.mfv-page-prose p { font-size: 14px; line-height: 1.7; color: var(--mp-gray); margin: 0 0 12px; }
.mfv-page-prose ul, .mfv-page-prose ol { padding-left: 20px; margin: 0 0 12px; }
.mfv-page-prose li { font-size: 14px; color: var(--mp-gray); line-height: 1.6; margin-bottom: 4px; }
.mfv-page-prose blockquote {
	margin: 16px 0; padding: 14px 18px; background: #f0fdfa;
	border-left: 3px solid var(--mp-teal); border-radius: 0 8px 8px 0;
	font-size: 14px; color: var(--mp-slate);
}
.mfv-page-prose a { color: var(--mp-teal); }
.mfv-page-prose strong { color: var(--mp-slate); }
.mfv-page-prose hr { border: none; border-top: 1px solid #e2e8f0; margin: 24px 0; }

/* ── Contact form wrapper ── */
.mfv-page-form-wrap {
	background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
	padding: 32px; margin-top: 24px;
}

/* ── Contact two-column layout ── */
.mfv-contact-layout {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 32px;
	align-items: start;
}
.mfv-contact-layout__sidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.mfv-contact-layout__sidebar .mfv-page-card {
	margin: 0;
}

/* ── CTA strip ── */
.mfv-page-cta {
	background: linear-gradient(135deg, var(--mp-teal), var(--mp-purple));
	color: #fff; text-align: center; padding: 44px 0;
}
.mfv-page-cta h2 { font-family: 'Poppins',sans-serif; font-size: 24px; font-weight: 700; margin: 0 0 8px; }
.mfv-page-cta p { font-size: 14px; opacity: .85; margin: 0 0 20px; }
.mfv-page-cta a {
	display: inline-block; padding: 11px 24px; background: #fff;
	color: var(--mp-teal); border-radius: 10px; font-weight: 600;
	font-size: 14px; text-decoration: none;
}

/* ── Footer note ── */
/* footer attribution moved to main site footer */

/* ── Responsive ── */
@media (max-width: 768px) {
	.mfv-page-cards { grid-template-columns: 1fr; }
	.mfv-contact-layout { grid-template-columns: 1fr; }
	.mfv-page-hero__illust { max-width: 240px; }
	.mfv-page-form-wrap { padding: 20px; }
}
