/* ============================================================
   Wright's Freelancing Co. — main.css
   Brand: Navy #1B2A4A | Gold #C9A84C | Teal #00BFA6
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #1B2A4A;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: #C9A84C; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Layout ───────────────────────────────────────────────── */
.wfc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wfc-section        { padding: 6rem 0; }
.wfc-section--navy  { background: #1B2A4A; }
.wfc-section--white { background: #fff; }
.wfc-section--gray  { background: #f0f4f8; }

/* ── Reveal animation ─────────────────────────────────────── */
.wfc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.wfc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ──────────────────────────────────────────────── */
.wfc-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: .75rem;
  font-weight: 700;
  font-size: .9rem;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
  text-decoration: none;
}
.wfc-btn:hover { transform: scale(1.04); }

.wfc-btn--gold {
  background: linear-gradient(135deg, #C9A84C, #e8c96e);
  color: #1B2A4A;
  box-shadow: 0 8px 32px rgba(201,168,76,.3);
}
.wfc-btn--gold:hover { color: #1B2A4A; }

.wfc-btn--navy {
  background: linear-gradient(135deg, #1B2A4A, #2a3f6a);
  color: #fff;
  box-shadow: 0 8px 32px rgba(27,42,74,.25);
}
.wfc-btn--navy:hover { color: #C9A84C; }

.wfc-btn--outline {
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  background: transparent;
}
.wfc-btn--outline:hover { border-color: #C9A84C; color: #C9A84C; }

.wfc-btn--outline-light {
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.75);
  background: transparent;
}
.wfc-btn--outline-light:hover { border-color: #00BFA6; color: #00BFA6; }

.wfc-btn--outline-navy {
  border: 2px solid #1B2A4A;
  color: #1B2A4A;
  background: transparent;
}
.wfc-btn--outline-navy:hover { background: #1B2A4A; color: #C9A84C; }

.wfc-btn--sm  { padding: .5rem 1rem; font-size: .8rem; }
.wfc-btn--lg  { padding: 1rem 1.75rem; font-size: 1rem; }
.wfc-btn--full { width: 100%; justify-content: center; padding: 1rem; }

/* ── Badges & Labels ──────────────────────────────────────── */
.wfc-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem 1rem;
  border-radius: 9999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.wfc-badge--teal        { background: rgba(0,191,166,.15); border: 1px solid rgba(0,191,166,.4); color: #00BFA6; }
.wfc-badge--gold        { background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3); color: #C9A84C; }
.wfc-badge--gold-outline{ background: transparent; border: 1px solid rgba(201,168,76,.5); color: #C9A84C; }
.wfc-badge--navy-light  { background: rgba(27,42,74,.07); color: #1B2A4A; }

.wfc-label       { font-size: .7rem; font-weight: 700; letter-spacing: .15em; }
.wfc-label--gold { color: #C9A84C; }

.wfc-tag              { display: inline-block; padding: .25rem .75rem; border-radius: 9999px; font-size: .75rem; font-weight: 600; }
.wfc-tag--teal        { background: rgba(0,191,166,.1); border: 1px solid rgba(0,191,166,.25); color: #00BFA6; }

/* ── Text colors ──────────────────────────────────────────── */
.wfc-text--gold  { color: #C9A84C; }
.wfc-text--teal  { color: #00BFA6; }
.wfc-text--navy  { color: #1B2A4A; }

/* ── Section headers ──────────────────────────────────────── */
.wfc-section-header         { margin-bottom: 4rem; }
.wfc-section-header--center { text-align: center; }

.wfc-section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.2;
  margin: .75rem 0 1rem;
  color: #1B2A4A;
}
.wfc-section-title--light { color: #fff; }

.wfc-section-subtitle {
  font-size: 1.1rem;
  color: #5a6a80;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}
.wfc-section-subtitle--light { color: rgba(255,255,255,.55); }

/* ══ NAV ════════════════════════════════════════════════════ */
.wfc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.wfc-nav.is-scrolled {
  background: rgba(27,42,74,.97);
  box-shadow: 0 2px 32px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
}

.wfc-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wfc-nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.wfc-nav__logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  flex-shrink: 0;
}
.wfc-nav__logo-text { display: none; }
@media (min-width: 640px) { .wfc-nav__logo-text { display: block; } }
.wfc-nav__logo-name { color: #fff; font-weight: 700; font-size: .875rem; line-height: 1.3; }
.wfc-nav__logo-sub  { color: #00BFA6; font-size: .65rem; letter-spacing: .2em; font-weight: 700; }

.wfc-nav__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 768px) { .wfc-nav__links { display: flex; } }

/* WP nav menu reset */
.wfc-nav__menu { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.wfc-nav__menu li a {
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color .2s;
}
.wfc-nav__menu li a:hover { color: #C9A84C; }

/* Burger */
.wfc-nav__burger { display: flex; color: #fff; padding: .25rem; }
@media (min-width: 768px) { .wfc-nav__burger { display: none; } }

.icon-close { display: none; }
.wfc-nav.is-open .icon-menu  { display: none; }
.wfc-nav.is-open .icon-close { display: block; }

/* Mobile menu */
.wfc-nav__mobile {
  display: none;
  padding: 0 1.5rem 1.5rem;
  background: rgba(27,42,74,.98);
}
.wfc-nav.is-open .wfc-nav__mobile { display: block; }

.wfc-nav__mobile-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: .875rem 0;
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
  transition: color .2s;
}
.wfc-nav__mobile-link:hover { color: #C9A84C; }
.wfc-nav__mobile-cta { margin-top: 1rem; justify-content: center; }

/* ══ HERO ════════════════════════════════════════════════════ */
.wfc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1a2e 0%, #1B2A4A 55%, #1a3550 100%);
}

.wfc-hero__grid-bg {
  position: absolute; inset: 0;
  opacity: .1;
  background-image:
    linear-gradient(rgba(0,191,166,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,166,.4) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.wfc-hero__glow {
  position: absolute;
  top: 33%; right: 33%;
  width: 24rem; height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, #00BFA6 0%, transparent 70%);
  filter: blur(60px);
  opacity: .1;
  pointer-events: none;
}

.wfc-hero__inner {
  position: relative;
  display: grid;
  gap: 3rem;
  padding-top: 8rem;
  padding-bottom: 5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .wfc-hero__inner { grid-template-columns: 1fr 1fr; }
}

.wfc-hero__headline {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 1.25rem 0 1rem;
}
.wfc-hero__subhead {
  font-size: 1.2rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.wfc-hero__services-list {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 2.5rem;
}
.wfc-hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.wfc-hero__trust { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.wfc-hero__trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}
.wfc-hero__trust-item strong { color: #fff; }

/* Hero photo panel */
.wfc-hero__photo-wrap {
  display: none;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) { .wfc-hero__photo-wrap { display: flex; } }

.wfc-hero__photo-frame {
  position: relative;
  width: 420px; height: 480px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.wfc-hero__photo {
  width: 100%; height: 100%;
  object-fit: cover;
}
.wfc-hero__photo-overlay {
  position: absolute; inset: 0;
  border-radius: 1rem;
  background: linear-gradient(to top, rgba(27,42,74,.6) 0%, transparent 50%);
}

.wfc-hero__logo-badge {
  position: absolute;
  top: -1.25rem; right: -1.25rem;
  width: 5rem; height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #C9A84C;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.wfc-hero__logo-badge img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: .25rem;
}

.wfc-hero__float-tag {
  position: absolute;
  bottom: -1rem; left: -1rem;
  padding: .75rem 1rem;
  border-radius: .75rem;
  background: rgba(27,42,74,.95);
  border: 1px solid rgba(201,168,76,.4);
  backdrop-filter: blur(12px);
}
.wfc-hero__float-tag-title { font-size: .75rem; font-weight: 900; color: #C9A84C; }
.wfc-hero__float-tag-sub   { font-size: .7rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

.wfc-hero__scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  animation: bounce 2s infinite;
}
.wfc-hero__scroll-cue span { font-size: .65rem; letter-spacing: .2em; color: rgba(255,255,255,.3); }
.wfc-hero__scroll-cue svg  { color: rgba(255,255,255,.3); }

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ══ STATS ═══════════════════════════════════════════════════ */
.wfc-stats {
  background: #1B2A4A;
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 2rem 0;
}
.wfc-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .wfc-stats__grid { grid-template-columns: repeat(4, 1fr); } }

.wfc-stats__item { text-align: center; }
.wfc-stats__num  { font-size: 1.5rem; font-weight: 900; color: #C9A84C; margin-bottom: .2rem; }
.wfc-stats__label{ font-size: .75rem; color: rgba(255,255,255,.45); }

/* ══ SERVICES ════════════════════════════════════════════════ */
.wfc-services { background: #f8f9fc; }
.wfc-services__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .wfc-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wfc-services__grid { grid-template-columns: repeat(3, 1fr); } }

.wfc-service-card {
  background: #fff;
  border: 2px solid #e8edf4;
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.wfc-service-card:hover {
  border-color: #1B2A4A;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}

.wfc-service-card--highlight {
  background: linear-gradient(135deg, #1B2A4A, #243660);
  border-color: rgba(201,168,76,.4);
}
.wfc-service-card--highlight:hover { border-color: #C9A84C; }

.wfc-service-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.wfc-service-card__icon {
  padding: .75rem;
  border-radius: .75rem;
  background: rgba(27,42,74,.06);
  color: #1B2A4A;
}
.wfc-service-card__icon--gold {
  background: rgba(201,168,76,.18);
  color: #C9A84C;
}
.wfc-service-card__tag {
  font-size: .7rem; font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 9999px;
  background: rgba(27,42,74,.05);
  color: #5a6a80;
}
.wfc-service-card__tag--teal {
  background: rgba(0,191,166,.12);
  color: #00BFA6;
}

.wfc-service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: #1B2A4A;
}
.wfc-service-card--highlight .wfc-service-card__title { color: #fff; }

.wfc-service-card__desc {
  font-size: .875rem;
  line-height: 1.75;
  color: #5a6a80;
  flex: 1;
  margin-bottom: 1.25rem;
}
.wfc-service-card--highlight .wfc-service-card__desc { color: rgba(255,255,255,.68); }

.wfc-service-card__features { display: flex; flex-direction: column; gap: .5rem; }
.wfc-service-card__features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: #3a4a5a;
}
.wfc-service-card__features li::before {
  content: '';
  width: .8rem; height: .8rem;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A84C'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}
.wfc-service-card--highlight .wfc-service-card__features li { color: rgba(255,255,255,.75); }
.wfc-service-card--highlight .wfc-service-card__features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300BFA6'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
}

.wfc-services__cta { text-align: center; margin-top: 3.5rem; }

/* ══ ABOUT ═══════════════════════════════════════════════════ */
.wfc-about__grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 1024px) { .wfc-about__grid { grid-template-columns: 1fr 1fr; } }

.wfc-about__photos { position: relative; }
.wfc-about__photo-primary-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 460px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.wfc-about__photo-primary {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.wfc-about__photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(27,42,74,.95), transparent);
}
.wfc-about__photo-name  { font-weight: 900; font-size: 1.2rem; color: #fff; }
.wfc-about__photo-title { font-size: .875rem; color: #00BFA6; }

.wfc-about__photo-secondary-wrap {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 12rem; height: 12rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid #C9A84C;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.wfc-about__photo-secondary {
  width: 100%; height: 100%;
  object-fit: cover;
}

.wfc-about__asheville-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  backdrop-filter: blur(8px);
}

.wfc-about__story  { margin-bottom: 4rem; padding-bottom: 1rem; }
.wfc-about__headline {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin: 1.25rem 0 1.25rem;
}
.wfc-about__body {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.85;
}
.wfc-about__body strong { color: #fff; }
.wfc-about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}

/* Skills grid */
.wfc-about__skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.wfc-skill-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .75rem;
  padding: 1rem;
}
.wfc-skill-card__dot {
  width: .625rem; height: .625rem;
  border-radius: 50%;
  margin-bottom: .5rem;
}
.wfc-skill-card__cat {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.wfc-skill-card__list { display: flex; flex-direction: column; gap: .25rem; }
.wfc-skill-card__list li {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
}
.wfc-skill-card__dot-sm {
  width: .25rem; height: .25rem;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Brands ecosystem */
.wfc-brands {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.wfc-brands__label {
  text-align: center;
  font-size: .65rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.3);
  margin-bottom: 2rem;
}
.wfc-brands__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px)  { .wfc-brands__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .wfc-brands__grid { grid-template-columns: repeat(6, 1fr); } }

.wfc-brand-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .75rem;
  padding: 1rem;
  text-align: center;
}
.wfc-brand-card__dot  { width: .5rem; height: .5rem; border-radius: 50%; margin: 0 auto .5rem; }
.wfc-brand-card__name { font-size: .75rem; font-weight: 600; color: #fff; line-height: 1.4; margin-bottom: .25rem; }
.wfc-brand-card__url  { font-size: .7rem; color: rgba(255,255,255,.3); }

/* ══ LOCAL FOCUS ══════════════════════════════════════════════ */
.wfc-local__grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px)  { .wfc-local__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wfc-local__grid { grid-template-columns: repeat(3, 1fr); } }

.wfc-niche-card {
  background: #f8f9fc;
  border: 2px solid transparent;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color .3s, transform .3s;
  cursor: default;
}
.wfc-niche-card:hover {
  border-color: #C9A84C;
  transform: translateY(-4px);
}
.wfc-niche-card__icon  { font-size: 1.875rem; margin-bottom: .75rem; }
.wfc-niche-card__title { font-weight: 700; font-size: 1rem; color: #1B2A4A; margin-bottom: .5rem; }
.wfc-niche-card__desc  { font-size: .875rem; color: #5a6a80; line-height: 1.7; }

/* Approach panel */
.wfc-approach {
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #1B2A4A, #2a3f6a);
  box-shadow: 0 8px 48px rgba(27,42,74,.3);
  display: grid;
}
@media (min-width: 768px) { .wfc-approach { grid-template-columns: 1fr 1fr; } }

.wfc-approach__photo-col { position: relative; min-height: 320px; }
.wfc-approach__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.wfc-approach__photo-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(27,42,74,.8));
}

.wfc-approach__copy-col {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wfc-approach__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin: 1rem 0;
  line-height: 1.3;
}
.wfc-approach__desc {
  font-size: .875rem;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.wfc-approach__steps { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.75rem; }
.wfc-approach__step {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem;
  border-radius: .75rem;
  background: rgba(255,255,255,.06);
}
.wfc-approach__step-num {
  font-size: .75rem;
  font-weight: 900;
  color: #C9A84C;
  width: 5rem;
  flex-shrink: 0;
  padding-top: .1rem;
}
.wfc-approach__step-text { font-size: .75rem; color: rgba(255,255,255,.65); }

/* ══ STRATEGY ════════════════════════════════════════════════ */
.wfc-toe-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) { .wfc-toe-grid { grid-template-columns: repeat(3, 1fr); } }

.wfc-toe-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.wfc-toe-card__letter {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.875rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1B2A4A, #2a3f6a);
  color: #C9A84C;
}
.wfc-toe-card__title { font-size: 1.2rem; font-weight: 900; color: #1B2A4A; margin-bottom: .75rem; }
.wfc-toe-card__desc  { font-size: .875rem; color: #5a6a80; line-height: 1.7; }

/* 4-act tabs */
.wfc-acts { border-radius: 1rem; overflow: hidden; box-shadow: 0 8px 48px rgba(0,0,0,.1); }

.wfc-acts__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #1B2A4A;
}
.wfc-acts__tab {
  padding: 1rem 1.25rem;
  text-align: left;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: background .2s, border-color .2s;
  background: transparent;
}
.wfc-acts__tab--active,
.wfc-acts__tab:hover { border-bottom-color: currentColor; }

.wfc-acts__tab-label { display: block; font-size: .7rem; font-weight: 700; }
.wfc-acts__tab-title {
  display: none;
  font-weight: 900;
  font-size: .875rem;
  color: #fff;
  margin-top: .25rem;
}
.wfc-acts__tab-sub {
  display: none;
  font-size: .7rem;
  color: rgba(255,255,255,.45);
  margin-top: .1rem;
}
@media (min-width: 640px)  { .wfc-acts__tab-title { display: block; } }
@media (min-width: 768px)  { .wfc-acts__tab-sub   { display: block; } }
.wfc-acts__tab--active .wfc-acts__tab-title { color: #1B2A4A; }
.wfc-acts__tab--active .wfc-acts__tab-sub   { color: rgba(27,42,74,.65); }

.wfc-acts__panel { display: none; padding: 2rem; background: #fff; }
.wfc-acts__panel--active { display: block; }

.wfc-acts__panel-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.wfc-acts__panel-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .8rem;
}
.wfc-acts__panel-title { font-size: 1.5rem; font-weight: 900; color: #1B2A4A; }
.wfc-acts__panel-sub   { font-size: .875rem; color: #5a6a80; }

.wfc-acts__points {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) { .wfc-acts__points { grid-template-columns: repeat(2, 1fr); } }

.wfc-acts__point {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem;
  border-radius: .75rem;
  background: #f8f9fc;
}
.wfc-acts__point-num {
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}
.wfc-acts__point-text { font-size: .875rem; color: #3a4a5a; line-height: 1.65; }

/* Timeline */
.wfc-timeline {
  margin-top: 2.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.wfc-timeline__title {
  font-size: 1.2rem;
  font-weight: 900;
  color: #1B2A4A;
  text-align: center;
  margin-bottom: 1.5rem;
}
.wfc-timeline__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px)  { .wfc-timeline__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wfc-timeline__grid { grid-template-columns: repeat(3, 1fr); } }

.wfc-timeline__item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem;
  border-radius: .75rem;
  background: #f8f9fc;
}
.wfc-timeline__dot    { width: .5rem; height: .5rem; border-radius: 50%; flex-shrink: 0; margin-top: .4rem; }
.wfc-timeline__period { font-weight: 700; font-size: .875rem; margin-bottom: .2rem; }
.wfc-timeline__text   { font-size: .875rem; color: #5a6a80; }

.wfc-timeline__quote {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: .75rem;
  background: linear-gradient(135deg, #1B2A4A, #243660);
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
}

/* ══ BLOG ════════════════════════════════════════════════════ */
.wfc-blog__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) { .wfc-blog__grid { grid-template-columns: repeat(3, 1fr); } }

.wfc-blog-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s;
}
.wfc-blog-card:hover { border-color: rgba(201,168,76,.4); }

.wfc-blog-card__body   { padding: 1.5rem; flex: 1; }
.wfc-blog-card__meta   { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.wfc-blog-card__tag    { font-size: .7rem; font-weight: 700; padding: .25rem .75rem; border-radius: 9999px; border: 1px solid; }
.wfc-blog-card__time   { font-size: .75rem; color: rgba(255,255,255,.3); }
.wfc-blog-card__title  { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .75rem; line-height: 1.4; }
.wfc-blog-card__title a { color: inherit; text-decoration: none; }
.wfc-blog-card__title a:hover { color: #C9A84C; }
.wfc-blog-card__excerpt{ font-size: .875rem; color: rgba(255,255,255,.58); line-height: 1.75; }

.wfc-blog-card__footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wfc-blog-card__author { font-size: .75rem; font-weight: 600; color: #fff; }
.wfc-blog-card__date   { font-size: .7rem; color: rgba(255,255,255,.3); }
.wfc-blog-card__read-link {
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .25rem;
  text-decoration: none;
}
.wfc-blog-card__read-link:hover { opacity: .8; }

.wfc-blog__links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ══ TESTIMONIALS ════════════════════════════════════════════ */
.wfc-testimonials__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .wfc-testimonials__grid { grid-template-columns: repeat(3, 1fr); } }

.wfc-testi-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.wfc-testi-card__photo-wrap { position: relative; height: 13rem; overflow: hidden; }
.wfc-testi-card__photo {
  width: 100%; height: 100%;
  object-fit: cover;
}
.wfc-testi-card__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,42,74,.7), transparent);
}
.wfc-testi-card__stars {
  position: absolute;
  bottom: .75rem; left: 1rem;
  font-size: .875rem;
  color: #C9A84C;
  letter-spacing: .1em;
}

.wfc-testi-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.wfc-testi-card__quote-icon { font-size: 1.5rem; color: #C9A84C; margin-bottom: .75rem; line-height: 1; }
.wfc-testi-card__text {
  font-size: .875rem;
  color: #3a4a5a;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.25rem;
}
.wfc-testi-card__name { font-weight: 700; font-size: .875rem; color: #1B2A4A; }
.wfc-testi-card__loc  { font-size: .75rem; color: #5a6a80; display: flex; align-items: center; gap: .25rem; margin-top: .2rem; }

/* ══ CTA BANNER ══════════════════════════════════════════════ */
.wfc-cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, #C9A84C 0%, #e8c96e 50%, #C9A84C 100%);
}
.wfc-cta-banner__inner { text-align: center; }
.wfc-cta-banner__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #1B2A4A;
  margin-bottom: 1rem;
}
.wfc-cta-banner__sub {
  font-size: 1.1rem;
  color: rgba(27,42,74,.68);
  max-width: 38rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.wfc-cta-banner__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ══ CONTACT ═════════════════════════════════════════════════ */
.wfc-contact__grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) { .wfc-contact__grid { grid-template-columns: 1fr 1fr; } }

.wfc-contact__headline {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #1B2A4A;
  line-height: 1.25;
  margin: 1rem 0 1.5rem;
}
.wfc-contact__desc { font-size: 1rem; color: #5a6a80; line-height: 1.75; margin-bottom: 2rem; }

.wfc-contact__details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.wfc-contact__detail-item { display: flex; align-items: center; gap: .75rem; }
.wfc-contact__detail-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(27,42,74,.06);
  color: #1B2A4A;
  flex-shrink: 0;
}
.wfc-contact__detail-label { font-size: .7rem; color: #9ca3af; text-transform: uppercase; letter-spacing: .05em; }
.wfc-contact__detail-val   { font-size: .875rem; font-weight: 500; color: #1B2A4A; }
.wfc-contact__detail-val a { color: #1B2A4A; }
.wfc-contact__detail-val a:hover { color: #C9A84C; }

.wfc-contact__bio-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: #f8f9fc;
}
.wfc-contact__bio-photo-wrap {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #C9A84C;
  flex-shrink: 0;
}
.wfc-contact__bio-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.wfc-contact__bio-name  { font-weight: 700; font-size: .875rem; color: #1B2A4A; margin-bottom: .2rem; }
.wfc-contact__bio-title { font-size: .75rem; color: #5a6a80; margin-bottom: .5rem; }

.wfc-contact__socials { display: flex; gap: .5rem; }
.wfc-social-btn {
  width: 2rem; height: 2rem;
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(27,42,74,.07);
  color: #1B2A4A;
  transition: background .2s, color .2s, transform .2s;
}
.wfc-social-btn:hover { background: #1B2A4A; color: #C9A84C; transform: scale(1.1); }

.wfc-contact__form-box {
  background: #f8f9fc;
  border: 2px solid #e8edf4;
  border-radius: 1rem;
  padding: 2rem;
}
.wfc-contact__form-title { font-size: 1.2rem; font-weight: 900; color: #1B2A4A; margin-bottom: .25rem; }
.wfc-contact__form-sub   { font-size: .875rem; color: #5a6a80; margin-bottom: 1.5rem; }

/* Form */
.wfc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .wfc-form__row { grid-template-columns: 1fr; } }

.wfc-form__group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.wfc-form__label { font-size: .75rem; font-weight: 700; color: #1B2A4A; margin-bottom: .375rem; }
.wfc-form__input {
  padding: .75rem 1rem;
  border-radius: .75rem;
  border: 1px solid #d0dae8;
  background: #fff;
  font-size: .875rem;
  font-family: inherit;
  color: #1B2A4A;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.wfc-form__input:focus {
  border-color: #C9A84C;
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.wfc-form__select { appearance: none; }
.wfc-form__textarea { resize: vertical; min-height: 100px; }

.wfc-form__error {
  font-size: .8rem;
  color: #ef4444;
  margin-bottom: .75rem;
  min-height: 1rem;
}

.wfc-form__disclaimer { font-size: .75rem; color: #9ca3af; text-align: center; margin-top: .75rem; }

/* Success state */
.wfc-form__success {
  display: none;
  text-align: center;
  padding: 2.5rem 0;
}
.wfc-form__success.is-visible { display: block; }
.wfc-form__success-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: #00BFA6;
  color: #fff;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.wfc-form__success h3 { font-size: 1.5rem; font-weight: 900; color: #1B2A4A; margin-bottom: .5rem; }
.wfc-form__success p  { color: #5a6a80; }

/* ══ FOOTER ══════════════════════════════════════════════════ */
.wfc-footer {
  background: #0d1a2e;
  padding: 4rem 0 0;
}
.wfc-footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .wfc-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.wfc-footer__brand { }
.wfc-footer__logo-wrap { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; text-decoration: none; }
.wfc-footer__logo      { width: 3rem; height: 3rem; border-radius: 50%; object-fit: contain; background: #fff; border: 2px solid #C9A84C; padding: .2rem; flex-shrink: 0; }
.wfc-footer__logo-name { color: #fff; font-weight: 700; font-size: .875rem; }
.wfc-footer__logo-loc  { color: #00BFA6; font-size: .7rem; letter-spacing: .1em; }

.wfc-footer__tagline { font-size: .875rem; color: rgba(255,255,255,.38); line-height: 1.7; margin-bottom: 1.25rem; }
.wfc-footer__socials { display: flex; gap: .5rem; }
.wfc-footer__social-btn {
  width: 2rem; height: 2rem;
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  transition: background .2s, color .2s;
}
.wfc-footer__social-btn:hover { background: rgba(255,255,255,.12); color: #C9A84C; }

.wfc-footer__col-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 1rem;
}
.wfc-footer__links { display: flex; flex-direction: column; gap: .5rem; }
.wfc-footer__links a { font-size: .875rem; color: rgba(255,255,255,.38); transition: color .2s; }
.wfc-footer__links a:hover { color: rgba(255,255,255,.85); }

.wfc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .wfc-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.wfc-footer__copy { font-size: .75rem; color: rgba(255,255,255,.22); }
.wfc-footer__copy a { color: inherit; }
.wfc-footer__copy a:hover { color: rgba(255,255,255,.5); }

.wfc-footer__legal { display: flex; gap: 1.5rem; }
.wfc-footer__legal a { font-size: .75rem; color: rgba(255,255,255,.22); }
.wfc-footer__legal a:hover { color: rgba(255,255,255,.5); }

/* ══ INNER PAGES ═════════════════════════════════════════════ */
.wfc-inner-main { padding-top: 7rem; }
.wfc-inner-container { width: 100%; }
.wfc-inner-container--narrow { max-width: 800px; }

/* Archive / blog list */
.wfc-archive__header { margin-bottom: 3rem; }
.wfc-archive__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .wfc-archive__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .wfc-archive__grid { grid-template-columns: repeat(3, 1fr); } }

.wfc-post-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
}
.wfc-post-card__thumb-wrap { aspect-ratio: 16/9; overflow: hidden; }
.wfc-post-card__thumb { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.wfc-post-card:hover .wfc-post-card__thumb { transform: scale(1.04); }

.wfc-post-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.wfc-post-card__tag  { display: inline-block; font-size: .7rem; font-weight: 700; color: #C9A84C; background: rgba(201,168,76,.1); padding: .2rem .65rem; border-radius: 9999px; margin-bottom: .75rem; }
.wfc-post-card__title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; flex: 1; }
.wfc-post-card__title a { color: #1B2A4A; }
.wfc-post-card__title a:hover { color: #C9A84C; }
.wfc-post-card__excerpt { font-size: .875rem; color: #5a6a80; line-height: 1.7; margin-bottom: 1rem; }
.wfc-post-card__meta { font-size: .75rem; color: #9ca3af; display: flex; gap: 1rem; }

/* Single post */
.wfc-single-post__header { margin-bottom: 2rem; }
.wfc-single-post__title  { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 900; color: #1B2A4A; margin: 1rem 0; line-height: 1.25; }
.wfc-single-post__meta   { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .875rem; color: #5a6a80; }

.wfc-single-post__thumb-wrap { border-radius: 1rem; overflow: hidden; margin-bottom: 2rem; aspect-ratio: 16/9; }
.wfc-single-post__thumb { width: 100%; height: 100%; object-fit: cover; }

.wfc-single-post__footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #e8edf4; }
.wfc-single-post__tags   { font-size: .875rem; color: #5a6a80; margin-bottom: 1.5rem; }
.wfc-single-post__nav    { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.wfc-post-nav__link { font-size: .875rem; font-weight: 600; color: #1B2A4A; }
.wfc-post-nav__link:hover { color: #C9A84C; }

/* Prose styles for post/page content */
.wfc-prose { line-height: 1.8; color: #3a4a5a; }
.wfc-prose h2 { font-size: 1.5rem; font-weight: 900; color: #1B2A4A; margin: 2rem 0 1rem; }
.wfc-prose h3 { font-size: 1.2rem; font-weight: 700; color: #1B2A4A; margin: 1.5rem 0 .75rem; }
.wfc-prose p  { margin-bottom: 1.25rem; }
.wfc-prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.wfc-prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.wfc-prose li { margin-bottom: .375rem; }
.wfc-prose a  { color: #C9A84C; text-decoration: underline; }
.wfc-prose blockquote {
  border-left: 4px solid #C9A84C;
  padding: 1rem 1.5rem;
  background: rgba(201,168,76,.06);
  border-radius: 0 .5rem .5rem 0;
  margin: 1.5rem 0;
  font-style: italic;
}
.wfc-prose img { border-radius: .75rem; margin: 1.5rem 0; }
.wfc-prose strong { color: #1B2A4A; font-weight: 700; }

/* Post CTA */
.wfc-post-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #1B2A4A, #2a3f6a);
  border-radius: 1rem;
  text-align: center;
}
.wfc-post-cta__title { font-size: 1.3rem; font-weight: 900; color: #fff; margin-bottom: .75rem; }
.wfc-post-cta__sub   { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }

/* No posts */
.wfc-no-posts { text-align: center; padding: 4rem 0; }
.wfc-no-posts h2 { font-size: 1.5rem; font-weight: 900; color: #1B2A4A; margin-bottom: .75rem; }
.wfc-no-posts p  { color: #5a6a80; margin-bottom: 2rem; }

/* Pagination */
.wfc-archive__grid + .nav-links,
.wfc-inner-container + .nav-links,
nav.navigation.pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: .5rem;
}
.page-numbers {
  padding: .5rem 1rem;
  border-radius: .5rem;
  border: 1px solid #e8edf4;
  font-size: .875rem;
  color: #1B2A4A;
  text-decoration: none;
}
.page-numbers.current,
.page-numbers:hover { background: #1B2A4A; color: #C9A84C; border-color: #1B2A4A; }

/* ── Services illustration ────────────────────────────────── */
.wfc-services__illustration {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.wfc-services__illustration-img {
  max-width: 640px;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}

/* ── Mr. Wide Awake banner ────────────────────────────────── */
.wfc-mwa-banner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  max-height: 160px;
}
.wfc-mwa-banner__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.wfc-mwa-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,26,46,.75) 0%, rgba(13,26,46,.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 2rem;
}
.wfc-mwa-banner__label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: #00BFA6;
  margin-bottom: .35rem;
}
.wfc-mwa-banner__name {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.wfc-mwa-banner__sub {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-top: .25rem;
}

/* ── Services infographic callout ─────────────────────────── */
.wfc-services-infographic {
  margin-bottom: 3rem;
}
.wfc-services-infographic__inner {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #f8f9fc;
  border: 2px solid #e8edf4;
  display: grid;
  align-items: center;
}
@media (min-width: 768px) {
  .wfc-services-infographic__inner { grid-template-columns: 380px 1fr; }
}
.wfc-services-infographic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  display: block;
}
.wfc-services-infographic__copy {
  padding: 2.5rem;
}
.wfc-services-infographic__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1B2A4A;
  margin: .75rem 0 1rem;
  line-height: 1.3;
}
.wfc-services-infographic__desc {
  font-size: .9rem;
  color: #5a6a80;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ── Responsive utilities ──────────────────────────────────── */
@media (max-width: 640px) {
  .wfc-section { padding: 4rem 0; }
  .wfc-about__photo-secondary-wrap { width: 8rem; height: 8rem; }
  .wfc-acts__tabs { grid-template-columns: repeat(2, 1fr); }
}
