/* ================================
   DESIGN TOKENS
   ================================ */
:root {
  --bg:             #000000;
  --bg-elevated:    #080808;
  --bg-card:        #111111;
  --bg-card-hover:  #161616;
  --border:         #1a1a1a;
  --border-bright:  #2a2a2a;
  --text:           #ffffff;
  --text-secondary: #9ca3af;
  --text-muted:     #4b5563;
  --accent:         #00D084;
  --accent-dim:     rgba(0, 208, 132, 0.10);
  --accent-glow:    rgba(0, 208, 132, 0.18);
  --container:      1120px;
  --section-py:     96px;
}

/* ================================
   RESET + BASE
   ================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================================
   GRID BACKGROUND
   ================================ */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(0, 208, 132, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 208, 132, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.03;
}

/* ================================
   LAYOUT
   ================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-elevated { background: var(--bg-elevated); }
.section-cta { text-align: center; overflow: hidden; }

/* ================================
   TYPOGRAPHY
   ================================ */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 48px;
}

.text-center { text-align: center; }

/* SECTION TAG */
.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-tag-centered { justify-content: center; }

.section-tag-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-tag-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

/* ================================
   GLOW BLOB
   ================================ */
.glow-blob {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.glow-blob-cta { top: -120px; opacity: 0.35; }

/* ================================
   NAVIGATION
   ================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 40px;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  height: 34px;
  width: auto;
}

.nav-logo-wordmark {
  height: 32px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ================================
   BUTTONS
   ================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { opacity: 0.92; transform: translateY(-1px); }

.btn-primary.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn-primary.btn-lg { padding: 16px 40px; font-size: 1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid var(--border-bright);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
}

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 180px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  color: var(--text);
  max-width: 840px;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ================================
   TICKER
   ================================ */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  background: rgba(0, 208, 132, 0.02);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.ticker-dot {
  color: var(--accent) !important;
  font-size: 1rem !important;
  letter-spacing: 0 !important;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================
   CARDS
   ================================ */
.cards-grid {
  display: grid;
  gap: 20px;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 20px;
}

.card-number {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 14px;
}

.card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ================================
   PROCESS STEPS
   ================================ */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.process-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--border-bright), var(--accent), var(--border-bright));
  flex-shrink: 0;
  margin-top: 52px;
}

.step-number {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}

.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ================================
   GUARANTEE CARD
   ================================ */
.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.guarantee-left { flex: 1; }

.guarantee-left .section-tag { margin-bottom: 20px; }

.guarantee-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.guarantee-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 440px;
}

.trust-pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  padding-top: 48px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  padding: 12px 22px;
  white-space: nowrap;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.trust-pill span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ================================
   CTA SECTION
   ================================ */
.cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  margin-top: 8px;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-logo-wordmark {
  height: 24px;
  width: auto;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--accent); }

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ================================
   INDUSTRY GRID (Who We Help)
   ================================ */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.industry-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  padding: 12px 22px;
  transition: border-color 0.25s, background 0.25s;
}

.industry-pill:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.industry-pill span {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.industry-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.industry-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.industry-link:hover { opacity: 0.8; }

/* ================================
   BLOG CARDS
   ================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.blog-card-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.blog-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.blog-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.blog-card-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  margin-top: 4px;
}

.blog-card-link:hover { opacity: 0.75; }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ================================
   VSL PAGE
   ================================ */
.vsl-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vsl-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.vsl-wrapper {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 40px;
}

.vsl-section {
  padding: 120px 0 64px;
}

.vsl-video-block {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
  overflow: hidden;
}

.vsl-video-block iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.vsl-placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(0,208,132,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vsl-placeholder-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
  margin-left: 4px;
}

.vsl-placeholder-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.vsl-value-block {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.vsl-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.vsl-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto 40px;
  text-align: left;
}

.vsl-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.vsl-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

.vsl-guarantee {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ================================
   SCROLL REVEAL
   ================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .guarantee-card { flex-direction: column; gap: 40px; }
  .trust-pills { flex-direction: row; flex-wrap: wrap; padding-top: 0; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .container { padding: 0 24px; }
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-logo-text { display: none; }

  .hero-content { padding: 140px 0 60px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .cards-3 { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr; }

  .process-steps { flex-direction: column; }
  .process-connector {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--border-bright), var(--accent), var(--border-bright));
    margin: 0 auto;
  }

  .guarantee-card { padding: 32px 24px; }
  .trust-pills { flex-direction: column; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-right { align-items: flex-start; }

  .vsl-nav { padding: 16px 24px; }
  .vsl-wrapper { padding: 0 24px; }

  .post-article { padding: 100px 0 60px; }
  .post-header { margin-bottom: 40px; }
  .post-body h2 { font-size: 1.4rem; }
  .post-body blockquote { padding: 20px 24px; }

  .blog-hero-content { padding: 120px 0 60px; }
}

/* ================================
   BLOG INDEX PAGE
   ================================ */
.blog-hero-content {
  padding: 180px 0 80px;
  position: relative;
  z-index: 1;
}

.blog-hero-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  max-width: 680px;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.blog-hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.65;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .blog-index-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .blog-index-grid { grid-template-columns: 1fr; }
}

/* CATEGORY BADGE on card */
.blog-card-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,208,132,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  width: fit-content;
}

.blog-card-category.breaking {
  background: rgba(255,60,60,0.08);
  border-color: rgba(255,60,60,0.3);
  color: #ff6b6b;
}

/* ================================
   BLOG POST ARTICLE PAGE
   ================================ */
.post-article {
  padding: 140px 0 80px;
  position: relative;
  z-index: 1;
}

.post-article .container {
  max-width: 760px;
}

.post-header {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.post-header .section-tag {
  margin-bottom: 20px;
}

.post-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.post-meta-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.post-meta-read {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.post-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border-bright);
  flex-shrink: 0;
}

/* PROSE BODY */
.post-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.post-body p {
  margin-bottom: 24px;
}

.post-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  margin-top: 52px;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.post-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.post-body ul, .post-body ol {
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-body ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 9px;
  vertical-align: top;
}

.post-body ul li {
  display: flex;
  align-items: flex-start;
}

.post-body ol {
  counter-reset: ol-counter;
}

.post-body ol li {
  display: flex;
  align-items: flex-start;
  counter-increment: ol-counter;
}

.post-body ol li::before {
  content: counter(ol-counter) ".";
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-right: 12px;
  flex-shrink: 0;
  min-width: 20px;
  margin-top: 3px;
}

.post-body strong {
  color: var(--text);
  font-weight: 600;
}

.post-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 24px 32px;
  margin: 36px 0;
  background: var(--accent-dim);
  border-radius: 0 8px 8px 0;
}

.post-body blockquote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.6;
}

.post-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,208,132,0.3);
  transition: border-color 0.2s;
}

.post-body a:hover {
  border-color: var(--accent);
}

/* POST CTA BLOCK */
.post-cta-block {
  margin-top: 60px;
  padding: 40px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
}

.post-cta-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}

.post-cta-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.post-cta-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* POST NAV (prev/next) */
.post-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.post-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.post-nav-link:hover { color: var(--accent); }
.post-nav-back { color: var(--text-muted); }
