:root {
    --navy: #0d1b2a;
    --navy-mid: #112236;
    --navy-light: #1a3050;
    --accent: #c8f04d;
    --accent-dim: #a8cc35;
    --white: #ffffff;
    --off-white: #f5f7f2;
    --text-muted: #8a9bb0;
    --text-body: #cdd8e8;
    --border: rgba(200,240,77,0.15);
    --border-subtle: rgba(255,255,255,0.08);
    --prose-text: #2d3748;
    --prose-muted: #718096;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
  }
/* ── WHATSAPP FLOAT ───────────────────────────────────────────────────────── */
.wa-float{position:fixed;bottom:28px;right:28px;z-index:998;display:flex;align-items:center;gap:10px}
.wa-float a{width:52px;height:52px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.4);transition:transform .2s}
.wa-float a:hover{transform:scale(1.1)}
.wa-float svg{width:28px;height:28px;fill:white}
.wa-tooltip{background:var(--dark);color:white;font-size:12px;font-weight:600;padding:6px 12px;border-radius:6px;opacity:0;transform:translateX(8px);transition:all .2s;pointer-events:none;white-space:nowrap}
.wa-float:hover .wa-tooltip{opacity:1;transform:translateX(0)}
/* ── BREADCRUMB ── */
.breadcrumb {
	padding: 20px 5%;
	background: var(--navy);
}
.breadcrumb-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--text-muted);
}
.breadcrumb-inner a {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.2s;
}
.breadcrumb-inner a:hover {
	color: var(--accent);
}
.breadcrumb-inner span {
	color: var(--border-subtle);
}
/* ── POST HERO (dark) ── */
.post-hero {
	padding: 48px 5% 0;
	background: var(--black);
}
.post-hero-inner {
	max-width: 820px;
	margin: 0 auto;
}
.post-category-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(200,240,77,0.1);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 6px 14px;
	margin-bottom: 24px;
	font-size: 11px;
	font-weight: 600;
	color: var(--accent);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.post-hero h1 {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: clamp(30px, 5vw, 52px);
	font-weight: 700;
	line-height: 1.1;
	color: var(--white);
	margin-bottom: 20px;
}
.post-hero h1 em {
	color: var(--accent);
	font-style: italic;
}
.post-subtitle {
	font-size: 18px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 36px;
	max-width: 640px;
}
.post-meta-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding: 20px 0;
	border-top: 1px solid var(--border-subtle);
}
.post-meta-left {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.author-block {
	display: flex;
	align-items: center;
	gap: 10px;
}
.author-avatar-lg {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), #5fa8d3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: var(--navy);
	flex-shrink: 0;
}
.author-name {
	font-size: 14px;
	font-weight: 500;
	color: var(--white);
}
.author-role {
	font-size: 12px;
	color: var(--text-muted);
}
.post-meta-divider {
	color: var(--border-subtle);
}
.post-meta-info {
	font-size: 13px;
	color: var(--text-muted);
}
.post-share {
	display: flex;
	align-items: center;
	gap: 10px;
}
.share-btn {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	border: 1px solid var(--border-subtle);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: 12px;
	text-decoration: none;
	background: transparent;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s;
	font-family: 'DM Sans', sans-serif;
}
.share-btn:hover {
	border-color: var(--accent);
	color: var(--accent);
}
/* ── HERO IMAGE BLOCK ── */
.hero-image-block {
	max-width: 820px;
	margin: 0 auto;
	background: var(--black);
}
.hero-image-block .img-card {
	background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
  margin: 0 0 50px 0;
}
.img-card-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 30% 50%, rgba(200,240,77,0.07) 0%, transparent 70%);
}
.img-card-content {
	position: relative;
	z-index: 1;
	text-align: center;
}
.img-card-icon {
	font-size: 80px;
	display: block;
	margin-bottom: 16px;
}
.img-card-label {
	font-size: 13px;
	color: var(--text-muted);
	letter-spacing: 0.05em;
}
/* ── ARTICLE BODY (white) ── */
.article-wrap {
	background: var(--white);
	padding: 60px 5% 80px;
}
.article-layout {
	max-width: 1200px;
	margin: 0 auto;
	/*display: grid;*/
	grid-template-columns: 1fr 300px;
	gap: 64px;
	align-items: start;
}
.article-body {
	font-size: 17px;
	color: var(--prose-text);
	line-height: 1.85;
}
.article-body h2 {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: var(--navy);
	margin: 44px 0 16px;
	line-height: 1.2;
}
.article-body h3 {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--navy);
	margin: 32px 0 12px;
}
.article-body p {
	margin-bottom: 20px;
}
.article-body ul, .article-body ol {
	margin: 20px 0 24px 24px;
}
.article-body li {
	margin-bottom: 10px;
}
.article-body strong {
	font-weight: 600;
	color: var(--navy);
}
.article-body em {
	font-style: italic;
}
.article-body a {
	color: var(--accent-dim);
	text-decoration: underline;
}
/* Callout box */
.callout {
	background: var(--navy);
	border-left: 3px solid var(--accent);
	border-radius: 0 12px 12px 0;
	padding: 20px 24px;
	margin: 28px 0;
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	color: var(--text-body);
	line-height: 1.65;
}
.callout strong {
	color: var(--accent);
}
/* Stat callout */
.stat-callout {
	background: var(--off-white);
	border-radius: 12px;
	padding: 28px 32px;
	margin: 32px 0;
	text-align: center;
}
.stat-callout .big-num {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 56px;
	font-weight: 700;
	color: var(--navy);
	line-height: 1;
	margin-bottom: 8px;
}
.stat-callout .big-num span {
	color: var(--accent-dim);
}
.stat-callout p {
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	color: var(--prose-muted);
	margin: 0;
}
/* Step list */
.step-list {
	list-style: none;
	margin: 20px 0 28px;
	padding: 0;
}
.step-list li {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
	font-family: 'DM Sans', sans-serif;
}
.step-num {
	width: 32px;
	height: 32px;
	background: var(--navy);
	color: var(--accent);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 2px;
}
.step-content strong {
	display: block;
	font-weight: 600;
	color: var(--navy);
	font-size: 15px;
	margin-bottom: 4px;
}
.step-content {
	font-size: 15px;
	color: var(--prose-text);
	line-height: 1.65;
}
/* Tags -->
  .article-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px;
    padding-top: 28px; border-top: 1px solid #e8ecf0;
  }
  .article-tag {
    padding: 6px 14px; border: 1.5px solid #d0d8e0; border-radius: 100px;
    font-size: 12px; color: var(--prose-muted); font-family: 'DM Sans', sans-serif;
  }

  /* ── SIDEBAR ── */
.sidebar {
	position: sticky;
	top: 88px;
}
.sidebar-card {
	background: var(--navy);
	border-radius: 16px;
	padding: 28px 24px;
	margin-bottom: 20px;
}
.sidebar-card h4 {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 16px;
}
.toc-list {
	list-style: none;
	padding: 0;
}
.toc-list li {
	margin-bottom: 10px;
}
.toc-list a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 13px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.5;
	transition: color 0.2s;
}
.toc-list a::before {
	content: '—';
	color: var(--border);
	flex-shrink: 0;
}
.toc-list a:hover {
	color: var(--accent);
}
.sidebar-cta {
	background: var(--accent);
	border-radius: 16px;
	padding: 28px 24px;
}
.sidebar-cta h4 {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 10px;
	line-height: 1.2;
}
.sidebar-cta p {
	font-size: 13px;
	color: rgba(13,27,42,0.75);
	margin-bottom: 20px;
	line-height: 1.6;
}
.sidebar-cta a {
	display: block;
	background: var(--navy);
	color: var(--accent);
	text-align: center;
	padding: 12px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s;
}
.sidebar-cta a:hover {
	background: var(--navy-light);
}
.sidebar-author {
	background: var(--navy-mid);
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	padding: 24px;
	margin-bottom: 20px;
}
.sidebar-author h4 {
	font-size: 12px;
	font-weight: 600;
	color: var(--accent);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.author-block-sm {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
.sidebar-author p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
}
/* ── RELATED (white section) ── */
.related-section {
	background: var(--white);
	padding: 72px 5%;
	border-top: 1px solid #e8ecf0;
}
.related-inner {
	max-width: 1200px;
	margin: 0 auto;
}
.related-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}
.related-header h2 {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--navy);
}
.related-header a {
	font-size: 14px;
	color: var(--accent-dim);
	text-decoration: none;
}
.related-header a:hover {
	text-decoration: underline;
}
.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.related-card {
	border: 1.5px solid #e8ecf0;
	border-radius: 14px;
	overflow: hidden;
	transition: border-color 0.2s, transform 0.2s;
	cursor: pointer;
}
.related-card:hover {
	border-color: var(--navy);
	transform: translateY(-3px);
}
.related-thumb {
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 44px;
	background: var(--off-white);
}
.related-body {
	padding: 20px;
}
.related-tag {
	font-size: 11px;
	font-weight: 600;
	color: var(--accent-dim);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}
.related-body h3 {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.3;
	margin-bottom: 10px;
}
.related-meta {
	font-size: 12px;
	color: var(--prose-muted);
}
/* ── CTA BAND (dark) ── */
.cta-band {
	background: var(--navy);
	padding: 72px 5%;
	text-align: center;
}
.cta-band-inner {
	max-width: 620px;
	margin: 0 auto;
}
.cta-band h2 {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 700;
	color: var(--white);
	line-height: 1.15;
	margin-bottom: 16px;
}
.cta-band h2 em {
	color: var(--accent);
	font-style: italic;
}
.cta-band p {
	font-size: 16px;
	color: var(--text-muted);
	margin-bottom: 32px;
	line-height: 1.65;
}
.cta-band .btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--accent);
	color: var(--navy);
	padding: 16px 32px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s;
}
.cta-band .btn-primary:hover {
	background: var(--accent-dim);
	transform: translateY(-2px);
}
/* ── RESPONSIVE ── */
@media (max-width: 960px) {
.article-layout {
	grid-template-columns: 1fr;
}
.sidebar {
	position: static;
	display: none;
}
.related-grid {
	grid-template-columns: repeat(2, 1fr);
}
.nav-links, .nav-cta {
	display: none;
}
.hamburger {
	display: flex;
}
}

@media (max-width: 600px) {
.related-grid {
	grid-template-columns: 1fr;
}
.post-meta-bar {
	flex-direction: column;
	align-items: flex-start;
}
.hero-image-block .img-card {
	height: 220px;
}
}