/* =============================================================
   Motofy App theme — visual estilo aplicativo
   ============================================================= */

:root {
	--brand: #FF5722;
	--brand-dark: #E64A19;
	--brand-soft: #FFF1EC;
	--ink: #0F172A;
	--ink-2: #1F2937;
	--text: #111827;
	--muted: #6B7280;
	--bg: #F8FAFC;
	--card: #FFFFFF;
	--border: #E5E7EB;
	--success: #10B981;
	--info: #3B82F6;
	--shadow-sm: 0 1px 3px rgba( 17, 24, 39, .06 ), 0 1px 2px rgba( 17, 24, 39, .04 );
	--shadow-md: 0 4px 12px rgba( 17, 24, 39, .08 ), 0 2px 4px rgba( 17, 24, 39, .04 );
	--shadow-lg: 0 10px 25px rgba( 17, 24, 39, .08 ), 0 4px 10px rgba( 17, 24, 39, .04 );
	--shadow-xl: 0 25px 50px rgba( 17, 24, 39, .15 );
	--radius-sm: 8px;
	--radius: 14px;
	--radius-lg: 22px;
	--radius-xl: 32px;
	--header-h: 70px;
	--bottomnav-h: 64px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var( --text );
	background: var( --bg );
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.55;
	padding-bottom: env( safe-area-inset-bottom );
}

a { color: var( --brand ); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.motofy-skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var( --brand ); color: #fff;
	padding: 10px 16px; border-radius: 0 0 8px 0;
	z-index: 9999;
}
.motofy-skip-link:focus { left: 0; }

.screen-reader-text { position: absolute; left: -9999px; }

/* ---- Container ------------------------------------------- */
.motofy-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.motofy-container-narrow { max-width: 760px; }
.motofy-container-wide   { max-width: 1320px; }

/* ---- Botões ---------------------------------------------- */
.motofy-btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: var( --radius );
	font-weight: 700; font-size: 14px; line-height: 1;
	cursor: pointer; text-decoration: none !important;
	border: 2px solid transparent;
	transition: transform .12s, box-shadow .12s, background .12s, color .12s;
	font-family: inherit;
	white-space: nowrap;
}
.motofy-btn:active { transform: translateY( 1px ); }
.motofy-btn-lg { padding: 16px 28px; font-size: 16px; border-radius: var( --radius-lg ); }
.motofy-btn-primary { background: var( --brand ); color: #fff; box-shadow: 0 6px 20px rgba( 255, 87, 34, .25 ); }
.motofy-btn-primary:hover { background: var( --brand-dark ); box-shadow: 0 10px 25px rgba( 255, 87, 34, .35 ); }
.motofy-btn-secondary { background: var( --ink ); color: #fff; }
.motofy-btn-secondary:hover { background: #000; }
.motofy-btn-outline { background: transparent; color: var( --ink ); border-color: var( --ink ); }
.motofy-btn-outline:hover { background: var( --ink ); color: #fff; }
.motofy-btn-light { background: #fff; color: var( --brand ); }
.motofy-btn-light:hover { background: var( --brand-soft ); }

/* ---- HEADER ---------------------------------------------- */
.motofy-app-header {
	position: sticky; top: 0; z-index: 200;
	background: rgba( 255, 255, 255, .92 );
	backdrop-filter: saturate( 180% ) blur( 12px );
	-webkit-backdrop-filter: saturate( 180% ) blur( 12px );
	border-bottom: 1px solid transparent;
	transition: border-color .2s, box-shadow .2s;
}
.motofy-app-header.is-scrolled {
	border-bottom-color: var( --border );
	box-shadow: var( --shadow-sm );
}
.motofy-app-header-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px;
	height: var( --header-h );
}
.motofy-app-header-brand {
	display: flex; align-items: center; gap: 12px;
}
.motofy-brand-fallback {
	display: inline-flex; align-items: center; gap: 8px;
	color: var( --ink ); text-decoration: none !important;
	font-weight: 800; font-size: 20px;
	letter-spacing: -0.5px;
}
.motofy-brand-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px;
	background: var( --brand ); color: #fff;
	border-radius: 10px;
}
.motofy-brand-icon svg { width: 22px; height: 22px; }
.custom-logo { max-height: 44px; width: auto; }

.motofy-menu-toggle {
	display: none;
	background: transparent; border: none; cursor: pointer;
	padding: 8px; border-radius: 8px;
	flex-direction: column; gap: 4px;
}
.motofy-menu-toggle span {
	display: block; width: 22px; height: 2px;
	background: var( --ink ); border-radius: 2px;
}

.motofy-app-header-nav { flex: 1; display: flex; justify-content: center; }
.motofy-nav-list {
	display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
}
.motofy-nav-list a {
	color: var( --text ); font-weight: 500; font-size: 14px;
	text-decoration: none !important;
	padding: 8px 0; position: relative;
}
.motofy-nav-list a:hover { color: var( --brand ); }
.motofy-nav-list a:hover::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 0;
	height: 2px; background: var( --brand ); border-radius: 2px;
}

.motofy-app-header-actions { display: flex; align-items: center; gap: 12px; }
.motofy-header-link {
	color: var( --text ); font-weight: 600; font-size: 14px;
	padding: 8px 12px; text-decoration: none !important;
}
.motofy-header-cta {
	display: inline-flex; align-items: center; padding: 10px 18px;
	background: var( --brand ); color: #fff !important;
	font-weight: 700; font-size: 14px; border-radius: 999px;
	text-decoration: none !important;
	transition: background .12s, transform .12s;
}
.motofy-header-cta:hover { background: var( --brand-dark ); transform: translateY( -1px ); }

/* ---- DRAWER mobile --------------------------------------- */
.motofy-drawer {
	position: fixed; inset: 0; z-index: 300;
	visibility: hidden;
}
.motofy-drawer.is-open { visibility: visible; }
.motofy-drawer-backdrop {
	position: absolute; inset: 0;
	background: rgba( 15, 23, 42, .6 );
	opacity: 0; transition: opacity .2s;
}
.motofy-drawer.is-open .motofy-drawer-backdrop { opacity: 1; }
.motofy-drawer-panel {
	position: absolute; top: 0; left: 0; bottom: 0;
	width: 86%; max-width: 360px;
	background: #fff;
	transform: translateX( -100% );
	transition: transform .25s ease;
	display: flex; flex-direction: column; gap: 20px;
	padding: 28px 24px;
	box-shadow: var( --shadow-xl );
}
.motofy-drawer.is-open .motofy-drawer-panel { transform: translateX( 0 ); }
.motofy-drawer-close {
	position: absolute; top: 14px; right: 14px;
	width: 36px; height: 36px;
	background: var( --bg ); border: none;
	border-radius: 10px; font-size: 22px;
	cursor: pointer; line-height: 1;
}
.motofy-drawer-list {
	list-style: none; margin: 12px 0 0; padding: 0;
	display: flex; flex-direction: column; gap: 4px;
}
.motofy-drawer-list a {
	display: block; padding: 14px 16px;
	color: var( --text ); font-weight: 600; font-size: 16px;
	border-radius: 12px; text-decoration: none !important;
}
.motofy-drawer-list a:hover { background: var( --bg ); color: var( --brand ); }
.motofy-drawer-cta { margin-top: auto; }
.motofy-drawer-cta .motofy-header-cta { width: 100%; justify-content: center; }

/* ---- HERO ------------------------------------------------ */
.motofy-hero {
	position: relative;
	padding: 60px 0 80px;
	background:
		radial-gradient( 1200px 600px at 100% -10%, rgba( 255, 87, 34, .15 ), transparent ),
		radial-gradient( 800px 400px at -10% 50%, rgba( 59, 130, 246, .08 ), transparent ),
		linear-gradient( 180deg, #FFF8F4 0%, #FFFFFF 100% );
	overflow: hidden;
}
.motofy-hero-grid {
	display: grid; grid-template-columns: 1.05fr .95fr;
	gap: 60px; align-items: center;
}
.motofy-hero-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	background: #fff; color: var( --brand-dark );
	font-weight: 700; font-size: 13px;
	padding: 8px 14px; border-radius: 999px;
	border: 1px solid #FED7C5;
	box-shadow: var( --shadow-sm );
}
.motofy-pulse-dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var( --brand );
	box-shadow: 0 0 0 4px rgba( 255, 87, 34, .25 );
	animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

.motofy-hero-title {
	font-size: clamp( 38px, 5.5vw, 60px );
	line-height: 1.05; margin: 16px 0;
	letter-spacing: -1.5px; font-weight: 800;
	color: var( --ink );
}
.motofy-hero-subtitle {
	font-size: 18px; color: var( --muted );
	max-width: 540px; margin: 0 0 28px;
}
.motofy-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.motofy-hero-features {
	list-style: none; margin: 28px 0 0; padding: 0;
	display: flex; gap: 20px; flex-wrap: wrap;
	font-size: 13px; color: var( --muted );
}
.motofy-hero-features li {
	display: inline-flex; align-items: center; gap: 6px;
}
.motofy-hero-features li::before {
	content: '✓'; width: 18px; height: 18px;
	background: var( --success ); color: #fff;
	border-radius: 50%; font-size: 11px; font-weight: 700;
	display: inline-flex; align-items: center; justify-content: center;
}

/* ---- Phone mockup --------------------------------------- */
.motofy-hero-art {
	display: flex; justify-content: center; position: relative;
}
.motofy-phone-mock {
	position: relative; width: 320px; max-width: 100%;
	filter: drop-shadow( 0 30px 60px rgba( 17, 24, 39, .25 ) );
}
.motofy-phone-svg { width: 100%; height: auto; display: block; }
.motofy-float-card {
	position: absolute;
	background: #fff; border-radius: 18px;
	padding: 12px 16px; box-shadow: var( --shadow-lg );
	display: flex; align-items: center; gap: 12px;
	font-size: 13px; min-width: 180px;
	border: 1px solid var( --border );
	animation: float 4s ease-in-out infinite;
}
.motofy-float-card-1 { top: 16%; left: -50px; animation-delay: 0s; }
.motofy-float-card-2 { bottom: 18%; right: -40px; animation-delay: 1.5s; }
.motofy-float-icon {
	width: 36px; height: 36px; border-radius: 10px;
	background: var( --brand-soft ); color: var( --brand );
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 18px; flex-shrink: 0;
}
.motofy-float-card strong { display: block; font-weight: 800; color: var( --ink ); }
.motofy-float-card small { color: var( --muted ); font-size: 11px; }
@keyframes float {
	0%, 100% { transform: translateY( 0 ); }
	50%      { transform: translateY( -10px ); }
}

/* ---- Sections ------------------------------------------- */
.motofy-section { padding: 80px 0; }
.motofy-section-alt { background: #fff; }

.motofy-section-head {
	text-align: center; max-width: 720px; margin: 0 auto 48px;
}
.motofy-section-eyebrow {
	display: inline-block;
	color: var( --brand ); font-weight: 700;
	font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
	margin-bottom: 12px;
}
.motofy-section-head h2 {
	font-size: clamp( 28px, 3.5vw, 42px );
	font-weight: 800; line-height: 1.15;
	margin: 0 0 12px; letter-spacing: -1px;
	color: var( --ink );
}
.motofy-section-head p {
	font-size: 17px; color: var( --muted ); margin: 0;
}

/* ---- Audience cards ------------------------------------- */
.motofy-audience-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.motofy-audience-card {
	background: #fff; border-radius: var( --radius-lg );
	border: 1px solid var( --border );
	padding: 36px;
	box-shadow: var( --shadow-sm );
	display: flex; flex-direction: column; gap: 12px;
	transition: transform .15s, box-shadow .15s;
}
.motofy-audience-card:hover {
	transform: translateY( -4px );
	box-shadow: var( --shadow-lg );
}
.motofy-audience-icon {
	width: 56px; height: 56px;
	border-radius: 16px;
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 4px;
}
.motofy-audience-icon svg { width: 28px; height: 28px; }
.motofy-icon-bg-orange { background: var( --brand-soft ); color: var( --brand-dark ); }
.motofy-icon-bg-blue   { background: #DBEAFE; color: #1E40AF; }
.motofy-audience-card h2 { font-size: 26px; margin: 0; letter-spacing: -.5px; }
.motofy-audience-card p { color: var( --muted ); margin: 0; font-size: 15px; }
.motofy-audience-card .motofy-btn { align-self: flex-start; margin-top: 10px; }

.motofy-checklist {
	list-style: none; margin: 8px 0; padding: 0;
	display: flex; flex-direction: column; gap: 8px;
}
.motofy-checklist li {
	display: flex; align-items: flex-start; gap: 10px;
	font-size: 14px; color: var( --text );
}
.motofy-checklist li::before {
	content: '✓'; flex-shrink: 0;
	width: 22px; height: 22px;
	background: var( --brand-soft ); color: var( --brand );
	border-radius: 50%; font-size: 12px; font-weight: 700;
	display: inline-flex; align-items: center; justify-content: center;
}

/* ---- Steps ---------------------------------------------- */
.motofy-steps {
	display: grid; grid-template-columns: repeat( 4, 1fr );
	gap: 24px;
	counter-reset: stepc;
}
.motofy-step {
	background: #fff; border-radius: var( --radius );
	padding: 28px; border: 1px solid var( --border );
	position: relative;
}
.motofy-step-number {
	width: 44px; height: 44px;
	background: var( --brand );
	color: #fff; font-weight: 800; font-size: 18px;
	border-radius: 12px;
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 14px;
}
.motofy-step h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.3px; }
.motofy-step p  { margin: 0; color: var( --muted ); font-size: 14px; }

/* ---- CTA Band ------------------------------------------- */
.motofy-cta-band {
	background: linear-gradient( 135deg, var( --brand ) 0%, var( --brand-dark ) 100% );
	color: #fff;
	padding: 60px 0;
	margin-top: 0;
}
.motofy-cta-band-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.motofy-cta-band h2 { margin: 0 0 6px; font-size: 28px; letter-spacing: -.5px; }
.motofy-cta-band p  { margin: 0; opacity: .85; }

/* ---- Page (regular) ------------------------------------- */
.motofy-page { padding: 60px 0 80px; }
.motofy-page-header { margin-bottom: 30px; }
.motofy-page-title {
	font-size: clamp( 30px, 4vw, 44px );
	font-weight: 800; line-height: 1.15;
	margin: 0 0 8px; color: var( --ink );
	letter-spacing: -1px;
}
.motofy-page-excerpt { color: var( --muted ); font-size: 18px; margin: 0; }
.motofy-page-thumb { margin: 30px 0; border-radius: var( --radius-lg ); overflow: hidden; }
.motofy-prose { font-size: 16px; line-height: 1.7; color: var( --text ); }
.motofy-prose h2 { font-size: 28px; margin: 36px 0 12px; letter-spacing: -.5px; }
.motofy-prose h3 { font-size: 22px; margin: 28px 0 10px; }
.motofy-prose img { border-radius: var( --radius ); margin: 20px 0; }
.motofy-prose blockquote {
	border-left: 4px solid var( --brand );
	padding: 4px 0 4px 20px; margin: 24px 0;
	color: var( --muted ); font-style: italic;
}
.motofy-prose pre {
	background: var( --ink ); color: #fff;
	padding: 16px; border-radius: var( --radius-sm );
	overflow-x: auto;
}
.motofy-post-date { color: var( --muted ); font-size: 13px; }

/* ---- Page com plugin (full-bleed) ----------------------- */
body.motofy-app-shell { background: var( --bg ); }
.motofy-app-fullbleed {
	min-height: calc( 100vh - var( --header-h ) - 80px );
	padding: 24px 0;
}
.motofy-app-fullbleed-inner {
	max-width: 1320px; margin: 0 auto;
	padding: 0 16px;
}

/* ---- Post grid ------------------------------------------ */
.motofy-post-grid {
	display: grid; grid-template-columns: repeat( auto-fill, minmax( 300px, 1fr ) );
	gap: 24px;
}
.motofy-post-card {
	background: #fff; border-radius: var( --radius );
	overflow: hidden; border: 1px solid var( --border );
	box-shadow: var( --shadow-sm );
	transition: transform .15s, box-shadow .15s;
	display: flex; flex-direction: column;
}
.motofy-post-card:hover {
	transform: translateY( -4px );
	box-shadow: var( --shadow-lg );
}
.motofy-post-thumb img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.motofy-post-card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.motofy-post-title { margin: 0; font-size: 18px; line-height: 1.3; }
.motofy-post-title a { color: var( --ink ); text-decoration: none; }
.motofy-post-excerpt { color: var( --muted ); font-size: 14px; margin: 0; flex: 1; }
.motofy-post-link { font-weight: 700; font-size: 14px; color: var( --brand ); }

.motofy-pagination { margin-top: 40px; display: flex; justify-content: center; }
.motofy-pagination .nav-links { display: flex; gap: 8px; }
.motofy-pagination a, .motofy-pagination span {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 12px;
	border-radius: 10px; border: 1px solid var( --border );
	color: var( --text ); text-decoration: none !important;
	font-weight: 600;
}
.motofy-pagination .current { background: var( --brand ); color: #fff; border-color: var( --brand ); }

.motofy-empty-state {
	text-align: center; padding: 60px 20px;
	background: #fff; border-radius: var( --radius );
	border: 1px dashed var( --border );
	color: var( --muted );
}

/* ---- Search form ---------------------------------------- */
.motofy-search-form {
	display: inline-flex; align-items: center;
	background: #fff; border: 1px solid var( --border );
	border-radius: 999px; padding: 4px 4px 4px 16px;
	box-shadow: var( --shadow-sm );
}
.motofy-search-form input {
	border: none; outline: none; background: transparent;
	padding: 8px 0; font-size: 14px; min-width: 200px;
	font-family: inherit;
}
.motofy-search-form button {
	border: none; cursor: pointer;
	background: var( --brand ); color: #fff;
	width: 36px; height: 36px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
}

/* ---- FOOTER --------------------------------------------- */
.motofy-app-footer {
	background: var( --ink );
	color: #cbd5e1;
	padding: 60px 0 30px;
	margin-top: 80px;
}
.motofy-footer-grid {
	display: grid; grid-template-columns: 1.2fr 2fr;
	gap: 60px;
}
.motofy-footer-brand-col .motofy-brand-fallback,
.motofy-footer-brand-col .motofy-brand-fallback span { color: #fff; }
.motofy-footer-tagline { color: #94a3b8; margin: 14px 0 18px; max-width: 320px; font-size: 14px; }
.motofy-footer-social {
	display: inline-flex; align-items: center; gap: 8px;
	color: #cbd5e1 !important; text-decoration: none !important;
	background: rgba( 255, 255, 255, .05 );
	padding: 10px 16px; border-radius: 999px;
	font-size: 13px; margin-right: 8px;
	border: 1px solid rgba( 255, 255, 255, .08 );
}
.motofy-footer-social svg { width: 16px; height: 16px; }
.motofy-footer-social:hover { background: rgba( 255, 255, 255, .1 ); }

.motofy-footer-cols {
	display: grid; grid-template-columns: repeat( auto-fit, minmax( 160px, 1fr ) );
	gap: 30px;
}
.motofy-footer-widget-title {
	color: #fff; font-size: 14px; font-weight: 700;
	margin: 0 0 14px; text-transform: uppercase; letter-spacing: 1px;
}
.motofy-footer-widget ul, .motofy-footer-menu {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-direction: column; gap: 8px;
}
.motofy-footer-widget a, .motofy-footer-menu a {
	color: #cbd5e1; text-decoration: none; font-size: 14px;
}
.motofy-footer-widget a:hover, .motofy-footer-menu a:hover { color: #fff; }

.motofy-footer-bottom {
	margin-top: 50px;
	padding-top: 24px;
	border-top: 1px solid rgba( 255, 255, 255, .1 );
	text-align: center;
	color: #64748b;
}

/* ---- BOTTOM NAV (mobile) ------------------------------- */
.motofy-bottom-nav {
	display: none;
	position: fixed; bottom: 0; left: 0; right: 0;
	background: #fff;
	border-top: 1px solid var( --border );
	box-shadow: 0 -4px 12px rgba( 17, 24, 39, .04 );
	z-index: 150;
	padding-bottom: env( safe-area-inset-bottom );
}
.motofy-bottom-item {
	flex: 1;
	display: flex; flex-direction: column; align-items: center;
	gap: 4px;
	padding: 10px 4px;
	color: var( --muted ); text-decoration: none !important;
	font-size: 11px; font-weight: 600;
	min-height: var( --bottomnav-h );
	transition: color .12s;
}
.motofy-bottom-icon { width: 22px; height: 22px; display: inline-flex; }
.motofy-bottom-icon svg { width: 22px; height: 22px; }
.motofy-bottom-item.is-current { color: var( --brand ); }
.motofy-bottom-item.is-current .motofy-bottom-icon { transform: scale( 1.05 ); }
.motofy-bottom-label { font-size: 11px; }

/* ---- Promo banner -------------------------------------- */
.motofy-promo-banner {
	background: linear-gradient( 90deg, var( --brand-dark ) 0%, var( --brand ) 100% );
	color: #fff;
	text-align: center;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 600;
	position: relative; z-index: 201;
}
.motofy-promo-banner a {
	color: #fff !important;
	text-decoration: none !important;
	display: inline-flex; align-items: center; gap: 8px;
}
.motofy-promo-banner a:hover .motofy-promo-arrow { transform: translateX( 4px ); }
.motofy-promo-arrow { transition: transform .15s; display: inline-block; }

/* ---- Testimonials --------------------------------------- */
.motofy-testimonials {
	display: grid; grid-template-columns: repeat( auto-fit, minmax( 280px, 1fr ) );
	gap: 24px;
}
.motofy-testimonial {
	background: #fff; border-radius: var( --radius-lg );
	padding: 28px; margin: 0;
	box-shadow: var( --shadow-sm );
	border: 1px solid var( --border );
	display: flex; flex-direction: column; gap: 16px;
}
.motofy-testimonial-stars {
	color: #F59E0B; font-size: 18px;
	letter-spacing: 2px;
}
.motofy-testimonial blockquote {
	margin: 0; font-style: normal;
	font-size: 16px; line-height: 1.6; color: var( --text );
	border: none; padding: 0;
}
.motofy-testimonial figcaption {
	display: flex; align-items: center; gap: 12px;
	margin-top: auto;
}
.motofy-testimonial-avatar {
	width: 44px; height: 44px; border-radius: 50%;
	background: var( --brand ); color: #fff;
	font-weight: 800; font-size: 18px;
	display: inline-flex; align-items: center; justify-content: center;
}
.motofy-testimonial figcaption strong {
	display: block; color: var( --ink ); font-size: 14px;
}
.motofy-testimonial figcaption small {
	color: var( --muted ); font-size: 13px;
}

/* ---- FAQ ------------------------------------------------ */
.motofy-faq {
	display: flex; flex-direction: column; gap: 10px;
}
.motofy-faq-item {
	background: #fff; border-radius: var( --radius );
	border: 1px solid var( --border );
	box-shadow: var( --shadow-sm );
	overflow: hidden;
}
.motofy-faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 22px;
	font-weight: 600; font-size: 16px;
	color: var( --ink );
	display: flex; justify-content: space-between; align-items: center;
	gap: 16px;
	transition: background .15s;
}
.motofy-faq-item summary:hover { background: var( --bg ); }
.motofy-faq-item summary::-webkit-details-marker { display: none; }
.motofy-faq-icon {
	width: 28px; height: 28px;
	background: var( --brand-soft ); color: var( --brand );
	border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: 16px;
	transition: transform .2s, background .15s;
	flex-shrink: 0;
}
.motofy-faq-item[open] .motofy-faq-icon {
	transform: rotate( 45deg );
	background: var( --brand ); color: #fff;
}
.motofy-faq-answer {
	padding: 0 22px 18px;
	color: var( --muted ); font-size: 15px; line-height: 1.65;
}
.motofy-faq-answer p { margin: 0; }
.motofy-faq-answer p + p { margin-top: 10px; }

/* ---- RESPONSIVE ----------------------------------------- */

@media ( max-width: 980px ) {
	.motofy-hero-grid { grid-template-columns: 1fr; gap: 40px; }
	.motofy-hero-art { order: -1; }
	.motofy-phone-mock { width: 260px; }
	.motofy-float-card { display: none; }
	.motofy-audience-grid { grid-template-columns: 1fr; }
	.motofy-steps { grid-template-columns: 1fr 1fr; }
	.motofy-footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media ( max-width: 720px ) {
	body { padding-bottom: calc( var( --bottomnav-h ) + env( safe-area-inset-bottom ) ); }

	.motofy-app-header-nav,
	.motofy-app-header-actions .motofy-header-link {
		display: none;
	}
	.motofy-menu-toggle { display: inline-flex; }
	.motofy-app-header-inner { gap: 12px; }
	.motofy-app-header-actions { gap: 8px; }
	.motofy-header-cta { padding: 8px 14px; font-size: 13px; }

	.motofy-bottom-nav { display: flex; }

	.motofy-hero { padding: 30px 0 60px; }
	.motofy-section { padding: 50px 0; }
	.motofy-section-head { margin-bottom: 32px; }
	.motofy-cta-band { padding: 40px 0; text-align: center; }
	.motofy-cta-band-inner { justify-content: center; text-align: center; }

	.motofy-steps { grid-template-columns: 1fr; }

	.motofy-hero-title { letter-spacing: -1px; }
	.motofy-hero-subtitle { font-size: 16px; }
	.motofy-hero-ctas .motofy-btn { flex: 1; justify-content: center; }

	.motofy-app-fullbleed { padding: 0; min-height: calc( 100vh - var( --header-h ) - var( --bottomnav-h ) ); }
	.motofy-app-fullbleed-inner { padding: 0; }

	.motofy-app-footer { padding: 40px 0 24px; margin-top: 40px; }
}

@media ( max-width: 480px ) {
	.motofy-container { padding: 0 16px; }
	.motofy-audience-card { padding: 24px; }
	.motofy-step { padding: 22px; }
}

/* ---- Block editor overrides ----------------------------- */
.alignwide  { margin-left: calc( 50% - 50vw ); margin-right: calc( 50% - 50vw ); max-width: 100vw; }
.alignfull  { margin-left: calc( 50% - 50vw ); margin-right: calc( 50% - 50vw ); max-width: 100vw; }
