/* ============================================================
   MÉTODO JSD — JOELHO SEM DOR
   Design System oficial (baseado no Brandbook v1.0)
   Navy #1B2558 · Gold #C9A84C · Playfair / Lato / Montserrat
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Navy */
  --navy: #1B2558;
  --navy-dark: #111840;
  --navy-light: #2A3A80;
  --navy-pastel: #D4D9EF;
  /* Gold */
  --gold: #C9A84C;
  --gold-dark: #9E7B28;
  --gold-light: #E8C878;
  --gold-pastel: #F8F0D4;
  /* Neutros */
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --sand: #E8E6E1;
  --gray-300: #D1CFC9;
  --gray-500: #9E9B94;
  --gray-700: #5A5854;
  --gray-900: #2A2926;
  /* WhatsApp */
  --whats: #25D366;
  /* Fontes */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', Arial, Helvetica, sans-serif;
  --font-ui: 'Montserrat', 'Trebuchet MS', Arial, sans-serif;
  /* Layout */
  --container: 1200px;
  --reading: 720px;
  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(27,37,88,.18);
  --shadow-gold: 0 10px 30px rgba(201,168,76,.28);
  --transition: .22s ease;
  --header-h: 76px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

/* ---------- TIPOGRAFIA ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
p { margin-bottom: 1rem; }
strong { font-weight: 700; color: inherit; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: .72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--gold-light); }

.lead { font-size: 1.18rem; color: var(--gray-700); line-height: 1.75; }
.muted { color: var(--gray-500); }
.gold-text { color: var(--gold-dark); }
.divider { width: 52px; height: 3px; background: var(--gold); border-radius: 2px; margin: 18px 0; }
.center .divider, .text-center .divider { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy-grad { background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 130%); color: var(--white); }
.bg-off { background: var(--off-white); }
.bg-gold-soft { background: var(--gold-pastel); }
.bg-navy h1, .bg-navy h2, .bg-navy h3,
.bg-navy-grad h1, .bg-navy-grad h2, .bg-navy-grad h3 { color: var(--white); }
.bg-navy .lead, .bg-navy-grad .lead { color: rgba(255,255,255,.82); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 700; font-size: .92rem;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 16px 32px; border-radius: var(--radius);
  transition: var(--transition); cursor: pointer; text-align: center;
  line-height: 1.1;
}
.btn-primary { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(201,168,76,.42); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--navy); }
.on-dark .btn-outline, .bg-navy .btn-outline, .bg-navy-grad .btn-outline { color: var(--white); }
.btn-outline:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-whats { background: var(--whats); color: #fff; }
.btn-whats:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-lg { padding: 19px 42px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-group.center { justify-content: center; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.07); border-bottom-color: var(--sand); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand-fallback { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: var(--navy); letter-spacing: 1px; }
.brand-fallback span { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--font-ui); font-weight: 500; font-size: .9rem; color: var(--navy);
  position: relative; transition: var(--transition); letter-spacing: .3px;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav a:hover, .nav a.active { color: var(--gold-dark); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1100; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

body { padding-top: var(--header-h); }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; padding: 96px 0 104px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 78% 18%, rgba(201,168,76,.18) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .hl { color: var(--gold-light); }
.hero .lead { max-width: 560px; margin-bottom: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 34px; }
.hero-trust .item { display: flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-size: .82rem; color: rgba(255,255,255,.82); font-weight: 500; }
.hero-trust .item svg { width: 20px; height: 20px; color: var(--gold-light); flex-shrink: 0; }
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.32);
  border-radius: var(--radius-xl); padding: 36px; backdrop-filter: blur(4px);
}
.hero-card .stat { display: flex; align-items: baseline; gap: 10px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-card .stat:last-child { border-bottom: none; }
.hero-card .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.hero-card .stat-label { font-family: var(--font-ui); font-size: .82rem; color: rgba(255,255,255,.78); line-height: 1.4; }

/* ---------- CARDS ---------- */
.card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow); border-top: 3px solid var(--gold);
  transition: var(--transition); height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card .icon svg { width: 28px; height: 28px; color: var(--gold-light); }
.card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.card p { font-size: .98rem; color: var(--gray-700); margin-bottom: 0; }

/* pain chips / list */
.pain-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.pain-chip {
  font-family: var(--font-ui); font-size: .85rem; font-weight: 500;
  background: var(--white); border: 1px solid var(--sand); color: var(--gray-700);
  padding: 11px 18px; border-radius: 30px; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.pain-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.pain-chip:hover { border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* numbered steps */
.step { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); position: relative; height: 100%; }
.step .step-num {
  font-family: var(--font-display); font-weight: 900; font-size: 2.6rem;
  color: var(--gold); line-height: 1; margin-bottom: 12px; display: block;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: .96rem; color: var(--gray-700); margin-bottom: 0; }

/* feature with check */
.check-list li { display: flex; gap: 14px; padding: 12px 0; align-items: flex-start; }
.check-list li svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.check-list li span { color: var(--gray-700); }
.bg-navy .check-list li span, .bg-navy-grad .check-list li span { color: rgba(255,255,255,.85); }

/* quote / testimonial */
.quote {
  font-family: var(--font-display); font-style: italic; font-size: 1.5rem;
  color: var(--navy); line-height: 1.5; border-left: 4px solid var(--gold);
  padding: 8px 0 8px 28px; margin: 28px 0;
}
.bg-navy .quote, .bg-navy-grad .quote { color: #fff; }
.testimonial { background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); border-top: 3px solid var(--gold); height: 100%; }
.testimonial .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }
.testimonial p { font-style: italic; color: var(--gray-700); font-size: 1.02rem; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial .avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--gold)); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-weight: 700; flex-shrink: 0; }
.testimonial .who-name { font-family: var(--font-ui); font-weight: 700; font-size: .9rem; color: var(--navy); }
.testimonial .who-meta { font-size: .8rem; color: var(--gray-500); }

/* ---------- CTA BANNER ---------- */
.cta-banner { text-align: center; }
.cta-banner h2 { margin-bottom: 16px; max-width: 760px; margin-left: auto; margin-right: auto; }
.cta-banner .lead { max-width: 620px; margin: 0 auto 30px; }

/* ---------- AUTHORITY / BIO ---------- */
.bio-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.bio-photo { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); border-radius: var(--radius-xl); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.bio-photo .ph-label { text-align: center; color: rgba(255,255,255,.5); font-family: var(--font-ui); font-size: .8rem; padding: 20px; }
.bio-photo .mono { font-family: var(--font-display); font-weight: 900; font-size: 4rem; color: rgba(255,255,255,.9); }
.bio-photo .mono span { color: var(--gold); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.7); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.site-footer h4 { color: #fff; font-family: var(--font-ui); font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.site-footer .brand-fallback { color: #fff; margin-bottom: 14px; }
.site-footer p { font-size: .92rem; line-height: 1.7; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: .92rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a svg { width: 20px; height: 20px; color: #fff; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social a:hover svg { color: var(--navy); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: var(--gold-light); }
.footer-disclaimer { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 14px; line-height: 1.6; max-width: 540px; }

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1200;
  display: flex; align-items: center; gap: 0;
  background: var(--whats); color: #fff; border-radius: 50px;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  padding: 0; height: 60px; overflow: hidden; transition: var(--transition);
}
.wa-float svg { width: 30px; height: 30px; margin: 0 15px; flex-shrink: 0; }
.wa-float .wa-label { font-family: var(--font-ui); font-weight: 700; font-size: .9rem; white-space: nowrap; max-width: 0; overflow: hidden; transition: max-width .3s ease, padding .3s ease; padding: 0; }
.wa-float:hover { box-shadow: 0 10px 34px rgba(37,211,102,.6); }
.wa-float:hover .wa-label { max-width: 220px; padding-right: 22px; }
.wa-pulse { position: absolute; inset: 0; border-radius: 50px; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: wapulse 2.4s infinite; }
@keyframes wapulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- PAGE HERO (interior) ---------- */
.page-hero { padding: 64px 0 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 85% 10%, rgba(201,168,76,.16) 0%, transparent 55%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 880px; }
.page-hero .lead { max-width: 680px; margin-top: 18px; }
.breadcrumb { font-family: var(--font-ui); font-size: .78rem; letter-spacing: .5px; margin-bottom: 22px; color: rgba(255,255,255,.6); }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- BLOG INDEX ---------- */
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-chip {
  font-family: var(--font-ui); font-size: .82rem; font-weight: 600; letter-spacing: .5px;
  padding: 10px 20px; border-radius: 30px; border: 1.5px solid var(--sand);
  color: var(--gray-700); background: #fff; transition: var(--transition);
}
.filter-chip:hover { border-color: var(--gold); color: var(--navy); }
.filter-chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.post-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; height: 100%; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy-dark), var(--navy)); position: relative; display: flex; align-items: center; justify-content: center; padding: 24px; }
.post-thumb .pt-cat { position: absolute; top: 14px; left: 14px; font-family: var(--font-ui); font-size: .66rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--navy); background: var(--gold); padding: 5px 12px; border-radius: 20px; }
.post-thumb .pt-title { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.12rem; line-height: 1.35; text-align: center; }
.post-thumb .pt-mono { position: absolute; bottom: 12px; right: 16px; font-family: var(--font-display); font-weight: 900; color: rgba(201,168,76,.5); font-size: 1.1rem; }
.post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-body .p-cat { font-family: var(--font-ui); font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--gold-dark); margin-bottom: 10px; }
.post-body h3 { font-size: 1.18rem; margin-bottom: 10px; line-height: 1.3; }
.post-body h3 a:hover { color: var(--gold-dark); }
.post-body p { font-size: .94rem; color: var(--gray-700); flex: 1; }
.post-meta { display: flex; align-items: center; gap: 14px; margin-top: 16px; font-family: var(--font-ui); font-size: .78rem; color: var(--gray-500); }
.post-meta .read-more { margin-left: auto; color: var(--gold-dark); font-weight: 700; }
.no-results { text-align: center; padding: 48px; color: var(--gray-500); font-family: var(--font-ui); display: none; }

/* ---------- ARTICLE ---------- */
.article { padding: 56px 0 72px; }
.article-wrap { max-width: var(--reading); margin: 0 auto; }
.article-head { max-width: var(--reading); margin: 0 auto 36px; }
.article-cat { font-family: var(--font-ui); font-size: .74rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; color: var(--gold-dark); margin-bottom: 14px; display: block; }
.article-head h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 18px; }
.article-head .lead { color: var(--gray-700); }
.article-byline { display: flex; align-items: center; gap: 14px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--sand); }
.article-byline .avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--gold)); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-weight: 700; }
.article-byline .b-name { font-family: var(--font-ui); font-weight: 700; font-size: .92rem; color: var(--navy); }
.article-byline .b-meta { font-size: .82rem; color: var(--gray-500); }
.article-cover { aspect-ratio: 1200/560; background: linear-gradient(135deg, var(--navy-dark), var(--navy)); border-radius: var(--radius-lg); margin: 0 auto 40px; max-width: 980px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.article-cover .cover-mono { font-family: var(--font-display); font-weight: 900; font-size: 3rem; color: rgba(255,255,255,.92); }
.article-cover .cover-mono span { color: var(--gold); }
.article-cover .cover-tag { position: absolute; bottom: 18px; font-family: var(--font-ui); font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }

.article-body { font-size: 1.12rem; line-height: 1.85; color: var(--gray-700); }
.article-body > * { max-width: var(--reading); margin-left: auto; margin-right: auto; }
.article-body h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 44px auto 18px; color: var(--navy); }
.article-body h3 { font-family: var(--font-ui); font-weight: 700; font-size: 1.2rem; color: var(--navy); margin: 32px auto 12px; }
.article-body p { margin-bottom: 22px; }
.article-body ul, .article-body ol { margin: 0 auto 22px; padding-left: 26px; max-width: var(--reading); }
.article-body ul li, .article-body ol li { margin-bottom: 10px; }
.article-body ul li { list-style: none; position: relative; padding-left: 26px; }
.article-body ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.article-body ol { counter-reset: olc; }
.article-body ol li { list-style: none; position: relative; padding-left: 38px; counter-increment: olc; }
.article-body ol li::before { content: counter(olc); position: absolute; left: 0; top: -2px; width: 26px; height: 26px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-ui); font-size: .82rem; font-weight: 700; }
.article-body blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.45rem; color: var(--navy); border-left: 4px solid var(--gold); padding: 6px 0 6px 26px; margin: 32px auto; }
.article-body a:not(.btn) { color: var(--gold-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.article-body img { border-radius: var(--radius-lg); margin: 28px auto; }
.article-body strong { color: var(--navy); }

.callout { background: var(--gold-pastel); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 24px 28px; margin: 32px auto; }
.callout p { margin-bottom: 0; color: var(--gray-900); font-size: 1.02rem; }
.callout .callout-title { font-family: var(--font-ui); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: .78rem; color: var(--gold-dark); margin-bottom: 8px; display: block; }

.warn { background: #FFF5F5; border-left: 4px solid #C62828; }
.warn .callout-title { color: #C62828; }

/* inline CTA inside article */
.inline-cta { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: #fff; border-radius: var(--radius-lg); padding: 34px; margin: 40px auto; text-align: center; box-shadow: var(--shadow-lg); }
.inline-cta h3 { color: #fff; font-family: var(--font-display); margin-bottom: 10px; font-size: 1.5rem; }
.inline-cta p { color: rgba(255,255,255,.82); margin-bottom: 22px; font-size: 1rem; }

/* YouTube responsive embed */
.embed { position: relative; padding-bottom: 56.25%; height: 0; margin: 28px auto; max-width: var(--reading); border-radius: var(--radius-lg); overflow: hidden; }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* share + tags */
.article-foot { max-width: var(--reading); margin: 44px auto 0; padding-top: 28px; border-top: 1px solid var(--sand); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tags a { font-family: var(--font-ui); font-size: .76rem; background: var(--off-white); color: var(--gray-700); padding: 7px 14px; border-radius: 20px; border: 1px solid var(--sand); }
.tags a:hover { border-color: var(--gold); color: var(--navy); }
.share { display: flex; align-items: center; gap: 12px; }
.share span { font-family: var(--font-ui); font-size: .8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; }
.share a { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.share a svg { width: 18px; height: 18px; color: #fff; }
.share a:hover { background: var(--gold); }
.share a:hover svg { color: var(--navy); }

/* related */
.related { background: var(--off-white); }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border-radius: var(--radius-lg); margin-bottom: 14px; box-shadow: var(--shadow); overflow: hidden; max-width: 820px; margin-left: auto; margin-right: auto; }
.faq-q { width: 100%; text-align: left; padding: 22px 26px; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .ic { flex-shrink: 0; width: 24px; height: 24px; position: relative; transition: var(--transition); }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; }
.faq-q .ic::before { width: 16px; height: 2.5px; top: 11px; left: 4px; }
.faq-q .ic::after { width: 2.5px; height: 16px; top: 4px; left: 11px; transition: var(--transition); }
.faq-item.open .faq-q .ic::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--gray-700); }
.faq-item.open .faq-a { max-height: 600px; }

/* ---------- CONTACT FORM ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-ui); font-size: .82rem; font-weight: 600; color: var(--navy); letter-spacing: .3px; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 14px 16px;
  border: 1.5px solid var(--sand); border-radius: var(--radius); background: #fff;
  color: var(--gray-900); transition: var(--transition); width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(201,168,76,.15); }
.form-note { font-size: .82rem; color: var(--gray-500); margin-top: 10px; }
.form-ok { display: none; margin-top: 18px; padding: 16px 20px; border-radius: var(--radius); background: #E8F5E9; border-left: 4px solid #2E7D32; color: #1B5E20; font-size: .96rem; }
.form-ok strong { display: block; font-family: var(--font-ui); margin-bottom: 3px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info .ci-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--sand); align-items: flex-start; }
.contact-info .ci-item:last-child { border-bottom: none; }
.contact-info .ci-ic { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info .ci-ic svg { width: 22px; height: 22px; color: var(--gold-light); }
.contact-info .ci-label { font-family: var(--font-ui); font-size: .74rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-500); font-weight: 700; margin-bottom: 3px; }
.contact-info .ci-val { font-size: 1.05rem; color: var(--navy); font-weight: 600; }
.contact-info .ci-val a:hover { color: var(--gold-dark); }

/* newsletter */
.news-form { display: flex; gap: 12px; max-width: 520px; margin-top: 24px; }
.news-form input { flex: 1; padding: 15px 18px; border-radius: var(--radius); border: none; font-family: var(--font-body); font-size: 1rem; }
.news-form input:focus { outline: none; box-shadow: 0 0 0 3px rgba(201,168,76,.4); }

/* ---------- VALUE / PRICE CARD ---------- */
.price-card { background: linear-gradient(140deg, var(--navy-dark), var(--navy)); border-radius: var(--radius-xl); padding: 44px; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; border: 1px solid rgba(201,168,76,.3); }
.price-card .pc-badge { display: inline-block; background: var(--gold); color: var(--navy); font-family: var(--font-ui); font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; }
.price-card h3 { color: #fff; font-size: 1.8rem; margin-bottom: 6px; }
.price-card .pc-sub { color: rgba(255,255,255,.7); margin-bottom: 24px; }
.price-card .pc-list li { display: flex; gap: 12px; padding: 9px 0; align-items: flex-start; }
.price-card .pc-list li svg { width: 22px; height: 22px; color: var(--gold-light); flex-shrink: 0; }
.price-card .pc-list li span { color: rgba(255,255,255,.88); font-size: .98rem; }

/* logos/credibility strip */
.cred-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; align-items: center; }
.cred-strip .cred { display: flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-size: .85rem; font-weight: 600; color: var(--navy); }
.cred-strip .cred svg { width: 22px; height: 22px; color: var(--gold-dark); }

/* utilities */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .bio-grid { grid-template-columns: 1fr; gap: 32px; }
  .bio-photo { max-width: 360px; aspect-ratio: 4/4; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: 0; right: 0; height: 100vh; overflow-y: auto; width: min(80vw, 320px);
    background: var(--navy-dark); flex-direction: column; align-items: flex-start;
    padding: calc(var(--header-h) + 24px) 32px 32px; gap: 6px;
    transform: translateX(100%); transition: transform .3s ease; z-index: 1050;
    box-shadow: -8px 0 40px rgba(0,0,0,.3);
  }
  .nav.open { transform: translateX(0); }
  .nav a { color: #fff; font-size: 1.05rem; padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav a::after { display: none; }
  .nav a:hover, .nav a.active { color: var(--gold-light); }
  .nav .btn { margin-top: 16px; width: 100%; }
  .header-cta .btn:not(.nav-toggle) { display: none; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(17,24,64,.5); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 1040; }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .news-form { flex-direction: column; }
  .hero { padding: 64px 0 72px; }
  .article-body { font-size: 1.06rem; }
  .wa-float .wa-label { display: none; }
  .btn { padding: 15px 26px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .quote { font-size: 1.25rem; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* print */
@media print {
  .site-header, .wa-float, .nav-toggle, .inline-cta, .cta-banner { display: none; }
  body { padding-top: 0; }
}
