/* ==========================================================================
   WidgetForge -- shared styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   TIMELINE
   -------------------------------------------------------------------------- */
.wf-timeline {
  --wf-spine-top: #C9A84C;
  --wf-spine-bot: rgba(201,168,76,0.2);
  --wf-spine-w:   2px;
  --wf-dot:       #C9A84C;
  --wf-dot-ring:  #F0EDE6;
  --wf-dot-size:  14px;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.wf-timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: var(--wf-spine-w);
  background: linear-gradient(to bottom, var(--wf-spine-top) 0%, var(--wf-spine-bot) 100%);
  transform: translateX(-50%);
}
.wf-timeline__item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 40px;
}
.wf-timeline__item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}
.wf-timeline__item::after {
  content: '';
  position: absolute;
  left: 50%; top: 22px;
  width: var(--wf-dot-size);
  height: var(--wf-dot-size);
  background: var(--wf-dot);
  border: 3px solid var(--wf-dot-ring);
  border-radius: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}
.wf-timeline__card {
  background: #fff;
  border: 1px solid #e4e0d8;
  border-top: 3px solid #C9A84C;
  border-radius: 6px;
  padding: 22px 24px 20px;
  width: 100%;
  max-width: 340px;
  font-family: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.2s, border-color 0.2s;
}
.wf-timeline__year { font: 700 9.5px/1.2 Inter; letter-spacing: 0.2em; text-transform: uppercase; color: #C9A84C; margin-bottom: 8px; }
.wf-timeline__role { font: 700 15px/1.25 Inter; color: #0D1B3E; margin-bottom: 4px; }
.wf-timeline__org  { font: 600 12px/1.4 Inter; color: #6b7a99; margin-bottom: 10px; }
.wf-timeline__desc { font: 400 12.5px/1.7 Inter; color: #4a5568; margin: 0; }

@media (max-width: 768px) {
  .wf-timeline::before { left: 12px; transform: none; }
  .wf-timeline__item,
  .wf-timeline__item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 36px !important;
    padding-right: 0 !important;
    margin-bottom: 28px;
  }
  .wf-timeline__item::after { left: 12px; }
  .wf-timeline__card { max-width: 100%; }
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.wf-faq { max-width: 860px; margin: 0 auto; }

.wf-faq--lined .wf-faq__item { border: 0 solid #ddd9d0; border-bottom-width: 1px; }
.wf-faq--lined .wf-faq__item:first-child { border-top-width: 1px; }

.wf-faq--boxed { display: flex; flex-direction: column; gap: 12px; }
.wf-faq--boxed .wf-faq__item {
  background: #ffffff;
  border: 1px solid #e4e0d8;
  border-radius: 8px;
  padding: 4px 24px;
  transition: background-color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.wf-faq__q {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background-color 0.2s, color 0.2s;
}
.wf-faq__q-text { font: 600 15px/1.4 Inter; color: #0D1B3E; transition: color 0.2s; }
.wf-faq__icon {
  width: 28px; height: 28px;
  background: #0D1B3E;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.25s;
}
.wf-faq__icon svg { width: 12px; height: 12px; transition: transform 0.3s ease; }

.wf-faq--icon-plus    .wf-faq__item.is-open .wf-faq__icon svg { transform: rotate(45deg); }
.wf-faq--icon-chevron .wf-faq__item.is-open .wf-faq__icon svg { transform: rotate(180deg); }
.wf-faq--icon-arrow   .wf-faq__item.is-open .wf-faq__icon svg { transform: rotate(90deg); }

.wf-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.wf-faq__item.is-open .wf-faq__a { padding-bottom: 20px; }

.wf-faq__a-inner { font: 400 13.5px/1.78 Inter; color: #4a5568; }
.wf-faq__a-inner p { margin: 0 0 12px; }
.wf-faq__a-inner p:last-child { margin-bottom: 0; }
.wf-faq__a-inner ul, .wf-faq__a-inner ol { margin: 0 0 12px 18px; }
.wf-faq__a-inner strong { color: #0D1B3E; }
.wf-faq__a-inner a { color: #b8902e; }

/* --------------------------------------------------------------------------
   FAQ v2 (TABS + ACCORDION)
   -------------------------------------------------------------------------- */

.wf-faq-v2 button {
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.wf-faq-v2 button:focus,
.wf-faq-v2 button:focus-visible {
  outline: none;
  box-shadow: none;
}

.wf-faq-v2__tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.wf-faq-v2__tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.06);
  color: #8ea2b1;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  box-shadow: none;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.wf-faq-v2__tab-btn:hover {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: #c7d3dd !important;
  outline: none;
  box-shadow: none;
}

.wf-faq-v2__tab-btn:focus,
.wf-faq-v2__tab-btn:active,
.wf-faq-v2__tab-btn:focus-visible {
  background-color: rgba(255, 255, 255, 0.06) !important;
  outline: none;
  box-shadow: none;
}

.wf-faq-v2__tab-btn.is-active,
.wf-faq-v2__tab-btn.is-active:hover,
.wf-faq-v2__tab-btn.is-active:focus,
.wf-faq-v2__tab-btn.is-active:active {
  background-color: #1ebf95 !important;
  color: #ffffff !important;
  border-color: #1ebf95 !important;
  outline: none;
  box-shadow: none;
}

.wf-faq-v2__panel            { display: none; }
.wf-faq-v2__panel.is-active  { display: block; }

.wf-faq-v2__panel--boxed              { display: none; flex-direction: column; gap: 10px; }
.wf-faq-v2__panel--boxed.is-active    { display: flex; }

.wf-faq-v2__panel--lined              { display: none; }
.wf-faq-v2__panel--lined.is-active    { display: block; }

.wf-faq-v2__item {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding-left: 24px;
  padding-right: 24px;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.wf-faq-v2__item:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.wf-faq-v2__item:hover .wf-faq-v2__q-text {
  color: #ffffff;
}

.wf-faq-v2__item.is-open {
  background-color: rgba(30, 191, 149, 0.06);
  border-color: rgba(30, 191, 149, 0.30);
}

.wf-faq-v2__item.is-open:hover {
  background-color: rgba(30, 191, 149, 0.06);
  border-color: rgba(30, 191, 149, 0.30);
}

.wf-faq-v2__panel--lined .wf-faq-v2__item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0;
}
.wf-faq-v2__panel--lined .wf-faq-v2__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.wf-faq-v2__panel--lined .wf-faq-v2__item.is-open {
  background-color: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

.wf-faq-v2__q {
  width: 100%;
  padding: 20px 0;
  background: none;
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
}
.wf-faq-v2__q:hover,
.wf-faq-v2__q:focus,
.wf-faq-v2__q:active,
.wf-faq-v2__q:focus-visible {
  background: none !important;
  background-color: transparent !important;
  outline: none;
  box-shadow: none;
  border: none;
  color: inherit;
}

.wf-faq-v2__q-text {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #f2f7fb;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.wf-faq-v2__item.is-open .wf-faq-v2__q-text {
  color: #1ebf95;
}

.wf-faq-v2__icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.25s ease;
}

.wf-faq-v2__icon svg {
  width: 14px;
  height: 14px;
  color: #8ea2b1;
  fill: #8ea2b1;
  stroke: #8ea2b1;
  transition: transform 0.35s ease, color 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

.wf-faq-v2__item.is-open .wf-faq-v2__icon {
  background-color: #1ebf95;
}
.wf-faq-v2__item.is-open .wf-faq-v2__icon svg {
  color: #ffffff;
  fill: #ffffff;
  stroke: #ffffff;
}

.wf-faq-v2--icon-plus    .wf-faq-v2__item.is-open .wf-faq-v2__icon svg { transform: rotate(45deg); }
.wf-faq-v2--icon-chevron .wf-faq-v2__item.is-open .wf-faq-v2__icon svg { transform: rotate(180deg); }
.wf-faq-v2--icon-arrow   .wf-faq-v2__item.is-open .wf-faq-v2__icon svg { transform: rotate(180deg); }

.wf-faq-v2__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.wf-faq-v2__item.is-open .wf-faq-v2__a {
  padding-bottom: 20px;
}

.wf-faq-v2__a-inner {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #c7d3dd;
}
.wf-faq-v2__a-inner p                 { margin: 0 0 12px; }
.wf-faq-v2__a-inner p:last-child      { margin-bottom: 0; }
.wf-faq-v2__a-inner ul,
.wf-faq-v2__a-inner ol                { margin: 0 0 12px 18px; }
.wf-faq-v2__a-inner strong            { color: #f2f7fb; }
.wf-faq-v2__a-inner a                 { color: #1ebf95; }

/* --------------------------------------------------------------------------
   LOGO MARQUEE
   -------------------------------------------------------------------------- */

.wf-marquee {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  overflow: hidden !important;
  background-color: #0f0f13;
}

.wf-marquee .wf-marquee__row {
  position: relative !important;
  overflow: hidden !important;
  padding: 24px 0;
  width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
}

.wf-marquee--fade .wf-marquee__row::before,
.wf-marquee--fade .wf-marquee__row::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  width: 180px !important;
  height: 100% !important;
  z-index: 2 !important;
  pointer-events: none !important;
}
.wf-marquee--fade .wf-marquee__row::before {
  left: 0 !important;
  background: linear-gradient(to right, var(--wf-m-fade, #0f0f13), transparent) !important;
}
.wf-marquee--fade .wf-marquee__row::after {
  right: 0 !important;
  background: linear-gradient(to left, var(--wf-m-fade, #0f0f13), transparent) !important;
}

.wf-marquee .wf-marquee__row .wf-marquee__track {
  display:        flex !important;
  flex-direction: row !important;
  flex-wrap:      nowrap !important;
  align-items:    center !important;
  width:          max-content !important;
  max-width:      none !important;
  will-change:    transform;
  animation:      wf-marquee-scroll 28s linear infinite;
  animation-direction: normal;
}

.wf-marquee--pause .wf-marquee__row:hover .wf-marquee__track {
  animation-play-state: paused !important;
}

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

.wf-marquee .wf-marquee__track .wf-marquee__card {
  display:        inline-flex !important;
  flex-direction: row !important;
  align-items:    center !important;
  flex-shrink:    0 !important;
  flex-grow:      0 !important;
  width:          auto !important;
  max-width:      none !important;
  gap:            10px;
  margin:         0 32px;
  padding:        16px 28px;
  background:     rgba(255,255,255,0.04);
  border:         1px solid rgba(255,255,255,0.08);
  border-radius:  14px;
  white-space:    nowrap;
  cursor:         pointer;
  text-decoration:none;
  color:          inherit;
  box-sizing:     border-box;
  transition:     background 0.3s, border-color 0.3s, transform 0.3s;
}
.wf-marquee .wf-marquee__track .wf-marquee__card:hover {
  background:   rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform:    translateY(-3px);
}

.wf-marquee .wf-marquee__img {
  display:     block !important;
  width:       28px;
  height:      28px;
  max-width:   none !important;
  max-height:  none !important;
  flex-shrink: 0 !important;
  object-fit:  contain;
  transition:  opacity 0.3s ease, filter 0.3s ease;
}

.wf-marquee--grayscale .wf-marquee__img {
  filter: grayscale(1) opacity(0.6);
}
.wf-marquee--grayscale .wf-marquee__card:hover .wf-marquee__img {
  filter: grayscale(0) opacity(1);
}

.wf-marquee .wf-marquee__name {
  display:        inline !important;
  width:          auto !important;
  font-size:      15px;
  font-weight:    600;
  color:          #cccccc;
  letter-spacing: 0.5px;
  white-space:    nowrap;
  transition:     color 0.25s ease;
}

.wf-marquee--brand-hover .wf-marquee__card:hover .wf-marquee__name {
  color: var(--brand, #ffffff);
}

/* --------------------------------------------------------------------------
   TITAN BLOG PAGE
   -------------------------------------------------------------------------- */

.wf-blog-page {
  --wfbp-accent: #C9A84C;
  --wfbp-dark: #0D1B3E;
  --wfbp-hero-bg1: #091530;
  --wfbp-hero-bg2: #112258;
  --wfbp-body-text: #4a5568;
  --wfbp-muted: #6b7a99;
  --wfbp-featured-bg: #F0EDE6;
  --wfbp-resources-bg: #F0EDE6;
  --wfbp-border: #e4e0d8;
  --wfbp-nl-bg1: #091530;
  --wfbp-nl-bg2: #112258;
  font-family: 'Inter', sans-serif;
  color: var(--wfbp-dark);
  line-height: 1.5;
}
.wf-blog-page *, .wf-blog-page *::before, .wf-blog-page *::after { box-sizing: border-box; }

/* Reusable */
.wfbp-gold-dash { width: 48px; height: 3px; background: var(--wfbp-accent); border-radius: 2px; }
.wfbp-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--wfbp-accent); margin: 0; }
.wfbp-section-header { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 52px; }
.wfbp-section-heading { font-size: 38px; font-weight: 800; color: var(--wfbp-dark); line-height: 1.1; margin: 0; }
.wfbp-section-heading span { color: var(--wfbp-accent); }
.wfbp-section-sub { font-size: 14px; color: var(--wfbp-muted); line-height: 1.7; max-width: 520px; margin: 0; }

/* Hero */
.wfbp-hero { background: linear-gradient(150deg, var(--wfbp-hero-bg1) 0%, var(--wfbp-dark) 55%, var(--wfbp-hero-bg2) 100%); padding: 72px 80px 60px; position: relative; overflow: hidden; }
.wfbp-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; }
.wfbp-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; display: flex; align-items: center; gap: 72px; }
.wfbp-hero-text { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.wfbp-hero-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; color: #5a6e96; }
.wfbp-breadcrumb-current { color: var(--wfbp-accent); }
.wfbp-hero-heading { font-size: 48px; font-weight: 800; color: #ffffff; line-height: 1.08; margin: 0; }
.wfbp-hero-heading span { color: var(--wfbp-accent); }
.wfbp-hero-desc { font-size: 15px; color: #8a9bbf; line-height: 1.78; max-width: 520px; margin: 0; }

/* Hero Stats */
.wfbp-hero-stat-panel { flex: 0 0 300px; display: flex; flex-direction: column; gap: 14px; }
.wfbp-hsp-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 18px 22px; display: flex; align-items: center; gap: 16px; }
.wfbp-hsp-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--wfbp-accent); }
.wfbp-hsp-icon svg { width: 22px; height: 22px; }
.wfbp-hsp-num { font-size: 24px; font-weight: 800; color: #ffffff; line-height: 1; }
.wfbp-hsp-num span { font-size: 16px; color: var(--wfbp-accent); }
.wfbp-hsp-label { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #5a6e96; margin-top: 4px; }

/* Category Bar */
.wfbp-cat-bar { background: #ffffff; border-bottom: 1px solid var(--wfbp-border); padding: 18px 80px; display: flex; justify-content: center; }
.wfbp-cat-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 1100px; }
.wfbp-cat-pill { padding: 8px 18px; border-radius: 2px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border: 1.5px solid var(--wfbp-border); background: transparent; color: var(--wfbp-muted); font-family: 'Inter', sans-serif; transition: all 0.2s; }
.wfbp-cat-pill:hover { border-color: var(--wfbp-accent); color: var(--wfbp-dark); }
.wfbp-cat-pill.active { background: var(--wfbp-accent); border-color: var(--wfbp-accent); color: #ffffff; }

/* Featured Article */
.wfbp-featured-article { background: var(--wfbp-featured-bg); padding: 72px 80px; }
.wfbp-fa-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 12px; overflow: hidden; background: #ffffff; border: 1px solid var(--wfbp-border); box-shadow: 0 8px 40px rgba(13,27,62,0.08); text-decoration: none; color: inherit; transition: box-shadow 0.25s, transform 0.25s; cursor: pointer; }
.wfbp-fa-inner:hover { box-shadow: 0 14px 52px rgba(13,27,62,0.14); transform: translateY(-2px); }
.wfbp-fa-visual { background: linear-gradient(135deg, var(--wfbp-hero-bg1) 0%, var(--wfbp-hero-bg2) 100%); min-height: 360px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.wfbp-fa-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.wfbp-fa-visual::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.wfbp-fa-visual-icon { width: 96px; height: 96px; background: rgba(201,168,76,0.15); border: 2px solid rgba(201,168,76,0.4); border-radius: 20px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; color: var(--wfbp-accent); }
.wfbp-fa-visual-icon svg { width: 48px; height: 48px; }
.wfbp-fa-content { padding: 44px 40px; display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.wfbp-fa-meta-row { display: flex; align-items: center; gap: 12px; }
.wfbp-fa-cat { padding: 5px 12px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.4); border-radius: 2px; font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #b8902e; }
.wfbp-fa-featured-tag { font-size: 9.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wfbp-accent); }
.wfbp-fa-title { font-size: 28px; font-weight: 800; color: var(--wfbp-dark); line-height: 1.2; margin: 0; }
.wfbp-fa-excerpt { font-size: 14px; color: var(--wfbp-body-text); line-height: 1.8; margin: 0; }
.wfbp-fa-foot { display: flex; align-items: center; gap: 16px; padding-top: 8px; }
.wfbp-fa-author { display: flex; align-items: center; gap: 10px; }
.wfbp-fa-avatar { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.wfbp-fa-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.wfbp-fa-author-name { font-size: 12px; font-weight: 700; color: var(--wfbp-dark); }
.wfbp-fa-author-meta { font-size: 11px; color: #94a3b8; }
.wfbp-fa-read { margin-left: auto; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--wfbp-accent); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.wfbp-fa-read:hover { gap: 10px; }
.wfbp-fa-read svg { width: 12px; height: 12px; }

/* Articles Grid */
.wfbp-articles-section { background: #ffffff; padding: 80px 80px 88px; }
.wfbp-articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1280px; margin: 0 auto; }
.wfbp-article-card { border: 1px solid var(--wfbp-border); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.25s, transform 0.25s; cursor: pointer; text-decoration: none; color: inherit; }
.wfbp-article-card:hover { box-shadow: 0 12px 44px rgba(13,27,62,0.12); transform: translateY(-3px); }
.wfbp-ac-visual { height: 170px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.wfbp-ac-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wfbp-ac-visual.v1 { background: linear-gradient(135deg, #091530, #112258); }
.wfbp-ac-visual.v2 { background: linear-gradient(135deg, #1a2540, #2a4888); }
.wfbp-ac-visual.v3 { background: linear-gradient(135deg, #8a6820, var(--wfbp-accent)); }
.wfbp-ac-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.wfbp-ac-cat { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wfbp-accent); }
.wfbp-ac-title { font-size: 16px; font-weight: 800; color: var(--wfbp-dark); line-height: 1.3; }
.wfbp-ac-excerpt { font-size: 12.5px; color: var(--wfbp-body-text); line-height: 1.7; flex: 1; margin: 0; }
.wfbp-ac-foot { display: flex; align-items: center; gap: 14px; padding-top: 12px; border-top: 1px solid #f0ede6; font-size: 11px; color: #94a3b8; }
.wfbp-ac-foot-item { display: flex; align-items: center; gap: 5px; }
.wfbp-ac-foot-item svg { width: 12px; height: 12px; flex-shrink: 0; }

/* Resources */
.wfbp-resources-section { background: var(--wfbp-resources-bg); padding: 72px 80px 80px; }
.wfbp-resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1180px; margin: 0 auto; }
.wfbp-resource-card { background: #ffffff; border: 1px solid var(--wfbp-border); border-radius: 8px; padding: 30px 26px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow 0.2s, transform 0.2s; }
.wfbp-resource-card:hover { box-shadow: 0 10px 36px rgba(13,27,62,0.1); transform: translateY(-2px); }
.wfbp-res-icon { width: 52px; height: 52px; background: var(--wfbp-dark); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--wfbp-accent); }
.wfbp-res-icon svg { width: 26px; height: 26px; }
.wfbp-res-type { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wfbp-accent); }
.wfbp-res-title { font-size: 16px; font-weight: 700; color: var(--wfbp-dark); line-height: 1.3; }
.wfbp-res-desc { font-size: 12.5px; color: var(--wfbp-body-text); line-height: 1.7; flex: 1; margin: 0; }
.wfbp-res-btn { align-self: flex-start; padding: 10px 20px; background: transparent; color: var(--wfbp-dark); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; border: 2px solid var(--wfbp-dark); cursor: pointer; border-radius: 2px; transition: all 0.2s; display: inline-flex; align-items: center; gap: 7px; text-decoration: none; font-family: 'Inter', sans-serif; }
.wfbp-res-btn:hover { background: var(--wfbp-dark); color: #fff; }
.wfbp-res-btn svg { width: 13px; height: 13px; }

/* Newsletter */
.wfbp-newsletter-section { background: linear-gradient(150deg, var(--wfbp-nl-bg1) 0%, var(--wfbp-dark) 55%, var(--wfbp-nl-bg2) 100%); padding: 64px 80px; position: relative; overflow: hidden; }
.wfbp-newsletter-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; }
.wfbp-nl-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.wfbp-nl-heading { font-size: 30px; font-weight: 800; color: #ffffff; line-height: 1.2; margin: 0; }
.wfbp-nl-heading span { color: var(--wfbp-accent); }
.wfbp-nl-desc { font-size: 14px; color: #8a9bbf; line-height: 1.7; max-width: 520px; margin: 0; }
.wfbp-nl-form { display: flex; gap: 12px; width: 100%; max-width: 480px; margin-top: 8px; }
.wfbp-nl-input { flex: 1; padding: 14px 18px; background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.15); border-radius: 4px; font-size: 13px; color: #ffffff; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; }
.wfbp-nl-input::placeholder { color: #6a80a8; }
.wfbp-nl-input:focus { border-color: var(--wfbp-accent); }
.wfbp-nl-btn { padding: 14px 26px; background: var(--wfbp-accent); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; border: 2px solid var(--wfbp-accent); cursor: pointer; border-radius: 4px; white-space: nowrap; transition: background 0.2s, border-color 0.2s; font-family: 'Inter', sans-serif; }
.wfbp-nl-btn:hover { background: #b8962e; border-color: #b8962e; }
.wfbp-nl-note { font-size: 11px; color: #5a6e96; margin: 0; }

/* No Posts */
.wfbp-no-posts { padding: 60px 40px; text-align: center; }
.wfbp-no-posts p { font-size: 15px; color: var(--wfbp-muted); line-height: 1.7; margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .wfbp-hero { padding: 52px 40px 44px; }
  .wfbp-hero-inner { flex-direction: column; align-items: flex-start; gap: 36px; }
  .wfbp-hero-stat-panel { flex: 0 0 auto; width: 100%; flex-direction: row; }
  .wfbp-hsp-card { flex: 1; }
  .wfbp-hero-heading { font-size: 38px; }
  .wfbp-cat-bar { padding: 16px 40px; }
  .wfbp-featured-article { padding: 56px 40px; }
  .wfbp-fa-inner { grid-template-columns: 1fr; }
  .wfbp-fa-visual { min-height: 240px; }
  .wfbp-fa-content { padding: 36px 32px; }
  .wfbp-fa-title { font-size: 24px; }
  .wfbp-articles-section { padding: 60px 40px 68px; }
  .wfbp-articles-grid { grid-template-columns: 1fr 1fr; }
  .wfbp-resources-section { padding: 56px 40px 64px; }
  .wfbp-resources-grid { grid-template-columns: 1fr; max-width: 540px; }
  .wfbp-newsletter-section { padding: 56px 40px; }
}
@media (max-width: 768px) {
  .wfbp-hero { padding: 40px 20px 38px; }
  .wfbp-hero-stat-panel { flex-direction: column; }
  .wfbp-hero-heading { font-size: 30px; }
  .wfbp-cat-bar { padding: 14px 20px; }
  .wfbp-featured-article { padding: 44px 20px; }
  .wfbp-fa-content { padding: 28px 24px; }
  .wfbp-fa-title { font-size: 21px; }
  .wfbp-articles-section { padding: 44px 20px 52px; }
  .wfbp-articles-grid { grid-template-columns: 1fr; }
  .wfbp-section-heading { font-size: 28px; }
  .wfbp-resources-section { padding: 44px 20px 52px; }
  .wfbp-newsletter-section { padding: 48px 20px; }
  .wfbp-nl-heading { font-size: 24px; }
  .wfbp-nl-form { flex-direction: column; }
  .wfbp-nl-btn { width: 100%; }
}
@media (max-width: 480px) {
  .wfbp-hero-heading { font-size: 26px; }
  .wfbp-section-heading { font-size: 24px; }
}

/* --------------------------------------------------------------------------
   TITAN MOBILE HEADER
   -------------------------------------------------------------------------- */

.wf-mobile-header {
  font-family: 'Inter', sans-serif;
}

/* Force Elementor containers to NOT create new containing blocks
   that would break position:fixed on sidebar/overlay/bar */
.elementor-widget-wf_mobile_header,
.elementor-widget-wf_mobile_header > .elementor-widget-container {
  transform: none !important;
  will-change: auto !important;
  filter: none !important;
  perspective: none !important;
  contain: none !important;
  overflow: visible !important;
  position: static !important;
}
.wf-mobile-header *, .wf-mobile-header *::before, .wf-mobile-header *::after { box-sizing: border-box; }

/* Header Bar */
.wfmh-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  padding: 0 18px;
  background: #ffffff;
  z-index: 9998;
  position: relative;
}
.wfmh-bar--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.wfmh-bar--shadow {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

/* Logo */
.wfmh-logo img {
  display: block;
  width: 110px;
  height: auto;
}
.wfmh-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #0D1B3E;
  letter-spacing: -0.02em;
}

/* Burger */
.wfmh-burger {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}
.wfmh-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0D1B3E;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.wfmh-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.wfmh-burger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.wfmh-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.wfmh-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 9998;
  pointer-events: none;
  transition: background 0.35s ease;
}
.wfmh-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  background: var(--wfmh-ol-c, rgba(0,0,0,0.5));
}

/* Sidebar */
.wfmh-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #0D1B3E;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.wfmh-sidebar.is-open {
  transform: translateX(0);
}

/* Sidebar header */
.wfmh-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wfmh-sidebar-logo img {
  display: block;
  width: 120px;
  height: auto;
}
.wfmh-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  color: var(--wfmh-close-c, #8a9bbf);
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}
.wfmh-close svg { width: 18px; height: 18px; }
.wfmh-close:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

/* Navigation */
.wfmh-nav {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  flex: 1;
}
.wfmh-nav li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.wfmh-sidebar.is-open .wfmh-nav li {
  opacity: 1;
  transform: translateX(0);
}
.wfmh-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  color: var(--wfmh-link-c, #c8d6e5);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s, background 0.2s, padding-left 0.25s;
}
.wfmh-nav a:hover {
  color: var(--wfmh-link-hc, #ffffff);
  background: rgba(255,255,255,0.04);
  padding-left: 30px;
}
.wfmh-nav-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--wfmh-icon-c, #C9A84C);
}
.wfmh-nav-icon svg { width: 20px; height: 20px; }

/* Sidebar footer */
.wfmh-sidebar-foot {
  padding: 20px 24px 28px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wfmh-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: #C9A84C;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #C9A84C;
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
  font-family: 'Inter', sans-serif;
}
.wfmh-cta:hover {
  background: #b8962e;
  border-color: #b8962e;
}
.wfmh-note {
  font-size: 10px;
  color: #5a6e96;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* Spacer when sticky (push content down) */
.wfmh-bar--sticky ~ .wfmh-overlay ~ .wfmh-sidebar ~ * {
  /* handled via JS if needed */
}

/* --------------------------------------------------------------------------
   TITAN HERO SECTION
   -------------------------------------------------------------------------- */

/* Keyframes */
@keyframes wfhs-rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes wfhs-draw { from { stroke-dashoffset: 4200; } to { stroke-dashoffset: 0; } }
@keyframes wfhs-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes wfhs-glow { 0%, 100% { opacity: 0.35; } 50% { opacity: 0.7; } }
@keyframes wfhs-dot-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: 0.5; } }
@keyframes wfhs-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Root */
.wf-hero-section {
  --wfhs-accent: #D8B25C;
  --wfhs-bg1: #0B142E;
  --wfhs-bg2: #101E45;
  --wfhs-heading: #FFFFFF;
  --wfhs-text: rgba(244,241,233,0.78);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--wfhs-bg1) 0%, var(--wfhs-bg2) 55%, var(--wfhs-bg1) 100%);
  font-family: 'Manrope', sans-serif;
  color: #F4F1E9;
  position: relative;
  overflow: hidden;
}
.wf-hero-section *, .wf-hero-section *::before, .wf-hero-section *::after { box-sizing: border-box; }

/* Background image */
.wfhs-bg-image { position: absolute; inset: 0; z-index: 0; opacity: 0.85; }
.wfhs-bg-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Gradient scrims */
.wfhs-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.wfhs-scrim--side { background: linear-gradient(100deg, rgba(11,20,46,0.99) 0%, rgba(11,20,46,0.95) 42%, rgba(13,25,58,0.68) 70%, rgba(11,20,46,0.42) 100%); }
.wfhs-scrim--bottom { inset: auto 0 0 0; height: 45%; background: linear-gradient(0deg, rgba(11,20,46,0.9) 0%, rgba(11,20,46,0) 100%); }

/* Grid pattern */
.wfhs-grid-pattern { position: absolute; inset: 0; z-index: 1; pointer-events: none; background-image: linear-gradient(rgba(216,178,92,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(216,178,92,0.05) 1px, transparent 1px); background-size: 72px 72px; }

/* Gold glow */
.wfhs-gold-glow { position: absolute; top: -220px; right: -160px; width: 640px; height: 640px; border-radius: 50%; z-index: 1; pointer-events: none; background: radial-gradient(circle, rgba(216,178,92,0.16) 0%, rgba(216,178,92,0) 65%); animation: wfhs-glow 7s ease-in-out infinite; }

/* Chart */
.wfhs-chart-wrap { position: absolute; left: 0; right: 0; bottom: 40px; height: 46vh; z-index: 1; pointer-events: none; opacity: 0.55; display: flex; align-items: flex-end; }
.wfhs-chart { width: 100%; height: 100%; overflow: visible; display: block; }
.wfhs-chart-area { animation: wfhs-fade 1.6s ease 1.8s both; }
.wfhs-chart-line { animation: wfhs-draw 3s cubic-bezier(0.5,0,0.3,1) 0.8s both; }

/* Main content area */
.wfhs-main { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; padding: 40px clamp(24px, 4vw, 64px) 56px; }
.wfhs-content { display: flex; flex-direction: column; align-items: flex-start; gap: 30px; max-width: 780px; }

/* Eyebrow */
.wfhs-eyebrow-wrap { display: flex; align-items: center; gap: 12px; animation: wfhs-rise 0.8s ease both; }
.wfhs-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wfhs-accent); flex-shrink: 0; animation: wfhs-dot-pulse 2.4s ease-in-out infinite; }
.wfhs-eyebrow { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wfhs-accent); }

/* Heading */
.wfhs-heading { margin: 0; font-family: 'Space Grotesk', sans-serif; font-size: clamp(44px, 5.2vw, 76px); line-height: 1.04; font-weight: 700; letter-spacing: -0.02em; color: var(--wfhs-heading); animation: wfhs-rise 0.8s ease 0.12s both; }
.wfhs-heading span { color: var(--wfhs-accent); }

/* Description */
.wfhs-desc { margin: 0; font-size: 18px; line-height: 1.65; font-weight: 500; color: var(--wfhs-text); max-width: 560px; animation: wfhs-rise 0.8s ease 0.24s both; }
.wfhs-desc strong { color: #FFFFFF; }

/* Buttons */
.wfhs-buttons { display: flex; align-items: center; gap: 16px; animation: wfhs-rise 0.8s ease 0.36s both; flex-wrap: wrap; }
.wfhs-btn-primary { display: inline-block; background: var(--wfhs-accent); color: var(--wfhs-bg1); padding: 16px 34px; border-radius: 4px; font-size: 14px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; box-shadow: 0 10px 30px rgba(216,178,92,0.28); transition: background 0.2s, transform 0.2s; font-family: 'Manrope', sans-serif; }
.wfhs-btn-primary:hover { background: #E8CA85; transform: translateY(-2px); }
.wfhs-btn-secondary { display: inline-block; color: #FFFFFF; padding: 16px 26px; border: 1px solid rgba(244,241,233,0.25); border-radius: 4px; font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: border-color 0.2s; font-family: 'Manrope', sans-serif; }
.wfhs-btn-secondary:hover { border-color: rgba(244,241,233,0.6); color: #FFFFFF; }

/* Stats */
.wfhs-stats { display: flex; gap: 0; margin-top: 18px; border-top: 1px solid rgba(216,178,92,0.25); padding-top: 26px; animation: wfhs-rise 0.8s ease 0.5s both; }
.wfhs-stat { display: flex; flex-direction: column; gap: 6px; padding: 0 44px 0 0; margin-right: 44px; border-right: 1px solid rgba(244,241,233,0.12); }
.wfhs-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.wfhs-stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 42px; font-weight: 700; line-height: 1; color: #FFFFFF; }
.wfhs-stat-suffix { color: var(--wfhs-accent); }
.wfhs-stat-label { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,241,233,0.6); }

/* Ticker */
.wfhs-ticker { position: relative; z-index: 2; border-top: 1px solid rgba(216,178,92,0.25); background: rgba(8,14,33,0.72); overflow: hidden; padding: 15px 0; }
.wfhs-ticker-track { display: flex; gap: 0; width: max-content; animation: wfhs-ticker 28s linear infinite; }
.wfhs-ticker-item { display: flex; align-items: center; gap: 18px; padding: 0 18px; white-space: nowrap; }
.wfhs-ticker-text { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,241,233,0.72); }
.wfhs-ticker-diamond { width: 5px; height: 5px; background: var(--wfhs-accent); transform: rotate(45deg); flex-shrink: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .wfhs-heading { font-size: clamp(38px, 5vw, 56px); }
  .wfhs-stat-number { font-size: 34px; }
  .wfhs-stat { padding: 0 30px 0 0; margin-right: 30px; }
  .wfhs-desc { font-size: 17px; max-width: 500px; }
  .wfhs-content { gap: 26px; }
}

@media (max-width: 768px) {
  .wf-hero-section { min-height: 100vh; min-height: 100dvh; }
  .wfhs-main { padding: 100px 20px 40px; align-items: flex-start; }
  .wfhs-content { gap: 22px; max-width: 100%; }

  /* Heading */
  .wfhs-heading { font-size: clamp(30px, 8vw, 42px); line-height: 1.08; }

  /* Eyebrow */
  .wfhs-eyebrow { font-size: 11px; letter-spacing: 0.18em; }
  .wfhs-dot { width: 6px; height: 6px; }

  /* Description */
  .wfhs-desc { font-size: 15px; line-height: 1.6; max-width: 100%; }
  .wfhs-desc strong { display: block; margin-bottom: 6px; font-size: 15px; }

  /* Buttons — stack vertically, full width */
  .wfhs-buttons { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .wfhs-btn-primary, .wfhs-btn-secondary {
    text-align: center;
    padding: 15px 24px;
    font-size: 13px;
    width: 100%;
    display: block;
  }

  /* Stats — horizontal row with equal spacing */
  .wfhs-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 12px;
    padding-top: 22px;
  }
  .wfhs-stat {
    border-right: 1px solid rgba(244,241,233,0.12);
    padding: 0 12px;
    margin-right: 0;
    text-align: center;
    align-items: center;
  }
  .wfhs-stat:last-child { border-right: none; }
  .wfhs-stat:first-child { padding-left: 0; }
  .wfhs-stat:last-child { padding-right: 0; }
  .wfhs-stat-number { font-size: 28px; }
  .wfhs-stat-label { font-size: 10px; letter-spacing: 0.08em; }

  /* Chart — smaller, lower */
  .wfhs-chart-wrap { height: 28vh; bottom: 60px; opacity: 0.4; }

  /* Glow — smaller */
  .wfhs-gold-glow { width: 320px; height: 320px; top: -100px; right: -80px; }

  /* Scrims — stronger on mobile for readability */
  .wfhs-scrim--side { background: linear-gradient(160deg, rgba(11,20,46,0.98) 0%, rgba(11,20,46,0.96) 50%, rgba(13,25,58,0.85) 75%, rgba(11,20,46,0.7) 100%); }

  /* Ticker */
  .wfhs-ticker { padding: 12px 0; }
  .wfhs-ticker-text { font-size: 11px; letter-spacing: 0.14em; }
  .wfhs-ticker-item { gap: 14px; padding: 0 14px; }
  .wfhs-ticker-diamond { width: 4px; height: 4px; }

  /* Grid pattern — subtler on mobile */
  .wfhs-grid-pattern { background-size: 48px 48px; }
}

@media (max-width: 480px) {
  .wfhs-main { padding: 90px 16px 32px; }
  .wfhs-heading { font-size: clamp(26px, 8vw, 34px); }
  .wfhs-content { gap: 18px; }
  .wfhs-desc { font-size: 14px; }

  /* Stats — stack vertically on very small screens */
  .wfhs-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 18px;
  }
  .wfhs-stat {
    border-right: none;
    border-bottom: 1px solid rgba(244,241,233,0.08);
    padding: 0 0 16px 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
  }
  .wfhs-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .wfhs-stat-number { font-size: 26px; }
  .wfhs-stat-label { font-size: 11px; margin-top: 0; }

  .wfhs-btn-primary, .wfhs-btn-secondary { padding: 14px 20px; font-size: 12px; }
  .wfhs-chart-wrap { height: 22vh; bottom: 50px; }
  .wfhs-gold-glow { width: 240px; height: 240px; }
}

@media (max-width: 360px) {
  .wfhs-heading { font-size: 24px; }
  .wfhs-eyebrow { font-size: 10px; }
  .wfhs-main { padding: 80px 14px 28px; }
}



/* ==========================================================================
   Titan Blog Carousel (wf_blog_carousel)
   ========================================================================== */
.wf-blog-carousel {
  --wfbc-accent: #C9A84C;
  --wfbc-dark: #0D1B3E;
  --wfbc-section-bg: #ffffff;
  --wfbc-card-bg: #ffffff;
  --wfbc-body-text: #4a5568;
  --wfbc-muted: #6b7a99;
  --wfbc-border: #e4e0d8;
  --wfbc-arrow-bg: #0D1B3E;
  --wfbc-arrow-color: #ffffff;
  --wfbc-dot: #d5d0c4;
  --wfbc-dot-active: #C9A84C;
  font-family: 'Inter', sans-serif;
  color: var(--wfbc-body-text);
  box-sizing: border-box;
}
.wf-blog-carousel *, .wf-blog-carousel *::before, .wf-blog-carousel *::after { box-sizing: border-box; }
.wf-blog-carousel .wfbc-inner { max-width: 1280px; margin: 0 auto; }

.wf-blog-carousel .wfbc-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.wf-blog-carousel .wfbc-header { flex: 1; display: flex; flex-direction: column; gap: 12px; text-align: center; align-items: center; }
.wf-blog-carousel .wfbc-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--wfbc-accent); margin: 0; }
.wf-blog-carousel .wfbc-heading { font-size: 38px; font-weight: 800; color: var(--wfbc-dark); line-height: 1.1; margin: 0; }
.wf-blog-carousel .wfbc-heading span { color: var(--wfbc-accent); }
.wf-blog-carousel .wfbc-gold-dash { width: 48px; height: 3px; background: var(--wfbc-accent); border-radius: 2px; }
.wf-blog-carousel .wfbc-subtitle { font-size: 14px; color: var(--wfbc-muted); line-height: 1.7; max-width: 620px; margin: 0; }

.wf-blog-carousel .wfbc-top-arrows { display: flex; gap: 10px; flex-shrink: 0; }

/* stage */
.wf-blog-carousel .wfbc-stage { position: relative; }
.wf-blog-carousel .wfbc-viewport { overflow: hidden; }
.wf-blog-carousel .wfbc-track { display: flex; will-change: transform; transition: transform 550ms cubic-bezier(0.65, 0, 0.35, 1); }
.wf-blog-carousel .wfbc-track.no-transition { transition: none !important; }
.wf-blog-carousel .wfbc-slide { flex: 0 0 auto; min-width: 0; }

/* card */
.wf-blog-carousel .wfbc-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--wfbc-card-bg);
  border: 1px solid var(--wfbc-border);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.wf-blog-carousel .wfbc-card:hover { transform: translateY(-4px); border-color: var(--wfbc-accent); box-shadow: 0 20px 40px -20px rgba(13,27,62,0.25); }

.wf-blog-carousel .wfbc-card-media { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--wfbc-dark) 0%, #112258 100%); height: 220px; }
.wf-blog-carousel .wfbc-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.wf-blog-carousel.wfbc-zoom .wfbc-card:hover .wfbc-card-media img { transform: scale(1.06); }
.wf-blog-carousel .wfbc-card-media-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--wfbc-accent); opacity: 0.65; }
.wf-blog-carousel .wfbc-card-chip {
  position: absolute; top: 12px; left: 12px;
  background: var(--wfbc-accent); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 2px;
}

.wf-blog-carousel .wfbc-card-body { display: flex; flex-direction: column; gap: 10px; padding: 24px; flex: 1; }
.wf-blog-carousel .wfbc-card-cat { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wfbc-accent); }
.wf-blog-carousel .wfbc-card-title { font-size: 17px; font-weight: 800; color: var(--wfbc-dark); line-height: 1.35; margin: 0; }
.wf-blog-carousel .wfbc-card-excerpt { font-size: 13.5px; line-height: 1.65; color: var(--wfbc-body-text); margin: 0; }

.wf-blog-carousel .wfbc-card-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--wfbc-border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.wf-blog-carousel .wfbc-card-meta { display: flex; align-items: center; gap: 14px; font-size: 11px; color: var(--wfbc-muted); }
.wf-blog-carousel .wfbc-meta-item { display: inline-flex; align-items: center; gap: 5px; }
.wf-blog-carousel .wfbc-meta-item svg { width: 12px; height: 12px; color: var(--wfbc-muted); }
.wf-blog-carousel .wfbc-card-read { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--wfbc-accent); transition: gap 0.2s; }
.wf-blog-carousel .wfbc-card-read svg { width: 12px; height: 12px; }
.wf-blog-carousel .wfbc-card:hover .wfbc-card-read { gap: 10px; }

/* arrows */
.wf-blog-carousel .wfbc-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--wfbc-arrow-bg);
  color: var(--wfbc-arrow-color);
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  z-index: 3;
}
.wf-blog-carousel .wfbc-arrow svg { width: 18px; height: 18px; }
.wf-blog-carousel .wfbc-arrow:hover { background: var(--wfbc-accent); }
.wf-blog-carousel .wfbc-arrow[disabled] { opacity: 0.3; cursor: not-allowed; }
.wf-blog-carousel.wfbc-arrows-outside .wfbc-stage .wfbc-arrow { position: absolute; top: 50%; transform: translateY(-50%); }
.wf-blog-carousel.wfbc-arrows-outside .wfbc-stage .wfbc-prev { left: -22px; }
.wf-blog-carousel.wfbc-arrows-outside .wfbc-stage .wfbc-next { right: -22px; }
.wf-blog-carousel.wfbc-arrows-inside .wfbc-stage .wfbc-arrow { position: absolute; top: 50%; transform: translateY(-50%); }
.wf-blog-carousel.wfbc-arrows-inside .wfbc-stage .wfbc-prev { left: 14px; }
.wf-blog-carousel.wfbc-arrows-inside .wfbc-stage .wfbc-next { right: 14px; }

/* dots */
.wf-blog-carousel .wfbc-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.wf-blog-carousel .wfbc-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; padding: 0; cursor: pointer;
  background: var(--wfbc-dot);
  transition: background 0.2s ease, width 0.2s ease;
}
.wf-blog-carousel .wfbc-dots button.active { background: var(--wfbc-dot-active); width: 22px; border-radius: 4px; }

/* view all */
.wf-blog-carousel .wfbc-view-all-wrap { display: flex; justify-content: center; margin-top: 40px; }
.wf-blog-carousel .wfbc-view-all {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--wfbc-dark); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background 0.2s ease, gap 0.2s ease;
}
.wf-blog-carousel .wfbc-view-all:hover { background: var(--wfbc-accent); gap: 14px; }
.wf-blog-carousel .wfbc-view-all svg { width: 14px; height: 14px; }

.wf-blog-carousel .wfbc-empty { text-align: center; padding: 60px 20px; color: var(--wfbc-muted); font-size: 14px; }

/* drag cursor */
.wf-blog-carousel .wfbc-viewport.wfbc-dragging { cursor: grabbing; }
.wf-blog-carousel .wfbc-viewport.wfbc-dragging .wfbc-track { transition: none !important; }

@media (max-width: 1024px) {
  .wf-blog-carousel .wfbc-header-row { flex-direction: column; align-items: stretch; }
  .wf-blog-carousel.wfbc-arrows-outside .wfbc-stage .wfbc-prev { left: 6px; }
  .wf-blog-carousel.wfbc-arrows-outside .wfbc-stage .wfbc-next { right: 6px; }
}
@media (max-width: 640px) {
  .wf-blog-carousel .wfbc-heading { font-size: 28px; }
  .wf-blog-carousel .wfbc-arrow { width: 40px; height: 40px; }
}
