:root {
	--primary: #0f2f5f;
	--primary-2: #143c78;
	--accent: #f5b942;
	--wa: #16a34a;
	--ink: #172033;
	--muted: #657084;
	--line: #dde4ef;
	--soft: #f4f7fb;
	--white: #ffffff;
	--shadow: 0 14px 34px rgba(15, 47, 95, .12);
	--radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	color: var(--ink);
	background: var(--white);
	line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.container { width: min(100% - 32px, 1200px); margin-inline: auto; }
.skip-link {
	position: absolute;
	left: -999px;
	top: 8px;
	background: var(--primary);
	color: #fff;
	padding: 10px 14px;
	z-index: 1000;
}
.skip-link:focus { left: 8px; }

.site-header {
	position: sticky;
	top: 0;
	background: rgba(255,255,255,.96);
	border-bottom: 1px solid var(--line);
	z-index: 99;
	backdrop-filter: blur(10px);
}
.header-inner {
	min-height: 74px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	text-decoration: none;
	color: var(--primary);
}
.brand-mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: var(--radius);
	background: var(--primary);
	color: #fff;
}
.brand-logo {
	display: block;
	width: min(230px, 58vw);
	height: auto;
}
.primary-nav { display: flex; align-items: center; gap: 18px; }
.menu, .footer-menu { list-style: none; padding: 0; margin: 0; }
.primary-nav .menu { display: flex; align-items: center; gap: 18px; }
.primary-nav a { text-decoration: none; font-weight: 650; font-size: 14px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--primary); }

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 12px 18px;
	border: 0;
	border-radius: var(--radius);
	text-decoration: none;
	font-weight: 800;
	cursor: pointer;
	transition: transform .16s ease, box-shadow .16s ease;
}
.btn:hover, .btn:focus { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-light { background: #fff; color: var(--primary); }
.btn-small { min-height: 40px; padding: 9px 13px; font-size: 14px; }

.hero {
	position: relative;
	isolation: isolate;
	min-height: clamp(620px, 92vh, 820px);
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #0f2f5f 0%, #143c78 100%);
	padding: 92px 0 74px;
	overflow: hidden;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image: var(--hero-bg);
	background-size: cover;
	background-position: center right;
	filter: saturate(1.02);
	transform: scale(1.01);
}
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(7,27,56,.9) 0%, rgba(15,47,95,.78) 42%, rgba(15,47,95,.25) 72%, rgba(7,27,56,.18) 100%),
		linear-gradient(0deg, rgba(7,27,56,.38), rgba(7,27,56,.08));
}
.hero-grid, .two-col, .cta-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
	gap: 42px;
	align-items: center;
}
.eyebrow {
	margin: 0 0 10px;
	color: var(--primary);
	font-weight: 800;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0;
}
.hero .eyebrow { color: #f5b942; }
h1, h2, h3 { line-height: 1.15; color: var(--primary); margin: 0 0 14px; letter-spacing: 0; }
h1 { font-size: clamp(36px, 7vw, 62px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 21px; }
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.18); }
.hero-subtitle { max-width: 660px; font-size: 19px; color: #eef5ff; margin: 0 0 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.trust-points span, .benefit-list div {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 12px 14px;
	box-shadow: 0 8px 20px rgba(15,47,95,.06);
}
.hero .trust-points span {
	background: rgba(255,255,255,.94);
	border-color: rgba(255,255,255,.42);
	color: #172033;
}
.hero-panel {
	background: rgba(15,47,95,.84);
	color: #fff;
	padding: 24px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,.18);
}
.price-card {
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: var(--radius);
	padding: 22px;
}
.price-card strong { display: block; font-size: 34px; color: #fff; }
.condition-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0; margin: 18px 0 0; list-style: none; }
.condition-list li { background: rgba(255,255,255,.12); padding: 10px; border-radius: var(--radius); }

.section { padding: 72px 0; }
.section.alt { background: var(--soft); }
.section-heading { max-width: 720px; margin-bottom: 28px; }
.narrow { max-width: 850px; }
.compact { padding: 62px 0; background: var(--soft); }
.prose { max-width: 820px; }
.prose p, .prose li { color: #33405a; }
.featured-image { border-radius: var(--radius); margin-bottom: 24px; }

.bmsj-lead-form, .post-card, .service-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 22px;
}
.bmsj-lead-form {
	display: grid;
	gap: 16px;
}
.form-intro {
	display: grid;
	gap: 3px;
	margin: -2px -2px 2px;
	padding: 14px 16px;
	border-radius: var(--radius);
	background: #eef6ff;
	border: 1px solid #d8e8fb;
	color: var(--primary);
}
.form-intro strong {
	font-size: 17px;
	line-height: 1.25;
}
.form-intro span {
	color: #40516f;
	font-size: 14px;
	line-height: 1.45;
}
.form-section-card {
	margin: 0;
	padding: 0;
	border: 0;
	display: grid;
	gap: 12px;
}
.form-section-head {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
}
.form-section-head span {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	font-size: 14px;
	font-weight: 900;
}
.form-section-head h3, .form-section-head legend {
	margin: 0 0 3px;
	color: var(--primary);
	font-size: 17px;
	line-height: 1.25;
	font-weight: 900;
}
.form-section-head p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.45;
}
.form-grid, .upload-grid, .card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.span-2 { grid-column: 1 / -1; }
label, legend { font-weight: 750; font-size: 14px; color: #263653; }
input, select, textarea {
	width: 100%;
	margin-top: 6px;
	border: 1px solid #cbd5e1;
	border-radius: var(--radius);
	padding: 11px 12px;
	font: inherit;
	color: var(--ink);
	background: #fff;
}
input:focus, select:focus, textarea:focus, button:focus, a:focus { outline: 3px solid rgba(245,185,66,.7); outline-offset: 2px; }
.upload-section {
	padding-top: 2px;
}
.upload-grid label {
	position: relative;
	display: grid;
	align-content: start;
	min-height: 86px;
	padding: 12px;
	border: 1px dashed #bac6d8;
	border-radius: var(--radius);
	background: var(--soft);
	cursor: pointer;
}
.upload-grid input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}
.upload-grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 30px;
	margin-top: 10px;
	padding: 6px 10px;
	border-radius: var(--radius);
	background: #fff;
	color: var(--primary);
	font-size: 12px;
	font-weight: 850;
	border: 1px solid var(--line);
}
.upload-grid label.has-file {
	border-style: solid;
	border-color: rgba(22,163,74,.45);
	background: #edf8f1;
}
.upload-grid label.has-file span {
	color: #116733;
}
.form-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	padding-top: 4px;
}
.form-response {
	margin: 0;
	padding: 0;
	font-weight: 800;
	color: var(--primary);
}
.form-response:not(:empty) {
	padding: 12px 14px;
	border-radius: var(--radius);
	background: #eef6ff;
}
.bmsj-hp { position: absolute; left: -9999px; }

.service-card p, .post-card p { color: var(--muted); margin-bottom: 0; }
.service-thumb {
	margin: -22px -22px 16px;
	overflow: hidden;
	border-radius: var(--radius) var(--radius) 0 0;
	background: var(--soft);
}
.service-thumb img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}
.post-thumb {
	display: block;
	margin: -22px -22px 16px;
	overflow: hidden;
	border-radius: var(--radius) var(--radius) 0 0;
}
.post-thumb img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
.card-icon {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	background: #eaf7ef;
	color: var(--wa);
	border-radius: var(--radius);
	font-weight: 900;
	margin-bottom: 12px;
}
.steps {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: steps;
}
.steps li {
	counter-increment: steps;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 16px;
	font-weight: 800;
}
.steps li::before { content: counter(steps); display: block; color: var(--accent); font-size: 28px; }
.pill-grid, .brand-grid, .benefit-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}
.pill-grid a, .brand-grid span {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 12px 14px;
	text-decoration: none;
	font-weight: 750;
}
.faq-item {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 16px 18px;
	margin-bottom: 12px;
	background: #fff;
}
.faq-item summary { cursor: pointer; font-weight: 850; color: var(--primary); }
.rating { color: #d79a00; }

.cta-final { background: var(--primary); color: #fff; padding: 50px 0; }
.cta-final h2 { color: #fff; }
.site-footer { background: #071b38; color: #dbe7f7; padding: 50px 0 96px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.footer-brand { color: #fff; font-size: 22px; font-weight: 900; margin-bottom: 10px; }
.footer-brand img {
	display: block;
	width: 230px;
	max-width: 100%;
	background: #fff;
	border-radius: var(--radius);
}
.site-footer h2 { color: #fff; font-size: 18px; }
.site-footer a { color: #fff; }
.footer-menu li { margin-bottom: 8px; }
.footer-social, .contact-social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}
.contact-social { gap: 10px; }
.footer-social a, .contact-social a {
	display: grid;
	gap: 1px;
	min-height: 34px;
	padding: 7px 10px;
	border: 1px solid rgba(255,255,255,.24);
	border-radius: var(--radius);
	text-decoration: none;
	background: rgba(255,255,255,.08);
}
.contact-social a {
	min-width: 150px;
	border-color: var(--line);
	background: var(--soft);
	color: var(--primary);
}
.footer-social a:hover, .footer-social a:focus, .contact-social a:hover, .contact-social a:focus {
	background: rgba(255,255,255,.16);
}
.contact-social a:hover, .contact-social a:focus {
	background: #eaf1fb;
}
.social-platform {
	font-size: 11px;
	line-height: 1.2;
	font-weight: 850;
	text-transform: uppercase;
	color: var(--accent);
}
.contact-social .social-platform { color: var(--muted); }
.social-handle {
	font-size: 13px;
	line-height: 1.25;
	font-weight: 850;
	overflow-wrap: anywhere;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 28px; padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.tiny-credit { font-size: 10px; opacity: .45; }
.mobile-bottom-nav { display: none; }
.content-list { display: grid; gap: 18px; }
.text-link { color: var(--primary); font-weight: 800; }

.bmsj-admin .bmsj-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 20px 0;
}
.bmsj-stat {
	background: #fff;
	border: 1px solid #dcdcde;
	padding: 16px;
	border-radius: 6px;
}
.bmsj-stat strong { display: block; font-size: 28px; }
.bmsj-photo-list img { margin: 8px 8px 0 0; border-radius: 6px; }
