/* Trusted Executive — AI for Work Productivity landing page */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Noto+Serif+SC:wght@400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;600;700&display=swap');

:root {
  /* Core palette */
  --midnight: #0F2744;         /* deep midnight blue */
  --midnight-soft: #1A3556;    /* lighter midnight for depth */
  --midnight-deep: #081A30;    /* near-black for footer */
  --slate: #4A5568;            /* warm slate gray body text */
  --slate-soft: #6B7280;       /* secondary text */
  --slate-line: #D5D4CE;       /* hairline rules */
  --gold: #B08738;             /* antique gold — CTAs, accents */
  --gold-soft: #D4B572;        /* lighter gold for hover/highlight */
  --gold-pale: #F5EBD3;        /* pale gold tint bg */
  --paper: #FBF9F4;            /* off-white page bg */
  --paper-warm: #F3EEE3;       /* section alt bg */
  --ink: #1A1D24;              /* near-black headline ink */
  --white: #FFFFFF;

  --serif: 'EB Garamond', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Chinese: swap to Noto Serif/Sans SC when html[lang="zh"] */
html[lang="zh"] {
  --serif: 'Noto Serif SC', 'EB Garamond', Georgia, serif;
  --sans: 'Noto Sans SC', 'Inter', -apple-system, sans-serif;
}
html[lang="zh"] h1, html[lang="zh"] h2, html[lang="zh"] h3, html[lang="zh"] h4 {
  letter-spacing: 0;
  font-weight: 600;
}
html[lang="zh"] .hero-sub,
html[lang="zh"] .problem-body,
html[lang="zh"] .pullquote,
html[lang="zh"] .faq-a-inner,
html[lang="zh"] em {
  font-style: normal;
}
html[lang="zh"] .chapter-num,
html[lang="zh"] .tl-time,
html[lang="zh"] .price-amount,
html[lang="zh"] .signature,
html[lang="zh"] .hero h1 .accent,
html[lang="zh"] .outcome-num,
html[lang="zh"] .gift-num,
html[lang="zh"] .hero-stamp-inner strong {
  font-family: 'EB Garamond', Georgia, serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--slate);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

/* ───── Typography ───── */

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(32px, 6vw, 52px); line-height: 1.08; }
h2 { font-size: clamp(26px, 5vw, 40px); line-height: 1.12; }
h3 { font-size: clamp(20px, 3.2vw, 26px); line-height: 1.2; }

p { margin: 0 0 1em; }
em { font-family: var(--serif); font-style: italic; color: var(--midnight); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  position: relative;
  padding-left: 34px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--gold);
}

.body-lg { font-size: 17px; line-height: 1.65; color: var(--slate); }
.body-sm { font-size: 14px; line-height: 1.55; color: var(--slate-soft); }

/* ───── Layout scaffolding ───── */

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 900px) {
  .container { max-width: 960px; padding: 0 40px; }
  .container-narrow { max-width: 720px; margin: 0 auto; }
}

section {
  padding: 68px 0;
}
section.pad-sm { padding: 48px 0; }
section.dark {
  background: var(--midnight);
  color: rgba(255,255,255,0.82);
}
section.dark h1, section.dark h2, section.dark h3 { color: var(--white); }
section.dark .eyebrow { color: var(--gold-soft); }
section.dark .eyebrow::before { background: var(--gold-soft); }
section.warm { background: var(--paper-warm); }

/* ───── Top bar ───── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 249, 244, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  max-width: 960px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.logo-mark {
  width: 32px; height: 32px;
  border: 1.5px solid var(--midnight);
  background: var(--midnight);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
}
.logo-text {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.logo-text small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-top: 4px;
}
.top-cta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--midnight);
  text-decoration: none;
  border: 1px solid var(--midnight);
  padding: 8px 14px;
  border-radius: 2px;
  transition: all 0.2s;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.top-cta:visited, .top-cta:link { text-decoration: none; }
.top-cta:hover { background: var(--midnight); color: var(--gold-soft); }

/* ───── Buttons ───── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  min-height: 54px;
}
.btn-primary {
  background: var(--gold);
  color: var(--midnight-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(176, 135, 56, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--midnight);
  border-color: var(--midnight);
}
.btn-ghost:hover {
  background: var(--midnight);
  color: var(--gold-soft);
}
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}
.btn-full { width: 100%; }
.btn .ico { font-size: 16px; line-height: 1; }

/* ───── Chapter markers ───── */

.chapter-open {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.chapter-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.chapter-divider {
  flex: 1;
  height: 1px;
  background: var(--slate-line);
}
.chapter-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate);
}
section.dark .chapter-num { color: var(--gold-soft); }
section.dark .chapter-divider { background: rgba(255,255,255,0.15); }
section.dark .chapter-label { color: rgba(255,255,255,0.7); }

/* ───── Hero ───── */

.hero {
  padding: 54px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
  }
}
.hero-pre {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--slate-line);
}
.hero-pre .dot { color: var(--gold); margin: 0 8px; }
.hero h1 {
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(18px, 2.6vw, 22px);
  line-height: 1.5;
  color: var(--slate);
  margin-bottom: 32px;
  font-weight: 400;
  font-style: italic;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
@media (min-width: 500px) {
  .hero-cta-row { flex-direction: row; flex-wrap: wrap; }
}
.hero-trust {
  font-size: 13px;
  color: var(--slate-soft);
  letter-spacing: 0.02em;
}
.hero-trust .sep { color: var(--gold); margin: 0 10px; }

.hero-visual {
  position: relative;
}
.hero-photo {
  aspect-ratio: 16/9;
  max-height: 340px;
  background: var(--midnight);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(15, 39, 68, 0.35);
}
.hero-photo::before,
.hero-photo::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero-photo::before {
  inset: 0;
  background: linear-gradient(to top, rgba(8,26,48,0.55) 0%, rgba(8,26,48,0.08) 60%, transparent 100%);
}
.hero-photo::after {
  inset: 14px;
  border: 1px solid rgba(212, 181, 114, 0.3);
}
.hero-photo-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 32px;
}
.hero-photo-label .mono {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--gold-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-photo-label .desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 220px;
  line-height: 1.4;
}
.hero-photo-deco {
  position: absolute;
  z-index: 3;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: var(--midnight-deep);
  padding: 6px 12px;
  border: 1px solid rgba(212, 181, 114, 0.35);
  bottom: 22px; left: 22px;
}

.hero-stamp {
  position: absolute;
  top: -22px;
  right: -14px;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  transform: rotate(-8deg);
  z-index: 4;
  box-shadow: 0 6px 18px -6px rgba(176, 135, 56, 0.4);
}
.hero-stamp::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(176, 135, 56, 0.4);
}
.hero-stamp-inner {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.hero-stamp-inner strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
  margin: 4px 0 4px;
  line-height: 1;
}
.hero-stamp-inner small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-soft);
  font-weight: 500;
}

/* ───── Problem ───── */

.problem-body {
  font-family: var(--serif);
  font-size: clamp(19px, 2.4vw, 22px);
  line-height: 1.55;
  color: var(--slate);
  max-width: 640px;
}
.problem-body p + p { margin-top: 1.4em; }
.problem-body p { margin-bottom: 0; }
.trainer-grid p + p { margin-top: 1.2em; }
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--midnight);
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
  line-height: 1.4;
}

/* ───── Outcomes ───── */

.outcomes-grid {
  display: grid;
  gap: 1px;
  background: var(--slate-line);
  margin-top: 40px;
  border: 1px solid var(--slate-line);
}
@media (min-width: 700px) {
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .outcomes-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.outcome {
  background: var(--paper);
  padding: 32px 26px;
  position: relative;
  transition: background 0.25s;
}
.outcome:hover { background: var(--white); }
.outcome-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.outcome h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--midnight);
}
.outcome p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0;
}

/* ───── Programme timeline ───── */

.timeline {
  margin-top: 42px;
  position: relative;
}
.tl-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--slate-line);
  position: relative;
}
.tl-row:last-child { border-bottom: 0; }
.tl-time {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  font-weight: 500;
  padding-top: 2px;
  letter-spacing: 0.01em;
}
.tl-body h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--midnight);
}
.tl-body p {
  font-size: 14.5px;
  color: var(--slate);
  margin: 0;
  line-height: 1.55;
}
.tl-row.bonus {
  background: linear-gradient(90deg, var(--gold-pale) 0%, transparent 100%);
  margin: 16px -22px;
  padding: 22px;
  border: 1px solid rgba(176, 135, 56, 0.3);
  border-radius: 2px;
}
.tl-row.bonus .tl-time { color: var(--midnight); }
.bonus-ribbon {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--midnight);
  color: var(--gold-soft);
  padding: 3px 10px;
  margin-bottom: 8px;
  border-radius: 2px;
}

/* ───── Gifts ───── */

.gifts-grid {
  margin-top: 40px;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 700px) {
  .gifts-grid { grid-template-columns: 1fr 1fr; }
  .gifts-grid > *:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
}
.gift-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 24px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.gift-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--gold-soft);
  line-height: 1;
  padding-top: 4px;
}
.gift-body h3 {
  color: var(--white);
  font-size: 19px;
  margin-bottom: 4px;
}
.gift-body p {
  color: rgba(255,255,255,0.72);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}
.gift-tag {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(212, 181, 114, 0.4);
  padding: 3px 8px;
  white-space: nowrap;
  margin-top: 6px;
}

/* ───── Trainer ───── */

.trainer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .trainer-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
  }
}
.trainer-photo {
  aspect-ratio: 3/4;
  background: var(--midnight);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px -16px rgba(15, 39, 68, 0.3);
}
.trainer-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--midnight-soft), var(--midnight-deep));
}
.trainer-photo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 181, 114, 0.3);
}
.trainer-photo .label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  padding: 24px;
  font-size: 15px;
  z-index: 2;
}
.trainer-photo .label small {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 181, 114, 0.7);
  font-style: normal;
  display: block;
  margin-bottom: 10px;
}

.credentials {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-line);
}
.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--slate);
  text-transform: uppercase;
}
.credentials-list li {
  display: flex;
  align-items: center;
}
.credentials-list li:not(:last-child)::after {
  content: "·";
  color: var(--gold);
  margin: 0 14px;
  font-size: 18px;
}
.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--midnight);
  margin-top: 24px;
  letter-spacing: 0.02em;
}

/* ───── FAQ ───── */

.faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--slate-line);
}
.faq-item {
  border-bottom: 1px solid var(--slate-line);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 26px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(19px, 2.5vw, 22px);
  font-weight: 500;
  color: var(--midnight);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.3;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .plus {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
  font-weight: 400;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 0 26px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
}

/* ───── Pricing ───── */

.pricing-grid {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}
@media (min-width: 820px) {
  .pricing-grid { grid-template-columns: 1fr 1.1fr 1fr; gap: 0; align-items: stretch; }
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--slate-line);
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 820px) {
  .price-card:nth-child(1) { border-right: 0; }
  .price-card:nth-child(3) { border-left: 0; }
}
.price-card.featured {
  background: var(--midnight);
  color: rgba(255,255,255,0.85);
  border-color: var(--midnight);
  padding: 48px 28px 40px;
  margin: -8px 0;
  z-index: 2;
  box-shadow: 0 24px 56px -20px rgba(15, 39, 68, 0.4);
}
.price-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--midnight-deep);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  white-space: nowrap;
}
.price-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 20px;
}
.featured .price-name { color: var(--gold-soft); }
.price-amount {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  color: var(--midnight);
  line-height: 1;
  letter-spacing: -0.02em;
}
.featured .price-amount { color: var(--white); }
.price-amount .currency {
  font-size: 22px;
  vertical-align: top;
  color: var(--slate);
  font-style: italic;
  padding-right: 4px;
}
.featured .price-amount .currency { color: var(--gold-soft); }
.price-unit {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--slate-soft);
  margin-top: 10px;
  margin-bottom: 24px;
}
.featured .price-unit { color: rgba(255,255,255,0.7); }
.price-note {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate);
  padding-top: 20px;
  border-top: 1px solid var(--slate-line);
  margin-top: auto;
}
.featured .price-note {
  color: rgba(255,255,255,0.75);
  border-top-color: rgba(255,255,255,0.15);
}

.includes {
  margin-top: 48px;
  padding: 32px;
  background: var(--paper-warm);
  border-left: 2px solid var(--gold);
}
.includes h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 18px;
}
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
@media (min-width: 700px) {
  .includes-list { grid-template-columns: 1fr 1fr; gap: 12px 32px; }
}
.includes-list li {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--midnight);
  padding-left: 28px;
  position: relative;
  line-height: 1.4;
}
.includes-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--sans);
}
.pricing-note {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--slate-soft);
  font-style: italic;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ───── In-house ───── */

.inhouse-card {
  padding: 52px 36px;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, var(--paper) 0%, var(--gold-pale) 100%);
  text-align: center;
}
.inhouse-card h2 { margin: 16px auto 18px; max-width: 640px; }
.inhouse-card p { max-width: 560px; margin: 0 auto 28px; font-family: var(--serif); font-size: 18px; color: var(--slate); }

/* ───── Final CTA ───── */

.final-inner { text-align: center; max-width: 740px; margin: 0 auto; }
.final-inner h2 { margin-bottom: 18px; }
.final-inner .body-lg {
  color: rgba(255,255,255,0.78);
  margin: 0 auto 36px;
  max-width: 580px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
}
.final-cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto 30px;
}
@media (min-width: 600px) {
  .final-cta-row { flex-direction: row; }
  .final-cta-row .btn { flex: 1; }
}
.final-trust {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.final-trust .sep { color: var(--gold-soft); margin: 0 10px; }

/* ───── Footer ───── */

footer {
  background: var(--midnight-deep);
  color: rgba(255,255,255,0.55);
  padding: 40px 0;
  font-size: 13px;
  text-align: center;
}
footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
footer a:hover { color: var(--gold-soft); }

/* ───── Sticky WhatsApp ───── */

.sticky-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--midnight);
  color: var(--gold-soft);
  padding: 14px 20px 14px 16px;
  border-radius: 48px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 32px -8px rgba(15, 39, 68, 0.4), 0 0 0 1px var(--gold);
  transition: all 0.25s;
}
.sticky-wa:hover {
  background: var(--gold);
  color: var(--midnight-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(176, 135, 56, 0.5);
}
.sticky-wa .wa-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--midnight-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s;
}
.sticky-wa:hover .wa-icon {
  background: var(--midnight);
  color: var(--gold-soft);
}

@media (max-width: 560px) {
  .sticky-wa .wa-text { display: none; }
  .sticky-wa { padding: 14px; }
}

/* ───── Tweaks ───── */

.tweaks-panel {
  position: fixed;
  top: 76px;
  right: 20px;
  z-index: 60;
  background: var(--white);
  border: 1px solid var(--slate-line);
  box-shadow: 0 16px 40px -12px rgba(15, 39, 68, 0.2);
  padding: 18px 20px;
  min-width: 220px;
  border-radius: 2px;
}
.tweaks-panel h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 12px;
}
.tweaks-panel .tweaks-section + .tweaks-section { margin-top: 16px; }
.tweaks-panel label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-bottom: 6px;
}
.seg {
  display: flex;
  border: 1px solid var(--slate-line);
  border-radius: 2px;
  overflow: hidden;
}
.seg button {
  flex: 1;
  background: var(--paper);
  border: 0;
  padding: 8px 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  border-right: 1px solid var(--slate-line);
  transition: all 0.15s;
}
.seg button:last-child { border-right: 0; }
.seg button.on {
  background: var(--midnight);
  color: var(--gold-soft);
}

.lang-toggle-top {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-right: 14px;
}
.lang-toggle-top button {
  background: transparent;
  border: 0;
  padding: 6px 10px;
  font: inherit;
  color: var(--slate-soft);
  cursor: pointer;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lang-toggle-top button.on { color: var(--midnight); }
.lang-toggle-top .bar { width: 1px; height: 12px; background: var(--slate-line); }
