

:root {
  --wfs-bg:        #0B0B0C;
  --wfs-ink:       #EAE2D4;
  --wfs-muted:     #8A847A;
  --wfs-dim:       #55504A;
  --wfs-line:      rgba(234, 226, 212, 0.10);
  --wfs-line-2:    rgba(234, 226, 212, 0.20);
  --wfs-surface:   #121113;
  --wfs-paper:     #1A1816;
  --wfs-blue:     #0083c9;
  --wfs-blue-2:   #65add5;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
}

body.wfs {
  background: var(--wfs-bg);
  color: var(--wfs-ink);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.wfs em {
  font-style: normal;
  color: var(--wfs-blue-2);
  font-weight: inherit;
}

body.wfs::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='2' seed='9'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 0.95 0 0 0 0 0.85 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.wfs-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 40px;
  background: rgba(11, 11, 12, 0.72);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid var(--wfs-line);
}
.wfs-nav-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.wfs-logo {
  cursor: pointer;
  display: flex; align-items: center;
  flex-shrink: 0;
}
.wfs-logo img {
  height: 30px; width: auto; display: block;
  transition: opacity 0.2s ease;
}
.wfs-logo:hover img { opacity: 0.8; }

.wfs-navlinks { display: flex; gap: 36px; align-items: center; }
.wfs-navlink {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  color: var(--wfs-muted);
  cursor: pointer;
  letter-spacing: 0.01em;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.wfs-navlink::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--wfs-ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.wfs-navlink:hover { color: var(--wfs-ink); }
.wfs-navlink:hover::after { transform: scaleX(1); }
.wfs-navlink.active { color: var(--wfs-ink); }
.wfs-navlink.active::after { transform: scaleX(1); background: var(--wfs-blue); }

.wfs-nav-right {
  display: flex; align-items: center; gap: 20px;
  font-size: 12px; color: var(--wfs-muted);
  letter-spacing: 0.02em;
}
.wfs-nav-right a {
  color: var(--wfs-ink);
  border-bottom: 1px solid var(--wfs-blue);
  padding-bottom: 2px;
}

.wfs-lang-toggle { display: flex; gap: 2px; align-items: center; }
.wfs-lang {
  background: transparent;
  border: 1px solid transparent;
  color: var(--wfs-dim);
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 3px 7px;
  border-radius: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.wfs-lang:hover { color: var(--wfs-muted); }
.wfs-lang.active { color: var(--wfs-ink); border-color: var(--wfs-line-2); }

.wfs-mobile-btn {
  display: none;
  background: transparent; border: 1px solid var(--wfs-line);
  color: var(--wfs-ink);
  padding: 8px; border-radius: 2px; cursor: pointer;
}
.wfs-mobile-btn svg { display: block; }
.wfs-mobile-btn .close-icon { display: none; }
.wfs-mobile-btn.open .menu-icon { display: none; }
.wfs-mobile-btn.open .close-icon { display: block; }

.wfs-mobile-menu {
  position: fixed; top: 73px; left: 0; right: 0;
  background: var(--wfs-bg);
  border-bottom: 1px solid var(--wfs-line);
  padding: 30px 40px; z-index: 49;
  display: none; flex-direction: column; gap: 20px;
}
.wfs-mobile-menu.open { display: flex; }
.wfs-mobile-menu .wfs-navlink { font-size: 20px; letter-spacing: -0.01em; }

.wfs-main { position: relative; z-index: 2; padding-top: 73px; }
.wfs-page-enter { animation: wfs-fade 0.6s cubic-bezier(.2,.8,.2,1) both; }

@keyframes wfs-fade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wfs-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes wfs-rise {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes wfs-ken {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1.0); }
}

.wfs-hero {
  position: relative;
  height: calc(100vh - 73px);
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  color: var(--wfs-ink);
}
.wfs-hero-bg {
  position: absolute; inset: 0;
  
  z-index: 0;
  
}
.wfs-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 12, 0.25) 0%, rgba(11, 11, 12, 0.55) 50%, rgba(11, 11, 12, 0.95) 100%),
    linear-gradient(90deg, rgba(11, 11, 12, 0.3) 0%, transparent 50%);
}
.wfs-hero-inner {
  position: relative; z-index: 2;
  max-width: 1440px; width: 100%; margin: 0 auto;
  padding: 0 40px 80px;
}
.wfs-hero-top {
  position: absolute; top: 40px; left: 40px; right: 40px;
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--wfs-muted);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.wfs-hero-top span { animation: wfs-fade-in 1.2s 0.3s both; }

.wfs-hero h1 {
  font-weight: 300;
  font-size: clamp(52px, 9vw, 136px);
  line-height: 1.16;
  letter-spacing: -0.045em;
  color: var(--wfs-ink);
  max-width: 1200px;
  margin: 0 0 32px;
}
.wfs-hero h1 em { color: var(--wfs-blue-2); font-weight: 300; }
.wfs-hero h1 > span { display: block; overflow: hidden; }
.wfs-hero h1 > span > span {
  display: block;
  animation: wfs-rise 1.1s cubic-bezier(.2,.8,.2,1) both;
}
.wfs-hero h1 > span:nth-child(2) > span { animation-delay: 0.12s; }
.wfs-hero h1 > span:nth-child(3) > span { animation-delay: 0.24s; }

.wfs-hero-meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; max-width: 1100px; flex-wrap: wrap;
  animation: wfs-fade-in 1.5s 0.7s both;
}
.wfs-hero-meta p {
  color: var(--wfs-muted);
  max-width: 440px;
  font-size: 15px; line-height: 1.6;
  margin: 0;
  text-align: justify;
}

.wfs-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; border: none;
  padding: 14px 0;
  color: var(--wfs-ink);
  font-family: inherit;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid var(--wfs-ink);
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}
.wfs-cta:hover { color: var(--wfs-blue-2); border-color: var(--wfs-blue-2); gap: 18px; }
.wfs-cta-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid currentColor;
  display: grid; place-items: center;
  transition: transform 0.3s ease;
}
.wfs-cta-arrow svg { display: block; }
.wfs-cta:hover .wfs-cta-arrow { transform: rotate(-45deg); }

.wfs-cta-solid {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  background: var(--wfs-ink); color: var(--wfs-bg);
  border: none; cursor: pointer;
  font-family: inherit;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}
.wfs-cta-solid:hover { background: var(--wfs-blue); color: var(--wfs-ink); }

.wfs-section {
  max-width: 1440px; margin: 0 auto;
  padding: 140px 40px;
  position: relative;
}
.wfs-section-sm { padding: 80px 40px; max-width: 1440px; margin: 0 auto; }

.wfs-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; color: var(--wfs-muted);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 500;
}
.wfs-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--wfs-blue);
}

.wfs-h2 {
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 1100px;
  margin: 0;
}
.wfs-h2 em { color: var(--wfs-blue-2); font-weight: 300; }

.wfs-lede {
  font-size: 17px; line-height: 1.65;
  color: var(--wfs-muted);
  max-width: 620px;
  margin-top: 28px;
  text-align: justify;
}

.wfs-manifesto {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
  max-width: 1440px; margin: 0 auto;
  padding: 120px 40px;
  border-top: 1px solid var(--wfs-line);
}
.wfs-manifesto-num {
  font-weight: 200;
  font-size: 72px;
  color: var(--wfs-blue);
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.wfs-manifesto-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wfs-muted);
  margin-top: 16px;
  font-weight: 500;
}
.wfs-manifesto-text {
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--wfs-ink);
  text-align: justify;
}
.wfs-manifesto-text em { color: var(--wfs-blue-2); font-weight: 400; }

.wfs-svc-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  margin-bottom: 140px;
}
.wfs-svc-row:last-child { margin-bottom: 0; }
.wfs-svc-row.reverse .wfs-svc-img { order: 2; }

.wfs-svc-img {
  position: relative;
  
  overflow: hidden;
  background: var(--wfs-paper);
}
.wfs-svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.05) brightness(0.92);
  transition: transform 0.9s cubic-bezier(.2,.8,.2,1), filter 0.6s ease;
}
.wfs-svc-img:hover img { transform: scale(1.04); filter: grayscale(0) contrast(1.05) brightness(1); }
.wfs-svc-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,11,12,0.45));
  z-index: 1;
}
.wfs-svc-img-num {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  font-weight: 400;
  font-size: 14px;
  color: var(--wfs-ink);
  opacity: 0.85;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wfs-svc-text h3 {
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
}
.wfs-svc-text h3 em { color: var(--wfs-blue-2); font-weight: 300; }
.wfs-svc-text p {
  color: var(--wfs-muted);
  font-size: 16px; line-height: 1.65;
  max-width: 500px; margin: 0 0 28px;
  text-align: justify;
}
.wfs-svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.wfs-svc-tag {
  padding: 7px 14px;
  border: 1px solid var(--wfs-line-2);
  border-radius: 999px;
  font-size: 12px;
  color: var(--wfs-muted);
  letter-spacing: 0.02em;
}

.wfs-client-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 60px;
}

.wfs-client-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--wfs-paper);
  cursor: default;
}
.wfs-client-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.7) contrast(1.1);
  transition: filter 0.6s ease, transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.wfs-client-tile:hover img {
  filter: grayscale(0) brightness(0.95) contrast(1);
  transform: scale(1.05);
}
.wfs-client-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 11, 12, 0.85));
  z-index: 1;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}
.wfs-client-tile:hover::after { opacity: 0.5; }

.wfs-client-name {
  position: absolute; bottom: 20px; left: 22px; right: 22px;
  z-index: 2;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--wfs-ink);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.wfs-client-tile:hover .wfs-client-name { transform: translateY(-4px); }

.wfs-search-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--wfs-line);
  border-bottom: 1px solid var(--wfs-line);
  margin-top: 48px;
}
.wfs-search-bar svg { flex-shrink: 0; color: var(--wfs-muted); }
.wfs-search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--wfs-ink);
  font-family: inherit;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.wfs-search-bar input::placeholder { color: var(--wfs-dim); font-weight: 300; }
.wfs-search-clear {
  background: transparent; border: none; cursor: pointer;
  color: var(--wfs-muted);
  padding: 4px;
  display: none;
}
.wfs-search-clear.visible { display: block; }

.wfs-cat-tabs {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 28px; margin-bottom: 16px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
}
.wfs-cat-tab {
  cursor: pointer;
  color: var(--wfs-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  background: transparent; border-top: none; border-left: none; border-right: none;
  font-family: inherit; font-size: inherit; letter-spacing: inherit;
  font-weight: 500;
}
.wfs-cat-tab:hover { color: var(--wfs-ink); }
.wfs-cat-tab.active { color: var(--wfs-ink); border-bottom-color: var(--wfs-blue); }
.wfs-cat-tab sup {
  font-size: 9px; vertical-align: super; margin-left: 4px;
  color: var(--wfs-dim); font-weight: 400;
}

.wfs-result-count {
  font-size: 11px; color: var(--wfs-muted);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 32px; margin-top: 24px;
  font-weight: 500;
}

.wfs-no-results {
  grid-column: 1 / -1;
  padding: 80px;
  text-align: center;
  color: var(--wfs-muted);
  border: 1px dashed var(--wfs-line);
}
.wfs-no-results svg { opacity: 0.3; margin-bottom: 16px; }
.wfs-no-results div { font-size: 22px; font-weight: 300; }

.wfs-presence {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 140px 40px;
  max-width: 1440px; margin: 0 auto;
  border-top: 1px solid var(--wfs-line);
}

.wfs-city-list { list-style: none; padding: 0; margin: 0; }
.wfs-city-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--wfs-line);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.02em;
  cursor: default;
  transition: color 0.2s ease;
}
.wfs-city-list .coords {
  font-size: 11px;
  color: var(--wfs-dim);
  letter-spacing: 0.08em;
  font-weight: 400;
}
.wfs-city-list li:hover { color: var(--wfs-blue-2); }

.wfs-two-col {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; margin-top: 80px;
}

.wfs-dl-group { display: flex; flex-direction: column; gap: 0; }
.wfs-dl {
  display: flex; align-items: center; gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--wfs-line);
  color: var(--wfs-ink);
  transition: padding 0.25s ease, color 0.25s ease;
}
.wfs-dl:last-child { border-bottom: 1px solid var(--wfs-line); }
.wfs-dl:hover { padding-left: 12px; color: var(--wfs-blue-2); }
.wfs-dl-os {
  font-weight: 300;
  font-size: 26px;
  letter-spacing: -0.03em;
  flex: 1;
}
.wfs-dl-os em { color: var(--wfs-blue-2); font-weight: 300; }
.wfs-dl small {
  font-size: 11px; color: var(--wfs-muted);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-left: auto;
  font-weight: 500;
}

.wfs-faq { margin-top: 20px; }
.wfs-faq-item {
  border-top: 1px solid var(--wfs-line);
  padding: 26px 0 22px;
  cursor: pointer;
}
.wfs-faq-item:last-child { border-bottom: 1px solid var(--wfs-line); }
.wfs-faq-q {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.wfs-faq-q em { color: var(--wfs-blue-2); font-weight: 400; }
.wfs-faq-sign {
  font-size: 16px; color: var(--wfs-muted); font-weight: 300;
  flex-shrink: 0;
}
.wfs-faq-sign::before { content: '+'; }
.wfs-faq-item.open .wfs-faq-sign::before { content: '—'; }
.wfs-faq-a {
  max-height: 0; overflow: hidden;
  color: var(--wfs-muted);
  font-size: 15px; line-height: 1.65;
  transition: max-height 0.4s ease, margin-top 0.3s ease;
}
.wfs-faq-item.open .wfs-faq-a { max-height: 300px; margin-top: 18px; }

.wfs-contact-row {
  display: flex; gap: 24px; align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--wfs-line);
}
.wfs-contact-row:first-child { border-top: 1px solid var(--wfs-line); }
.wfs-contact-row .label {
  font-size: 11px; color: var(--wfs-muted);
  letter-spacing: 0.2em; text-transform: uppercase;
  min-width: 140px;
  font-weight: 500;
}
.wfs-contact-row .value {
  flex: 1;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.wfs-contact-row .value em { color: var(--wfs-blue-2); font-weight: 400; }
.wfs-contact-row .value a {
  color: var(--wfs-ink);
  border-bottom: 1px solid var(--wfs-blue);
}
.wfs-contact-row .value a:hover { color: var(--wfs-blue-2); }

.wfs-form { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.wfs-form-field {
  display: flex; align-items: baseline; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--wfs-line);
}
.wfs-form-field label {
  font-size: 11px; color: var(--wfs-muted);
  letter-spacing: 0.2em; text-transform: uppercase;
  min-width: 100px;
  padding-top: 6px;
  font-weight: 500;
}
.wfs-form-field input,
.wfs-form-field textarea,
.wfs-form-field select {
  flex: 1;
  background: transparent; border: none; outline: none;
  color: var(--wfs-ink);
  font-family: inherit;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.01em;
  padding: 0;
  width: 100%;
}
.wfs-form-field input::placeholder,
.wfs-form-field textarea::placeholder {
  color: var(--wfs-dim);
  font-weight: 300;
}
.wfs-form-field textarea {
  min-height: 60px; resize: vertical;
  line-height: 1.4; font-family: inherit;
}
.wfs-form-field select {
  appearance: none; background-image: none; cursor: pointer;
}
.wfs-form-field option {
  background: var(--wfs-bg); color: var(--wfs-ink);
}
.wfs-form-field:focus-within { border-bottom-color: var(--wfs-blue); }

.wfs-map {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--wfs-paper);
  border: 1px solid var(--wfs-line);
}
.wfs-map iframe {
  width: 100%; height: 100%;
  border: none; display: block;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.35) brightness(0.85);
}
.wfs-map-cap {
  position: absolute; top: 20px; left: 20px; right: 20px; z-index: 2;
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 11px; color: var(--wfs-ink);
  letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(11,11,12,0.65);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  font-weight: 500;
}

.wfs-footer {
  border-top: 1px solid var(--wfs-line);
  padding: 80px 40px 40px;
  margin-top: 120px;
  background: var(--wfs-bg);
}
.wfs-footer-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}

.wfs-footer-big {
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}
.wfs-footer-big em { color: var(--wfs-blue-2); font-weight: 300; }

.wfs-footer-logo img {
  height: 32px; width: auto;
  margin-bottom: 28px; display: block;
  opacity: 0.9;
}

.wfs-footer h5 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wfs-muted);
  margin: 0 0 20px;
  font-weight: 500;
}
.wfs-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.wfs-footer li {
  font-size: 14px; color: var(--wfs-ink);
  transition: color 0.2s ease;
}
.wfs-footer li a { display: block; }
.wfs-footer li:hover { color: var(--wfs-blue-2); }
.wfs-footer li.dim { color: var(--wfs-muted); cursor: default; }

.wfs-footer-bottom {
  max-width: 1440px; margin: 60px auto 0;
  padding-top: 30px; border-top: 1px solid var(--wfs-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  font-size: 11px; color: var(--wfs-dim);
  letter-spacing: 0.05em;
}
.wfs-partners { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.wfs-partner {
  font-weight: 400;
  font-size: 13px;
  color: var(--wfs-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.wfs-partner:hover { color: var(--wfs-ink); }

.wfs-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--wfs-line);
  border: 1px solid var(--wfs-line);
}
.wfs-counter {
  padding: 44px 32px;
  background: var(--wfs-bg);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 220px;
  transition: background 0.3s ease;
}
.wfs-counter:hover { background: var(--wfs-surface); }
.wfs-counter-num {
  font-weight: 200;
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--wfs-ink);
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.wfs-counter-num em { color: var(--wfs-blue-2); font-weight: 200; }
.wfs-counter-num sup {
  font-size: 0.35em;
  vertical-align: top;
  margin-left: 4px;
  color: var(--wfs-muted);
  font-weight: 400;
  position: relative; top: 0.4em;
}
.wfs-counter-hint {
  font-size: 12px;
  color: var(--wfs-dim);
  margin-top: 10px;
  line-height: 1.4;
}
.wfs-counter-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wfs-muted);
  font-weight: 500;
  margin-top: 32px;
  line-height: 1.4;
}

.wfs-disclaimer {
  font-size: 11px;
  color: var(--wfs-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 24px;
  font-weight: 500;
}

.wfs-stories {
  display: grid; grid-template-columns: 0.9fr 1.4fr;
  gap: 80px;
  max-width: 1440px; margin: 0 auto;
  padding: 140px 40px;
  border-top: 1px solid var(--wfs-line);
}
.wfs-stories h2 {
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0;
}
.wfs-stories h2 em { color: var(--wfs-blue-2); font-weight: 300; }

.wfs-story {
  padding: 32px 0;
  border-bottom: 1px solid var(--wfs-line);
}
.wfs-story:first-child { border-top: 1px solid var(--wfs-line); }
.wfs-story-num {
  font-size: 11px;
  color: var(--wfs-blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}
.wfs-story p {
  font-weight: 300;
  font-size: 20px;
  text-align: justify;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--wfs-ink);
  margin: 0;
}
.wfs-story p em { color: var(--wfs-blue-2); font-weight: 400; }

.wfs-lessons {
  max-width: 1440px; margin: 0 auto;
  padding: 100px 40px 140px;
  border-top: 1px solid var(--wfs-line);
}
.wfs-lessons-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  margin-top: 40px;
  background: var(--wfs-line);
  border: 1px solid var(--wfs-line);
}
.wfs-lesson {
  padding: 32px;
  background: var(--wfs-bg);
  display: flex; gap: 24px; align-items: flex-start;
}
.wfs-lesson-num {
  font-size: 11px;
  color: var(--wfs-blue);
  letter-spacing: 0.2em;
  font-weight: 500;
  flex-shrink: 0;
  padding-top: 4px;
}
.wfs-lesson p {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--wfs-ink);
  margin: 0;
  
}
.wfs-lesson p em { color: var(--wfs-blue-2); font-weight: 400; }

@media (max-width: 960px) {
  .wfs-client-gallery { grid-template-columns: repeat(3, 1fr); }
  .wfs-counters { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .wfs-manifesto, .wfs-presence { grid-template-columns: 1fr; gap: 40px; }
  .wfs-presence { padding: 80px 40px; }
  .wfs-svc-row, .wfs-svc-row.reverse { grid-template-columns: 1fr; gap: 30px; }
  .wfs-svc-row.reverse .wfs-svc-img { order: 0; }
  .wfs-two-col { grid-template-columns: 1fr; gap: 48px; }
  .wfs-contact-layout { grid-template-columns: 1fr !important; gap: 48px !important; }
  .wfs-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .wfs-stories { grid-template-columns: 1fr; gap: 40px; padding: 80px 40px; }
}
@media (max-width: 760px) {
  .wfs-navlinks, .wfs-nav-right { display: none; }
  .wfs-mobile-btn { display: block; }
  .wfs-nav { padding: 16px 24px; }
  .wfs-logo img { height: 26px; }
  .wfs-hero-inner { padding: 0 24px 60px; }
  .wfs-hero-top { top: 30px; left: 24px; right: 24px; }
  .wfs-section, .wfs-manifesto, .wfs-presence { padding-left: 24px; padding-right: 24px; }
  .wfs-footer { padding: 60px 24px 30px; }
}
@media (max-width: 600px) {
  .wfs-client-gallery { grid-template-columns: repeat(2, 1fr); }
  .wfs-counters { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .wfs-footer-grid { grid-template-columns: 1fr; }
}
